This page demonstrates various Markdown formatting features that can be used in the theme. The following sections showcase different elements, such as blockquotes, headings, lists, and more.
Table of Contents
Markdown Text Formatting Options
Some bold text. Italic text. Bold and italic text.
Strikethrough text. Inline code
.
Collapsible Sections
Open sections by default:
Click to close
This is an open section.
Closed sections by default:
Click to open
Peak-a-boo
Blockquotes
This is a blockquote example. You can add multiple levels of blockquotes to create a nested structure.
For example, this is a second level blockquote.
Headings
H3 Header Example
This is an example of an H3 header.
H4 Header Example
This is an example of an H4 header.
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Row 1 | Row 1 | Row 1 |
Row 2 | Row 2 | Row 2 |
Row 3 | Row 3 | Row 3 |
with alignment:
Left-Aligned | Centered | Right-Algned |
---|---|---|
foo | fibonacci | some more stuff |
bar | 42 | (idk what else) |
Footnotes
Footnote example1
Some other footnote that is inline2. As you can see, it just blends right in!
See below for an example of a footnote with multiple paragraphs and code3.
Lists
Unordered List
- Item 1
- Item 2
- Item 3
Ordered List
- Item 1
- Indented item
- Yet another indented item
- Item 2
- Item 3
Code Blocks
fn main() {
println!("Hello, world!");
}
Some text block
Inline Code
This is an example of inline code
. You can use backticks to highlight code
snippets within a paragraph.
Links
This is an example link. You can add links to text by wrapping the text in square brackets and the URL in parentheses.
Lorem ipsum veniam in cillum deserunt nostrud cupidatat pariatur in do irure magna cillum tempor minim commodo labore voluptate mollit amet enim nostrud eiusmod ut est cillum esse qui enim anim dolor consequat eiusmod irure cillum Lorem occaecat nostrud dolor magna labore elit veniam voluptate eiusmod labore in proident aliqua magna aliqua dolore sint cillum adipisicing nulla aute anim incididunt veniam ullamco eu eu commodo magna sunt dolore fugiat voluptate eu eu fugiat anim mollit laboris deserunt ex ex irure enim cupidatat elit consequat Lorem consectetur adipisicing et amet id laboris pariatur ea ut exercitation Lorem velit et nisi nulla occaecat voluptate
Wikipedia article on a cool topic: https://en.wikipedia.org/wiki/Isometric_projection
Here's one with multiple paragraphs and code. This is the first paragraph of the footnote.
Indent paragraphs to include them in the footnote.
print("Hello word")
Add as many paragraphs as you like.