Skip to content

Markdown

Léo edited this page Jun 9, 2024 · 47 revisions

How to write rich text with Markdown:

Marked demo

Titles:

# title1

## title2

### title3

Bold text:

**text**

Italic text:

*text*

Strikethrough text:

~~text~~

Lists:

- list
- list
- list
    - sublist

Blockquotes:

> text

Tables:

| a     | b     | c     |
|:------|:-----:|------:|
| 100   | 120   | 140   |

Checkboxes:

- [ ] unchecked
- [x] checked

Links:

[text](https://URL)

Images:

![alt](https://URL/img.png)

Note

Not all images can be displayed, it depends on the security policy of the hosting site.

Horizontal lines:

___

Code:

block: ```

inline: ``

HTML5 is also supported!

<small>, <progress>, <details>, <mark>, <kbd>, etc.

Some CSS classes available

.bold, .italic, .underline, .strikethrough, .align-left, .align-center, .align-right, .align-justify, .float-left, .float-right, .d-block, .d-grid, .d-table, .d-flex, .d-inline-flex, .d-inline, .d-inline-block, .d-none, .justify-content-center, .align-items-center, .txt-red, .txt-green, .txt-blue, .txt-pink, .txt-yellow

You can also use FontAwesome solid icons

<i class="fa-solid fa-house"></i>