Markdown Cheatsheet for Blogging
Everything you need to write blog posts in Markdown. Headings, links, images, code blocks, lists.
Markdown Cheatsheet for Blogging
Markdown is all you need to write for Marklog. Here's the syntax that matters.
Headings
# Heading 1
## Heading 2
### Heading 3
Text formatting
**bold text**
*italic text*
~~strikethrough~~
> blockquote
Links and images
[link text](https://example.com)

Code blocks
Inline code: const x = 1
Code block:
function hello() {
console.log("Hello from Marklog");
}
Lists
- unordered item
- another item
1. ordered item
2. another item
Frontmatter
The stuff between --- at the top of your file is metadata:
---
title: My Post
date: 2024-03-01
description: A short summary
category: Technology
tags: ["web", "markdown"]
---
That's it. Write Markdown, push to GitHub, your blog updates automatically.