Remember to check out the documentation for restdb.io Pages and for restdb.io Querying. You can also view the master template source code.
<!-- use the master page "layout" for this page -->
{{#inherit "layout"}}
{{#block "title"}}
<!-- get title text from settings collection -->
<h1>Markdown in restdb.io Pages</h1>
<hr>
{{/block}}
{{#block "content"}}
{{#markdown}}
# This is an H1
## This is an H2
###### This is an H6
A plain paragraph with text ...
## Lists
* Red
* Green
* Blue
## Ordered lists
1. Red
2. Green
3. Blue
## Code blocks
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
### Inline HTML works
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
{{/markdown}}
{{/block}}
{{#block "sidebar"}}
Markdown syntax: <a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet">Cheat sheet</a>
{{/block}}
{{/inherit}}