Markdown
Headers
Headers in Markdown are created using the hash symbol (#). The number of hash symbols indicates the level of the header.
1 2 3 4 5 6 |
|
Lists
Markdown supports both unnumbered (bullet) lists and numbered (ordered) lists.
Unnumbered Lists
Unnumbered lists can be created using asterisks (*), plus signs (+), or hyphens (-).
1 2 3 4 5 6 7 8 9 10 11 |
|
Numbered Lists
Numbered lists are created using numbers followed by periods.
1 2 3 4 5 |
|
Note: The actual numbers don't matter in Markdown source - they will be automatically numbered in the rendered output.
1 2 3 |
|
This will still render as 1, 2, 3.
Images
Images can be inserted with an exclamation mark, followed by alt text in brackets, and the image URL in parentheses.
1 2 3 |
|
For more control, MkDocs Material supports additional attributes:
1 |
|
Links
Links are created using square brackets for the link text followed by the URL in parentheses.
1 2 3 4 5 6 7 |
|
For internal links in MkDocs:
1 2 3 |
|
Code
Inline code is wrapped with backticks.
1 |
|
Code blocks use triple backticks, optionally followed by the language name for syntax highlighting.
1 2 3 |
|
1 2 3 4 5 6 7 8 |
|