Reputation:
How to create tables on Azure Devops wiki with the same appearences as Microsoft's ?
right now I'm using this pattern, but would like to use the same style that Microsoft uses for its docs.
|H1|H2|
|-|-|
|Content|
results to ==>
H1 | H2 |
---|---|
Content |
Upvotes: 4
Views: 25991
Reputation: 76890
How to create tables on Azure Devops wiki with the same appearences as Microsoft's ?
You could try to use HTML tables on Azure devops Wiki:
<table>
<tr>
<td>H1</td>
<td>H2</td>
</tr>
<tr>
<td colspan="2">content</td>
</tr>
</table>
Upvotes: 10
Reputation: 597
I dont think thats possible. The Wiki is mainly driven by Markdown, so everythin you want to do needs to be possible in Markdown
Upvotes: 2