```markdown Any markdown ```
```markdown Example markdown text from [https://markdown-it.github.io/](https://markdown-it.github.io/) # h1 Heading ## h2 Heading ### h3 Heading #### h4 Heading ##### h5 Heading ###### h6 Heading ## Lists Unordered + Create a list by starting a line with `+`, `-`, or `*` + Sub-lists are made by indenting 2 spaces: - Marker character change forces new list start: * Ac tristique libero volutpat at + Facilisis in pretium nisl aliquet - Nulla volutpat aliquam velit + Very easy! Ordered 1. Lorem ipsum dolor sit amet 2. Consectetur adipiscing elit 3. Integer molestie lorem at massa ```
@(https://twitter.com/Interior/status/463440424141459456) @(https://vimeo.com/515404225k) @(https://www.youtube.com/watch?v=BGaCjM2hal4) @(https://www.facebook.com/don.murray.121/posts/10219628323639292)e.g.:
Sunsets don't get much better than this one over @GrandTetonNPS. #nature #sunset pic.twitter.com/YuKy2rcjyU
— US Department of the Interior (@Interior) May 5, 2014
@(https://vimeo.com/515404225 width=300 height=200) @(https://www.youtube.com/watch?v=BGaCjM2hal4 width=300 height=200)Add a style to the embed:
@(https://vimeo.com/515404225 width=300 height=200 link=true label="Click here" style="display:block;background:red;margin:20px;")Add a link to the embed:
@(https://www.youtube.com/watch?v=BGaCjM2hal4 width=300 height=200 start=600 link=true label="Click here")
@(github user=some_user_name) #or a repository @(github owner=repository_owner repository=repository) #don't show avatar image @(github owner=repository_owner repository=repository decorate=false)
```<option language> code here ```Currently only javascript is formatted. For example:
```javascript let l = []; for(let i=0;<l.length;i++) { console.log(l\[i\]); } var x = {} ```
```latex \left[\begin{array}{c} \mathbf{x}_{t,i}\\ \mathbf{v}_{t,i}\\ \theta_{t,i}\\ \omega_{t,i} \end{array}\right] = \left[\begin{array}{c} \mathbf{x}_{t-1,i}\\ \mathbf{v}_{t-1,i}\\ \theta_{t-1,i}\\ \omega_{t-1,i} \end{array}\right]+\Delta\left[\begin{array}{c} \mathbf{v}_{t-1,i}\\ \left(T_{t,i}+\epsilon_{T}\right)cos\left(\theta_{t-1,i}\right)-\rho_{\mathbf{v}}\left\Vert \mathbf{v}_{t-1,i}\right\Vert ^{2}\frac{\mathbf{v}_{t-1,i}}{\left\Vert \mathbf{v}_{t-1,i}\right\Vert }\\ \left(T_{t,i}+\epsilon_{T}\right)sin\left(\theta_{t-1,i}\right)-\rho_{\mathbf{v}}\left\Vert \mathbf{v}_{t-1,i}\right\Vert ^{2}\frac{\mathbf{v}_{t-1,i}}{\left\Vert \mathbf{v}_{t-1,i}\right\Vert }\\ \omega_{t-1,i}\\ Y_{t,i}-\rho_{\omega}\omega_{t-1,i}^{2}+\epsilon_{Y} \end{array}\right] ```Which gives:
```vega-lite You vega-lite schema here ```e.g.:
```vega-lite { "$schema": "https://vega.github.io/schema/vega-lite/v2.json", "description": "A simple bar chart with embedded data. An example vega-lite file.", "width": 360, "height":200, "data": { "values": \[ {"a": "A","b": 28}, {"a": "B","b": 55}, {"a": "C","b": 43}, {"a": "D","b": 91}, {"a": "E","b": 81}, {"a": "F","b": 53}, {"a": "G","b": 19}, {"a": "H","b": 87}, {"a": "I","b": 52} \] }, "mark": "bar", "encoding": { "x": {"field": "a", "type": "ordinal"}, "y": {"field": "b", "type": "quantitative"} } } ```Gives: