Mastering Markdown with Project SSG
Project SSG supports extended Markdown syntax powered by MDEx. Let's explore what you can do with your content.
Headers
# Level 1 Header
## Level 2 Header
### Level 3 Header
Text Formatting
You can use bold, italic, bold italic, and inline code.
Code Blocks
defmodule HelloWorld do
def greet(name) do
"Hello, #{name}!"
end
end
const greeting = (name) => `Hello, ${name}!`;
console.log(greeting("World"));
Lists
Unordered Lists
- Item one
- Item two
- Nested item
- Another nested
- Item three
Ordered Lists
- First step
- Second step
- Third step
Blockquotes
"The best way to predict the future is to invent it."
— Alan Kay
This is a regular blockquote. It can span multiple lines. And multiple paragraphs.
Links and Images
Tables
| Feature | Status | Description |
|---|---|---|
| Markdown | ✓ | Full support |
| YAML FM | ✓ | Custom fields |
| Themes | ✓ | Multiple included |
| Components | ✓ | Reusable partials |
Strikethrough
This text is struck through
Autolinks
Visit https://luniv.tech for more.
Task Lists
- Completed task
- Pending task
- Another done task
Horizontal Rule
Tips for Great Content
- Be Clear - Use headers to structure your content
- Use Examples - Code samples help readers understand
- Format Wisely - Bold important concepts
- Link Appropriately - Help readers explore related content
- Proofread - Catch typos before publishing
Posted by David Roberts on December 21, 2024