Skip to main content

Short Markdown Primer

Just some of the more important kinds of features in markdown that are a bit more complicated to remember (since Markdown is a pretty straightforward language especially when compared to other kinds of document layout languages such as HTML).

1. Collapsable Section

<details>

<summary>Toggle Section </summary>

### You can add a header

You can add text within a collapsed section. 

You can add an image or a code block, too.

</details>
Toggle Section

You can add a header

You can add text within a collapsed section.

You can add an image or a code block, too.

2. Typography

  1. **Bold**
  2. *Italic*, or _italic_
  3. ~~Strikethrough~~
  4. **Just Bold then:_Bold&Italic_**
  5. ***ALL BOLD AND ITALIC***
  6. <sub>subscript</sub>
  7. <sup>supscript</sup>
  8. > quote text, or <blockquote>quote text</blockquote>