blob: 84f528c676f976b89d0838b5c96f5b4bffd15afe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Markdown examples
On top of plain Markdown, [Markdown Extra](https://michelf.ca/projects/php-markdown/extra) adds support for footnotes, abbreviations, definition lists, tables, `class` and `id` attributes, fenced code blocks, and Markdown inside HTML blocks.
Additionally, images are properly enclosed in figure elements (with optional figcaption), and the `loading="lazy"` attribute is added.
***
This is **bold**, *italic*, this is an [internal link](#2021-01-11-hello-world), this is ~~not~~ `code`, press <kbd>alt</kbd>.
![This is the image alt text](content/img/image.png "This is the image title.") {width=1280 height=800}
This is the image caption (line begins with a space). The image above is actually a rendered base64 encoding.
> This text is in a blockquote.
## This is a level 2 heading
### This is a level 3 heading
- This
- is
- a list
0. This
1. is
10. an
11. ordered list
```.txt
This is
preformatted
text.
```
this is a table | header |this column is right-aligned |
----------------| --------------|----------------------------:|
these | content |1234 |
are | cells |56789 |
This sentence has a footnote.[^1]
[^1]: This is a footnote
*[HTML]: Hypertext Markup Language
*[Markdown]: Markdown is a lightweight markup language for creating formatted text using a plain-text editor
|