Markdown

Adrian Winterstein

The following is supported to be used in the markdown files of any website using the Daisy theme.

Headings

All six HTML heading types <h1> to <h6> are supported:

# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

Text Formatting

Emphasis can be added to text like this:

Text can be **strong**, *italic*, ***strong & italic***,
<u>underlined</u>, ~striked through~ or <mark>highlighted</mark>.

Text can be strong, italic, strong & italic, underlined, striked through or highlighted.

It is also possible to use subscripts and superscripts:

y = a<sub>0</sub> + a<sub>1</sub>x + a<sub>2</sub>x<sup>2</sup>

y = a0 + a1x + a2x2

Blockquotes

Blockquotes without citation can be created like that:

> Here is the **text** of the quote. \
> And here is a second line.

Here is the text of the quote.
And here is a second line.

And a citation can be added this way:

> So long, and thanks for all the fish. \
> ― <cite>Douglas Adams, The Hitchhiker’s Guide to the Galaxy[^1]</cite>

With the target of the citation to be added where it is supposed to appear (e.g., on the bottom of this example page):

[^1]: The message, that was left by the dolphins when they departed earth in the fourth book.

So long, and thanks for all the fish.
Douglas Adams, The Hitchhiker’s Guide to the Galaxy1

Lists

Ordered Lists

1. First Item
2. Second Item
3. Third Item
  1. First Item
  2. Second Item
  3. Third Item

Unordered Lists

* First unordered item
* Second unordered item
  * First nested item
  * Second nested item
* Third unordered item
  • First unordered item
  • Second unordered item
    • First nested item
    • Second nested item
  • Third unordered item

Tables

| First Column    | Second Column    |
| --------------- | ---------------- |
| First Row Left  | First Row Right  |
| Second Row Left | Second Row Right |
| Third Row Left  | Third Row Right  |
| Fourth Row Left | Fourth Row Right |
First ColumnSecond Column
First Row LeftFirst Row Right
Second Row LeftSecond Row Right
Third Row LeftThird Row Right
Fourth Row LeftFourth Row Right

You can surround large tables with <figure></figure> to enable horizontal scrolling:

<figure>

| First Column    | Second Column    | Third Column    | Fourth Column    | Fifth Column    | Sixth Column     | Seventh Column   | Eighth Column    |
| --------------- | ---------------- | --------------- | ---------------- | --------------- | ---------------- | ---------------- | ---------------- |
| First           | Second           | Third           | Fourth           | Fifth           | Sixth            | Seventh          | Eighth           |

</figure>
First ColumnSecond ColumnThird ColumnFourth ColumnFifth ColumnSixth ColumnSeventh ColumnEighth Column
FirstSecondThirdFourthFifthSixthSeventhEighth

Foldable Text

Foldable text is possible with the use of some HTML in the markdown file:

<details>
    <summary>The Title</summary>
    <p>This is the foldable content.</p>
</details>
The Title

This is the foldable content.

Additional Items

Abbrevations

<abbr title="Hypertext Markup Language">HTML</abbr> tags are used for abbrevations.

HTML tags are used for abbrevations.

Keyboard

<kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Del</kbd>

Ctrl + Alt + Del

Horizontal Line

---


And at the end of the page, the citation from the blockquote above was added:

1

The message, that was left by the dolphins when they departed earth in the fourth book.