Published on

GitHub Flavored Markdown Guide

Authors

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:

  1. First item
  2. Second item
  3. Third item

Unordered List:

  • Item one
  • Item two
    • Nested item
    • Another nested item
  • Item three

Visit GitHub Alt text

GFM Special Features

Task Lists

  • Completed task
  • Incomplete task
  • Another task

Tables

Header 1Header 2Header 3
Row 1DataData
Row 2DataData

Code Blocks

function hello() {
  console.log('Hello, World!')
}

Strikethrough

Strikethrough text

Emoji

:smile: :heart: :thumbsup:

Mentions and References

@username #issue_number

http://example.com

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: x1+(1+x)2\sqrt{x-1}+(1+x)^2

The Cauchy-Schwarz Inequality\

(k=1nakbk)2(k=1nak2)(k=1nbk2)\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)

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

  1. This is the footnote content.