Skip to content

Latest commit

 

History

History
executable file
·
273 lines (223 loc) · 2.36 KB

markdown.md

File metadata and controls

executable file
·
273 lines (223 loc) · 2.36 KB

Markdown Commands

Header H1:

# Header H1

or

Header H1
=========

Header H2:

## Header H2

or

Header H1
---------

Header H3:

### Header H3

Header H4:

#### Header H4

Bold

**bold**

or

__bold__

Italic

*Italic**

or

_Italic_

Strikethrough

~~strikethrough~~

Highlight

==highlight==

Superscript

N^4^

or

N<sup>4</sup>

Subscript

H~2~O

or

H<sub>2</sub>O

Link

[link](https://domain.com)

or

[link][1]

[1]: (https://domain.com)

or

<https://domain.com>

if you want to add an attribute

[link](https://domain.com "Write here for an attribute")

Mailto

Images

![text](https://domain.com/immage.jpg)

or

[text][1]

[1]: (https://domain.com/immage.jpg)

or (centered)

![text](https://domain.com/immage.jpg#center)

or (with a description)

![text](https://domain.com/immage.jpg "Description")

Blockquotes

> quote

or nested

>> nested quote

Unordered list

* Point
* Point
* Point

or

- Point
- Point
- Point

or

+ Point
+ Point
+ Point

Ordered list

1. First
2. Second
3. Third

or

1) First
2) Second
3) Third

or

1. First 
1. Second
1. Third

To-do list

- [x] to do 01
- [ ] to do 02
- [ ] to do 03

Horizontal rule

*** (three consecutive asterisks)

or

--- (three consecutive dashes)

or

___ (three consecutive underscores)

Inline code

`inline code`

or

	code block (indented of four spaces)

Fenced Code Block


```
code block

ABC

ABC

```

or


~~~

code block

ABC

ABC

~~~

or (indented of four spaces)


	abc
	abc
	abc

or


```python

print(f"2+2 = {2+2}")

```

Tables

| Column1  | Column2  | Column3  |
| -------- | -------- | -------- |
| One      | Two      | Three    |
| Four     | Five     | Six      |

Footnote

Text where to put the footnote identifier[^1]
[^1]: footnote text

or

Text where to put the footnote label[^label]
[^label]: footnote text

This page is a work-in-progress and therefore, the page may be subject to updates.

Stay tuned!