How Does This Blog Look Like
A collection of element styles for demonstration. 2023-02-03
Table of Contents
References
Part 1: Basic Text Styles
Sub-title
something bold
something regular
something italic
something code
Part 2: Tables
Table
| Header | Key | Value |
|---|---|---|
| something | foo | bar |
| this is a long description | with a long key | and a long value |
Part 3: Lists
Check list [1/4]
[X]check list item 1[ ]check list item 2[ ]check list item 2[ ]Press C-c C-c to check
Todo List
TODO Task 1
DONE Task done with super long text blablablablabla and blablabla
TODO Task Scheduled
NEXT Task Next
Numbered List
- List item
- List item
- List item
- List item
Part 3: Blocks
Custom Block
This is a custom block
Quote
This is a quote block
Source Code Block
C-c C-,to create a new source code blockC-c 'to enter/exit edit bufferC-c C-cto evaluate code block
print("Count down:") for i in range(3): print(3-i) print("Hello world!")