Skip to content

Header

The table of contents is shown only if there is a first level header and second level headers.

Inline

Bold
Italic
BoldItalic
Underline, Underline
Strike
Hilited
😄
x2, x2
H2O, H2O
example.com
https://github.com
Footnote1

citation here

range() function.
#!python range() function.

A Markdown paragraph with no closing tag.

A raw paragraph with *no* closing tag.

Block

factorial.py
# Python code to demonstrate naive method
# to compute factorial
n = 23
fact = 1

for i in range(1, n+1):
    fact = fact * i #(1)

print("The factorial of 23 is : ", end="")
print(fact)
  1. 🙋‍♂️ I'm a code annotation! I can contain code, formatted
    text
    , images, ... basically anything that can be written in Markdown.
include file
1
2
3
This repository contains the documentation website code and Markdown source files for [docs.github.com](https://docs.github.com).

GitHub's Docs team works on pre-production content in a private repo that regularly syncs with this public repo.
graph TD
    A --> B
First Header Second Header Third Header
Left Center Right
Left Center Right

Some text.
Blank line is required before list:

  • one
    • two
var a = 1;
<p>P</p>
  • One
    • Two

Nesting

  • here must be text or just one space symbol
    var a = 1;
    function foo(){}
    

Line of text to separate lists, otherwise its are counted as one...

  1. Item
  2. Item
    1. One
    2. Two
      code
Term
Definition
  • One
  • Two
    • Three

Admonition

Title text

foo

Note

Abstract

Info

Tip

Success

Question

Warning

Failure

Danger

Bug

Example

Quote




  1. multilined
    footnote