- Published on
GitHub Flavored Markdown Guide
- Authors
- Name
- Lucas Xu
- @xianminx
MDX Series
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\
Github Flavored Blockquotes with Alert
This is a default blockquote without any special styling.
NOTE
Provides additional information or context about the topic. Use this for general information that you want to highlight.
TIP
Suggests a helpful way to use a feature or to accomplish a task. Perfect for sharing best practices and useful suggestions.
IMPORTANT
Crucial information necessary for users to succeed. Use this for must-know information.
WARNING
Warns users of potentially dangerous effects of an action. Helps prevent user mistakes before they occur.
CAUTION
Explains dangerous consequences of an action. Use this for serious warnings about risky actions.
Footnotes
This is the footnote content. ↩