UP | HOME

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 <2023-02-03 Fri>

DONE Task done with super long text blablablablabla and blablabla

TODO Task Scheduled

NEXT Task Next <2023-02-04 Sat>

Numbered List

  1. List item
  2. List item
  3. List item
  4. 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 block
  • C-c ' to enter/exit edit buffer
  • C-c C-c to evaluate code block
print("Count down:")
for i in range(3):
    print(3-i)
print("Hello world!")