# Markdown #

### Headings

Start the line with <kbd>#</kbd> to make it a first level heading

<kbd>##</kbd> Second level heading

<kbd>###</kbd> Third level heading

<kbd>####</kbd> Fourth level heading

**Better still, press <kbd>mh</kbd> when a list item is highlighted, and make it a heading automatically**

### Text Formatting

**BOLD** <kbd>CTRL+B</kbd> OR <kbd>Press bb</kbd>

*ITALIC* <kbd>CTRL+I</kbd> OR <kbd>Press ii</kbd>

~~DELETED~~ <kbd>~~</kbd> before and after text

Blockquotes

- Start each line with **>**
   - > Block quote

### Code

Single line

- <kbd>`</kbd> before

`Programming code`

<kbd>`</kbd> after

Multi

- <kbd>```</kbd> before
```
Programming code
```
<kbd>```</kbd> after

Programming languages with highlighting

- <kbd>```</kbd> html

```html 
<div class="row">
   <div class="col-md-1"></div>
   <div class="col-md-10">
      <h2>Text formatting</h2>
   </div>
   <div class="col-md-1"></div>
</div>
```
<kbd>```</kbd>
- <kbd>```</kbd> css

```css
ul.topLevel li.task, ul.topLevel ul li.task {
  font-size: 14px; /* Makes all lines the same size */
  font-weight: normal; /* and weight */
}

div.nodeImage {
  top: 3px; /* Adjust the collapse/expand triangle */
}
```
<kbd>```</kbd>

### Tables

Tables [GFM Tables](https://docs.github.com/en/github/writing-on-github/organizing-information-with-tables)

- Basic Table

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell

Advanced Table

- | Name | Description          |
| ------------- | ----------- |
| Help      | ~~Display the~~ help window.|
| Close     | _Closes_ a window     |

Aligned Table

- | Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |

### List styling

_Combine different styles in one list. Or set one list style for the whole list in the 'Options' dialog window <kbd>oo</kbd>_

### Bullet

- Use  **[\*]** prefix to make the sub-list bulleted
   - Sub1
   - Sub2

### Checkbox

**[]**

- task 1
   - sub-item gets its checkbox automatically
      - [ ] if its parent's got one
- [ ] task 2

### Numbered

1. **[1]**
   1. item
   1. another item
      1. sub-item
      1. another sub-item

### Hyperlinks

Checkvist supports different syntax for hyperlinks

- Markdown's native
- Checkvist's own **lnk:**
- or, **the best way**, a keyboard shortcut <kbd>Ctrl+K</kbd> or <kbd>Command+K</kbd> on Mac