Post

Markdown Note

Markdown Note

Headings

1
2
3
# A first-level heading
## A second-level heading
### A third-level heading

A first-level heading

A second-level heading

A third-level heading

Styling

1
2
3
4
5
6
7
8
**This is bold text**
_This text is italicized_
~~This was mistaken text~~
**This text is _extremely_ important**
***All this text is important***
This is a <sub>subscript</sub> text
This is a <sup>superscript</sup> text
This is an <ins>underlined</ins> text

This is bold text
This text is italicized
This was mistaken text
This text is extremely important
All this text is important
This is a subscript text
This is a superscript text
This is an underlined text

Quoting text

1
2
3
Text that is not a quote

> Text that is a quote

Text that is not a quote

Text that is a quote

Quoting Code

1
2
Use `git status` to list all new or modified files that haven't yet been committed.

quoting code
You can also press the Command+E (Mac) or Ctrl+E (Windows/Linux) keyboard shortcut to insert the backticks for a code block within a line of Markdown.

This site was built using GitHub Pages.

Footnotes

1
2
3
4
5
6
7
Here is a simple footnote[^1].

A footnote can also have multiple lines[^2].

[^1]: My reference.
[^2]: To add line breaks within a footnote, add 2 spaces to the end of a line.  
This is a second line.

Here is a simple footnote1.

A footnote can also have multiple lines2.

This is a second line.

Hiding content with comments

1
<!-- This content will not appear in the rendered Markdown -->

Ignoring Markdown formatting

1
2
Let's rename \*our-new-project\* to \*our-old-project\*.

Let’s rename *our-new-project* to *our-old-project*.

Section

Tips for collapsed sections ### You can add a header You can add text within a collapsed section. You can add an image or a code block, too. ```ruby puts "Hello World" ```
  1. My reference. ↩︎

  2. To add line breaks within a footnote, add 2 spaces to the end of a line. ↩︎

This post is licensed under CC BY 4.0 by the author.