Azure devOps wiki: create tables microsoft docs style

21.7k Views Asked by At

How to create tables on Azure Devops wiki with the same appearences as Microsoft's ?

enter image description here

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
2

There are 2 best solutions below

1
On BEST ANSWER

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>

enter image description here

0
On

I dont think thats possible. The Wiki is mainly driven by Markdown, so everythin you want to do needs to be possible in Markdown