Examples
Table with Markdown Formatting Features
Feature | Markdown Syntax | Example Output |
---|---|---|
Italic | *Italic* or _Italic_ |
Italic |
Bold | **Bold** or __Bold__ |
Bold |
Bold Italic | ***Bold Italic*** or ___Bold___ |
Bold Italic |
Code |
`Code` |
Code |
Link | [Link](url) |
Link |
Image | ![Alt Text](url) |
|
~~Strikethrough~~ |
||
> Blockquote | > Blockquote |
> Blockquote |
Ordered List | 1. Item |
1. Item |
Unordered List | - Item |
- Item |
Notes
- You can combine bold and italic by nesting the appropriate syntax.
- Tables in Markdown are created using pipes (
|
) and hyphens (-
), where the first row typically defines the headers, and subsequent rows define the data. - You can use backticks (
`
) for inline code. - Lists can be created using either numbers (for ordered lists) or hyphens (for unordered lists).
Table with Custom Styles
Header 1 | Header 2 | Header 3 |
---|---|---|
Data 1 | Data 2 | Data 3 |
Data 4 | Data 5 | Data 6 |