Markdown is a markup language with plain text formatting syntax. But you also can use standard HTML tags.
This is a backquote:
"Our greatest glory is not in never falling but in rising every time we fall." — Confucius
To create simple lists, just enumerate all items using a dash in the prefix:
- Alpha
- Beta
- Gamma
Also you can either mark some special words
or write entire code
blocks:
(defn fact [n]
(if (< n 2) 1
(* n (fact (- n 1)))))
Also simple tables is a piece of cake:
Parameter | Explanation | Type |
---|---|---|
note |
Text to publish | required |
password |
Secret token (plain or hashed) | optional |