Welcome to your new Midas site. This post is a quick tour of the markdown features you can use right out of the box.
Text formatting
You can write bold text, italic text, or strikethrough. You can also combine them: bold and italic.
Links and images
Here is a link to example.com.
Images use standard markdown syntax:

Lists
Unordered list:
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered list:
- Step one
- Step two
- Step three
Blockquotes
"The best time to plant a tree was twenty years ago. The second best time is now."
— Chinese proverb
Code
Inline code looks like print("hello").
Fenced code blocks get syntax highlighting:
def greet(name):
"""Say hello to someone."""
message = f"Hello, {name}!"
print(message)
return message
greet("World")
function greet(name) {
const message = `Hello, ${name}!`;
console.log(message);
return message;
}
greet("World");
Tables
| Feature | Supported |
|---|---|
| Markdown | Yes |
| Frontmatter | Yes |
| RSS feeds | Yes |
| Multilingual | Yes |
Horizontal rule
Inline HTML
Because md_in_html is enabled, you can drop in raw HTML when you need it:
This is a custom HTML block inside markdown.
Table of Contents
The toc extension is enabled, but Midas does not auto-insert a TOC. If your template supports it, you can generate one with the toc markdown extension.
That covers the basics. Now go write something real.