Markdownチュートリアル

Common Markup

Common Markdown markup

Common Markdown Markup Reference Table 🤔

1. Basic Formatting Markup

FunctionMarkup SyntaxEffect Example
Heading 1# Heading# Heading
Heading 2## Heading## Heading
Bold**Bold**Bold
Italic*Italic*Italic
Bold Italic***Bold Italic***Bold Italic
Strikethrough~~Strikethrough~~Strikethrough

2. Lists and Quotes

FunctionMarkup SyntaxEffect Example
Unordered List- Item- Item
Ordered List1. Item1. Item
Quote> Quote Text> Quote Text
Nested Quote>> Nested Quote>> Nested Quote

3. Links and Media

FunctionMarkup SyntaxEffect Example
Link[Text](URL)google
Image![alt](URL)Example
Inline Code`Code`print()

4. Structure and Separation

FunctionMarkup SyntaxEffect Example
Code Block``` \nCode\n ``````python\nprint()\n```
Horizontal Rule------
Hard Line BreakAdd (two spaces) at end of lineFirst line (with two spaces at end)
Second line