H
Headings
4 examples
| # Level 1 Heading | Level 1 Heading |
|
| ## Level 2 Heading | Level 2 Heading |
|
| ### Level 3 Heading | Level 3 Heading |
|
| ###### Level 6 Heading | Level 6 Heading |
B
Text Styling
4 examples
| **Bold text** | Bold text |
|
| *Italic text* | Italic text |
|
| ***Bold and italic*** | Bold and italic |
|
| ~~Strikethrough~~ |
☰
Lists
2 examples
| - Item 1 - Item 2 - Subitem |
|
|
| 1. First item 2. Second item |
|
</>
Code
2 examples
| `inline code` | inline code |
|
| ```python print("Hello") ``` |
print("Hello")
|
🔗
Links & Images
2 examples
| [Link text](https://example.com) | ||
|  | 🖼 Image preview |
⊞
Tables
1 example
| | Name | Email | |-------|--------| | Ahmed | a@ex.com | |
|
❝
Blockquotes, Rules, Task Lists
3 examples
| > This is a quote > Second line |
This is a quote |
|
| --- | ||
| - [x] Completed task - [ ] Incomplete task |
Completed task
Incomplete task
|
💡
Quick Tip
Use the MarkdownCraft Editor to try out code with live preview. Advanced tables need alignment via :--- and :---:.
❓
Markdown FAQ
Does Markdown support colored tables?
Plain Markdown doesn't support colors, but you can use inline HTML inside the table (e.g.,
<span style="color:red">) or rely on editors with extensions. For basic documents, the standard table is sufficient.
How do I create nested numbered lists?
Indent the sub-item with two or four spaces. Example:
1. Main item 1. Sub item
What's the difference between standard Markdown and GitHub Flavored Markdown (GFM)?
GFM supports tables, task lists, and language-specific code blocks. All examples above are compatible with GFM and most web platforms. For more details, see the GitHub Markdown Guide.
Is there a tool to convert HTML to Markdown?
You can use the advanced editor or external tools. We suggest pasting the text into the editor and using the upcoming reverse conversion feature.