Getting Started
Live Preview
Output Options
Custom Tools
Troubleshooting
HTML Tools
Pug (Jade)
Haml
Slim
Markdown
CSS Tools
Sass
Less
Stylus
Tailwindcss
JS Tools
Babel
Bundle JavaScript
CoffeeScript
Show Topics
Markdown
Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML.
Configuring Markdown
You can configure Markdown from Project Settings -> HTML Tools -> Markdown.
Change Output Destination
Click the output file path to manually change it or use project wide output options to adjust output path for all Markdown files.
Github Flavored
Github Flavored option allows you to use the Github Flavored version of markdown.
Minify HTML
Minify HTML option allows you to remove whitespace and comments from the output HTML file.
Wrap with HTML
Markdown by default doesn’t output a full html page. Use Warp with HTML option to wrap the output HTML inside of a basic HTML page.
<html>
<head>
<meta charset="UTF-8" />
<title><!-- file name --></title>
</head>
<body>
<!-- output html -->
</body>
</html>
Learn more about Markdown from Markdown website.