Markdown Extended Syntax
While basic Markdown syntax provides the essential tools for document formatting, extended syntax offers additional features that enhance your documents. This guide covers the most useful extended Markdown syntax elements.
Tables
Tables are created using pipes (|
) and hyphens (-
). Hyphens create the header row, while pipes separate the columns:
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Which renders as:
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
Column Alignment
You can align text in columns by adding colons (:
) to the header separators:
| Left-aligned | Center-aligned | Right-aligned |
|:-------------|:--------------:|---------------:|
| Left | Center | Right |
| Left | Center | Right |
Which renders as:
Left-aligned | Center-aligned | Right-aligned |
---|---|---|
Left | Center | Right |
Left | Center | Right |
Fenced Code Blocks
While basic Markdown allows for code blocks using indentation (4 spaces or 1 tab), fenced code blocks provide a cleaner syntax and enable language-specific syntax highlighting.
To create a fenced code block, use three backticks (```) before and after the code block:
Which renders as:
Syntax Highlighting
You can specify a language after the opening backticks to enable syntax highlighting:
Which renders with Python syntax highlighting:
Here are some common language identifiers:
python
for Pythonjavascript
orjs
for JavaScripthtml
for HTMLcss
for CSSbash
orshell
for shell scriptssql
for SQLr
for Rjson
for JSONyaml
oryml
for YAML
Footnotes
Footnotes allow you to add notes and references without cluttering the main content:
Which renders as:
Here's a sentence with a footnote reference.[^1]
[^1]: This is the footnote content.
Footnotes can also have multiple paragraphs:
Here's another sentence with a more complex footnote.[^2]
[^2]: This is the first paragraph of the footnote.
This is the second paragraph of the footnote.
Task Lists
Task lists (or checklists) are useful for tracking progress on a list of items:
Which renders as:
- [x] Complete task 1
- [x] Complete task 2
- [ ] Incomplete task 3
- [ ] Incomplete task 4
Definition Lists
Some Markdown processors support definition lists:
Which may render as:
- term
- definition
- another term
- definition 1
- definition 2
Strikethrough
To cross out text, use double tildes:
Which renders as:
~~This text is crossed out~~
Automatic Links
URLs and email addresses can be turned into links automatically by enclosing them in angle brackets:
Which renders as:
https://www.dataidea.org
email@example.com
Emoji
Many Markdown applications support emoji shortcodes:
Which might render as: 😄 ❤️ 👍
HTML in Markdown
Most Markdown processors allow you to use HTML tags directly in your Markdown documents:
Highlight
Some Markdown implementations support highlighting text using double equals signs:
Which may render as: This text is highlighted
Superscript and Subscript
Some Markdown processors support superscript and subscript:
Which may render as: X2 (superscript)
H2O (subscript)
Disabling Automatic URL Linking
To prevent a URL from being automatically linked, you can wrap it in backticks:
Which renders as: https://www.example.com
Comments
You can add comments that won't appear in the rendered Markdown using HTML comment syntax:
Conclusion
These extended Markdown features provide powerful tools for creating more complex and visually appealing documents. In the next section, we'll focus on Markdown features specific to data science documentation, including math equations and diagrams.