/Markdown-cheatsheet

Best Markdown cheat sheet ever made with HTML

MIT LicenseMIT

Markdown-cheatsheet

Best Markdown cheat sheet ever made with HTML

Best IDE

🔗 Youtube Video Links

Video

Index

components name link language (html+markdown)
Headings view html+markdown
text style view html+markdown
Horizontal Rule View html+markdown
Links View html+markdown
List View html+markdown
Inline Code Block View html+markdown
Images View html+markdown
Github code Markdown View html+markdown

Headings

heading 1

heading 2

heading 3

heading 4

heading 5
heading 6

heading 1

heading 2

heading 3

heading 4

heading 5
heading

This is a Italic text

This is a Italic text

This text is italic

This text is italic

This is a bold text

This is a bold text

This is a quote

This text is strikethrough

Horizontal Rule




The Terminal Boy

List (order unorder )

order list

  1. this is one
  2. this is two
  3. this is three
  • this is one
  • this is two
  • this is three

Un order list

  • this is one
  • this is two
  • this is three
  • Item 1
  • item 2
  • Item 3
    • Nested item 4
    • Nested Item 5

<p>This is a paragraph</p>

Images

subscribe

  npm install

  npm start
  function add(num1, num2) {
    return num1 + num2;
  }
  def add(num1, num2):
    return num1 + num2

Table

Table

1 2 3
4 5 6

name ID
rahul 2000
rahul 2000
rahul 2000
  • Task 1
  • Task 2
  • Task 3

SmartyPants

SmartyPants converts ASCII punctuation characters into "smart" typographic punctuation HTML entities. For example:

ASCII HTML
Single backticks 'Isn't this fun?' 'Isn't this fun?'
Quotes "Isn't this fun?" "Isn't this fun?"
Dashes -- is en-dash, --- is em-dash -- is en-dash, --- is em-dash

Github math

When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are $$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$

KaTeX

You can render LaTeX mathematical expressions using KaTeX:

The Gamma function satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via the Euler integral

$$ \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt,. $$

You can find more information about LaTeX mathematical expressions here.

UML diagrams

You can render UML diagrams using Mermaid. For example, this will produce a sequence diagram:

sequenceDiagram
Alice ->> Bob: Hello Bob, how are you?
Bob-->>John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.

Bob-->Alice: Checking with John...
Alice->John: Yes... John, how are you?
Loading

And this will produce a flow chart:

Visit Doc

graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D
Loading