Markdown cheat sheet
Here you'll find a list of handy text transformations with Markdown, that will help you quickly add and format text, code, or formulas.
Type
*text*to make it bold.Type
_text_to make it italic.
At the beginning of an empty paragraph:
*,-or+followed by aSpace: add a bulleted list.1.followed by aSpace: add a numbered list.*[]followed by aSpace: add a todo list.#followed by aSpace: add a level 1 heading.##followed by aSpace: add a level 2 heading.###followed by aSpace: add a level 3 heading.```[language-name]followed by aSpace: add a code cell for a specific language.language-nameis any of the languages supported by Nextjournal, namely Python, R, Julia, Clojure, Bash, and Agda. If you only type```followed by aSpace, a new code cell of the most recently used language will be added, or, if there's no language used yet, a Julia code cell.$writeyourformulahere$to show a LaTeX formula.