* [Heading 1](#heading-1)
* [Heading level 2](#heading-level-2)
* [Heading level 3 - with a table](#heading-level-3-with-a-table)
* [Heading 3 - a diagram with links](#heading-3-a-diagram-with-links)
* [Heading 3 - with a Table of contents](#heading-3-with-a-table-of-contents)
* [Other examples](#other-examples)
* [Image](#image)
* [Preformatted Text](#preformatted-text)

# Heading 1

## Heading level 2

Some normal text with hyperlinks to a [website](https://www.enterprisehealth.com/) and a link to a document on the [shared drive](gdoc:1H6vwfQXIexdg4ldfaoPUjhOZPnSkNn6h29WD6Fi-SBY) with multiple versions of [the link](gdoc:1H6vwfQXIexdg4ldfaoPUjhOZPnSkNn6h29WD6Fi-SBY) because people cut and paste. [Link to test page](gdoc:1iou0QW09pdUhaNtS1RfjJh12lxKAbbq91-SHGihXu_4). Link to [doc in another folder](gdoc:1G4xwfBdH5mvEQyGN16TD2vFUHP8aNgU7wPst-2QTZug).

### Heading level 3 - with a table

<table>
<tr>
<td>Heading 1</td>
<td>Heading 2</td>
<td>Heading 3</td>
<td>Heading 4</td>
<td>Heading 5</td>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4<br />
<table>
<tr>
<td>C1</td>
<td><strong>C2</strong></td>
</tr>
<tr>
<td>C3</td>
<td>C4</td>
</tr>
</table>
After subtable</td>
<td>Cell 5</td>
</tr>
</table>

### Heading 3 - a diagram with links

[Diagram](gdoc:1Du-DYDST4liLykJl0fHSCvuQYIYhtOfwco-ntn38Dy8)

[Diagram](gdoc:1Du-DYDST4liLykJl0fHSCvuQYIYhtOfwco-ntn38Dy8)

### Heading 3 - with a Table of contents

* [Heading 1](#heading-1)
* [Heading level 2](#heading-level-2)
* [Heading level 3 - with a table](#heading-level-3-with-a-table)
* [Heading 3 - a diagram with links](#heading-3-a-diagram-with-links)
* [Heading 3 - with a Table of contents](#heading-3-with-a-table-of-contents)
* [Other examples](#other-examples)
* [Image](#image)
* [Preformatted Text](#preformatted-text)

# Other examples

## Image

![](1000000000000640000001CF60FB0243CA95EC14.jpg)

![](10000000000003F0000003F092F85671239C65F9.jpg)

## Preformatted Text

```
This is monospaced text. This should line up  |
                                    with this |

```

## Code

Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and *Markdown Here* -- support syntax highlighting. Which languages are supported and how those language names should be written will vary from renderer to renderer. *Markdown Here* supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the [highlight.js demo page](http://softwaremaniacs.org/media/soft/highlight/test.html).

### Typescript / Javascript

{{markdown}}
```javascript

class MyClass {
  public static myValue: string;
  constructor(init: string) {
    this.myValue = init;
  }
}
import fs = require("fs");
module MyModule {
  export interface MyInterface extends Other {
    myProperty: any;
  }
}
declare magicNumber number;
myArray.forEach(() => { }); // fat arrow syntax
```
{{/markdown}}

## Video

From Youtube:

[Google Drive, Docs, and Project Management with GSuite](https://www.youtube.com/watch?v=v6QAIWLCz8I&t=1743s)

## Horizontal Lines

This is some text separated by a horizontal line

___

This is after the horizontal line.

## Lists

* Bullet 1
* Bullet 2
    * SubBullet 1
    * SubBullet 2
* Bullet 3
    1. SubNumeric 1
    2. SubNumeric 2
    3. SubNumeric 3
A.  Alpha 1
B.  Alpha 2
C.  Alpha 3

## Formatting

Some **bold** **_boldanditalic_*** italic*  text

## Equations

### Using the actual equation object

```math
E = m c^{2}
```

```math
e^{i \pi} - 1 = 0
```

### Text equivalent

*E=mc**2*

Inline $$E = m c^{2}$$ math

## Footnotes

1Footnotes should display as a footnote, and should always display at the very end of the document (page)**?** This is some sample text with a footnote.

This is some other data.
