This is a draft cheat sheet. It is a work in progress and is not finished yet.
Basics
Paragraph |
<p>Some Text</p> |
Some Text |
Formats any text as a paragraph. Automatically adds a new line afterwards. |
Bold |
<p>Some <strong>BOLD</strong> text</p> |
Some BOLD Text |
Makes the wrapped text bold |
Header 3 |
<h3>A Heading</h3> |
A Heading |
Makes the wrapped text larger, bold and blue |
Lists
List |
<ul> <li>List Item 1</li> </ul> |
List Item 1 |
Wraps around entire bullet list |
List Item |
<ul> <li>List Item 1</li> <li>List Item 2</li> </ul> |
List Item 1 List Item 2 |
Wraps around lines within the bullet list |
Quotes
Blockquote |
<blockquote> A Quote <span>Joe Bloggs</span> </blockquote> |
"A Quote" - Joe Bloggs |
Wraps around entire quote and author. Adds quote mark icons and other formatting |
Span (when within blockquote) |
<blockquote> A Quote <span>Joe Bloggs</span> </blockquote> |
"A Quote" - Joe Bloggs |
Wraps around the author to separate it from the actual quote |
|