Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.08 KB

markdown.md

File metadata and controls

51 lines (40 loc) · 1.08 KB

Markdown Cheatsheet

Table of Contents

Links

  • simple links: [text](http://url)
  • github link: <http://url>

Reference Links

[this is text][1]
[1]: http://url

Formatting

  • code highlight: `code`
  • escape a `
    ``Back`Tick``
  • Code blocks:
    ```markdown
      [this is markdown](http://url)
    ```
  • Strike
  • ~~strike me~~ (github)
  • <strike>strike me</strike> (normal)

Github Flavored Markdown

see Github Flavored Markdown

  • Tasks
    • - [ ] open task
    • - [x] closed task

References

  1. http://daringfireball.net/projects/markdown/syntax -- THE first place to look 👏
  2. https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
  3. http://meta.stackexchange.com/questions/82718/how-do-i-escape-a-backtick-in-markdown -- how to escape a backtick