Basic formatting syntax
Boardeaux combines a syntax for formatting text called Markdown, which supports HTML tags, along with a few unique writing features.
Markdown is a lightweight markup language that you can use to add formatting elements to plain text documents.
Headings
To create a heading, add number signs (#) in front of a word or phrase. The number of number signs you use should correspond to the heading level. Always put a space between the number signs and the heading name!
You can also use the <h1÷6> HTML tags.
# Heading level 1
## Heading level 2
Rendered Output:
Heading level 1
Heading level 2
Line Breaks
To create a line break:
* Include an HTML single line break tag <br> at the end of the first line, and then press Return.
* End a line with two or more spaces, and then press Return.
* Include a backslash \ at the end of the first line, and then press Return.
Styling text
You can indicate emphasis with bold, italics, or strikethrough.
* To bold text, add two asterisks (**) or underscores (__) without spaces around the word or phrase.
* To italicize text, add one asterisk (*) or underscore (_) without spaces around the word or phrase.
* To strike through text, add one or two tildes (~~) without spaces around the word or phrase.
| Style | Syntax | Rendered Output | Keyboard shortcut |
|---|---|---|---|
Bold |
|
Bold |
Cmd+B (Mac) or Ctrl+B (Windows/Linux) |
Italic |
|
Italic |
Cmd+I (Mac) or Ctrl+I (Windows/Linux) |
Bold and Italic |
|
Bold & Italic |
None |
Bold and nested italic |
|
bold italic text |
None |
Strikethrough |
|
Strikethrough |
None |
Lists
You can organize items into ordered, unordered, nested, and task lists.
Ordered Lists
To create an ordered list, add line items with numbers followed by periods or parenthesis. The numbers don’t have to be in numerical order.
Always put a space between the periods or parenthesis and the following data!
| Markdown | Rendered Output |
|---|---|
1. First item |
1. First item |
1. First item |
1. First item |
1. First item |
1. First item |
1. First item |
|
1) First item |
1. First item |
Unordered Lists
To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a nested list.
Always put a space between the unordered list symbols and the following data!
If you need to start an unordered list item with a number followed by a period, you can use a backslash (\) to escape the period.
| Markdown | Rendered Output |
|---|---|
- First item |
|
* First item |
|
+ First item |
|
- First item |
|
- 1968\. List item with a number followed by a period |
|
Code block & Code inline
To denote a word or phrase as code, enclose it in backticks (`).
To format code or text into its own distinct block, use triple backticks. The opening and closing triple backticks must be placed on separate lines!
| Markdown | Rendered Output |
|---|---|
|
|
|
|
Links
-
To create a link, enclose the link text in brackets
[]and then follow it immediately with the URL in parentheses().
Keyboard shortcut: Cmd+K (Mac) or Ctrl+K (Windows/Linux)
| Markdown | Rendered Output |
|---|---|
|
-
Links are automatically created when valid URLs are written:
-
To quickly turn a URL or email address into a link, enclose it in angle brackets:
| Markdown | Rendered Output |
|---|---|
|