Markdown demo

by Jon Erik Solheim - October 01 2016

It's easy to render html from markdown content in restdb.io. 

What is markdown? 

Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML). 

Check out this demo page, click the view source to see how it's made. 

Link to markdown demo page

Markdown is just plain text that you put inside a Handlebars helper.

    
{{#markdown}}
# This is an H1

## This is an H2

###### This is an H6

A plain paragraph with text ...

## Lists

*   Red
*   Green
*   Blue
...
{{/markdown}}

Back

View Source