GitHub Flavored Markdown Guide
01/01/2024
GitHub Flavored Markdown (GFM) extends standard Markdown with additional features. Here are the key elements and examples:
Basic Syntax
Headers
H1 Header
H2 Header
H3 Header
Emphasis
Italic text or italic text Bold text or bold text Bold and italic or bold and italic
Lists
Ordered List:
- First item
- Second item
- Third item
Unordered List:
- Item one
- Item two
- Nested item
- Another nested item
- Item three
Links and Images
GFM Special Features
Task Lists
- Completed task
- Incomplete task
- Another task
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Row 1 | Data | Data |
Row 2 | Data | Data |
Code Blocks
function hello() {
console.log("Hello, World!");
}
Strikethrough
Strikethrough text
Emoji
:smile: :heart: :thumbsup:
Mentions and References
@username #issue_number
Automatic Links
Footnotes
Here's a sentence with a footnote1.
Extended Formatting
Blockquotes
This is a blockquote
Nested blockquote
Horizontal Rule
Escaping Characters
*Not italic* `Not code`
Remember that GFM is compatible with standard Markdown while adding these extra features for enhanced documentation and collaboration on GitHub.
math
This sentence uses $
delimiters to show math inline:
The Cauchy-Schwarz Inequality\
Footnotes
-
This is the footnote content. ↩