Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure devOps wiki: create tables microsoft docs style

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 Answers

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

like image 69
Leo Liu-MSFT Avatar answered Oct 19 '25 00:10

Leo Liu-MSFT


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

like image 21
michiel Thai Avatar answered Oct 18 '25 23:10

michiel Thai