Best Markdown cheat sheet ever made with HTML
| 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 |
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
order list
- this is one
- this is two
- 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>
npm install
npm start function add(num1, num2) {
return num1 + num2;
} def add(num1, num2):
return num1 + num2Table
| 1 | 2 | 3 |
| 4 | 5 | 6 |
| name | ID |
|---|---|
| rahul | 2000 |
| rahul | 2000 |
| rahul | 2000 |
- Task 1
- Task 2
- Task 3
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 |
When
You can render LaTeX mathematical expressions using KaTeX:
The Gamma function satisfying
You can find more information about LaTeX mathematical expressions here.
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?
And this will produce a flow chart:
graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D
