Contents

Azure DevOps - Wiki Markdown

Azure DevOps uses standard Markdown syntax. There are additional Wiki notations, that will enable you mention other users, refer to work item and work item queries.

Headers

1
2
3
4
<p># Header 1 </p>
<p>## Header 2 </p>
<p>### Header 3 </p>
<p>#### Header 4</p>

/basic-markdown-syntax/image1.png

Table of Content

1
[[_TOC_]]

/basic-markdown-syntax/image2.png

Text Format

1
2
3
4
5
6
**Bold** 
_Italic_
[Link](http://www.azuredevops.tips) 
strikethrough 
Underline 
This text is teletype text.

/basic-markdown-syntax/image3.png

/basic-markdown-syntax/image4.png

Code Block

1
2
  ``` js //Code Block var ="This is Javascript" ```  
  ``` csharp Console.WriteLine("Hello, World!"); ```

/basic-markdown-syntax/image5.png

Lists

UnOrdered

1
2
3
Unordered List 1
Unordered List 2
Unordered List 3

/basic-markdown-syntax/image6.png

Ordered

1
2
3
1. Ordered List 1
1. Ordered List 2
1. Ordered List 3

/basic-markdown-syntax/image7.png

Sub List

1
2
3
4
5
6
7
8
1. First item.   
  - Item 1  
  - Item 2  
  - Item 3
1. Second item.    
  - Nested item 1    
  - Nested item 2    
  - Nested item 3  

/basic-markdown-syntax/image8.png

Check List

1
2
3
 - [ ] Check List 1
 - [ ] Check List 2
 - [ ] Check List 3

/basic-markdown-syntax/image9.png

Table

1
2
3
4
 | Col Header | Col Header | Col Header    | 
 |:-----------|:----------:|--------------:| 
 | Left       | Centered   | Right Aligned |
 | Row        | Row        | Row           | 

/basic-markdown-syntax/image10.png

Image

1
![Azure DevOps Tips](https://azuredevopstips.files.wordpress.com/2019/07/azuredevopstips-facebook-profile.png) 

/basic-markdown-syntax/image11.png

Horizontal Line

1
--- Line  

/basic-markdown-syntax/image12.png

Quote

1
> Single Block Quote >> Embedded  >> Block  >> Quote 

/basic-markdown-syntax/image13.png

Video

1
::: video [youtube https://www.youtube.com/watch?v=OtqFyBA6Dbk&w=560&h=315] ::: 

/basic-markdown-syntax/image14.png

Result Queries

1
 ::: query-table b282af38-77a3-4569-9827-084013a91894 ::: 

/basic-markdown-syntax/image15.gif

Mention - Ticket Numbers

1
#307