Cheatsheet

Sheets Cheatsheet


Contents

 



Span Multiple Columns


Example Cell Value Syntax Usage
5 column span
Cell Cell Cell Cell Cell
***** 5 column span ***** <HEADING CELL CONTENT> 5 asterisks followed by a single space then the cell contents.
4 column span
Cell Cell Cell Cell
**** 4 column span **** <HEADING CELL CONTENT> 4 asterisks followed by a single space then the cell contents.
3 column span
Cell Cell Cell
*** 3 column span *** <HEADING CELL CONTENT> 3 asterisks followed by a single space then the cell contents.
2 column span
Cell Cell
** 2 column span ** <HEADING CELL CONTENT> 2 asterisks followed by a single space then the cell contents.
1 column span
Cell
** 1 column span * <HEADING CELL CONTENT> 1 asterisk followed by a single space then the cell contents.



Highlight a Cell


Example Cell Value Syntax Usage
Highlighted cell __Highlighted cell__ __<CELL CONTENT>__ 2 underscores on either side of the cell contents.



Markdown


Rules

  1. First cell only
  2. Plain text only
  3. Each markdown item on its own line
  4. One blank-line between each item
info Pro Tip
  1. Its easiest to write your content in a simple text editor like Notepad or Text Edit, not in Microsoft® Word.

  2. Paste the entire markdown content into the first cell--double-click the cell to activate.

  3. warning If you don't activate the cell before pasting it, it will put each line of markdown into its own cell--this will cause the table to not display properly.

Usage

Example Cell Value Syntax Usage

Heading 1

Heading 2

Paragraph Text

>>>
Markdown Content
<<<
>>>
<MARKDOWN CONTENT>
<<<
  • 3 greater-than symbols ( > ), on their own line, preceding the markdown
  • The markdown itself
  • Followed by 3 less-than symbols ( < ) on their own line

Heading 1

Heading 1 # <HEADING CONTENT> On its own line, 1 pound-sign ( a.k.a. hashtag, or number-sign # ) followed by a space, then the heading content.

Heading 2

## Heading 2 ## <HEADING CONTENT> On its own line, 2 pound-signs followed by a space, then the heading content.

Paragraph text.

Another pair of geraffes.

Paragraph text.

Another pair of geraffes.

<FIRST PARAGRAPH CONTENT>

<SECOND PARAGRAPH CONTENT>

  • Each paragraph must be one line of text--no line breaks or returns
  • Each paragraph must be on its own line

Putting it all Together

This is an example of all the markdown styles.

Second Heading

Paragraph text.

Another paragraph of text.

>>>
# Putting it all Together

## Second Heading

Paragraph text.

Another paragraph of text.
<<<
>>>
# <HEADING 1 CONTENT>

## <HEADING 2 CONTENT>

<FIRST PARAGRAPH TEXT>

<SECOND PARAGRAPH TEXT>
<<<
  • Each markdown item on its own line
  • One blank-line between each item (opening & closing Markdown items >>> <<< do not have to be seperated by blank lines.)