This page demonstrates the full range of Markdown syntax supported by the Luna SSG engine.
This is bold text.
This is italic text.
This was a mistake.
You can combine them like this.
This is a blockquote. It's a great way to highlight a section of text. You can quote people, or just make a point.
Nested blockquotes are also possible.
Just add another angle bracket.
This is a link to Google.
Here is a placeholder image:
Image of a "landscape"
You can wrap code like this directly in a sentence.
This renders with a light theme and syntax highlighting.
def hello_world():
# This is a comment
message = "Hello from Luna SSG!"
print(message)
This block is automatically styled like a terminal console.
$ git clone https://github.com/stornov/luna-ssg.git
Cloning into 'luna-ssg'...
Done.
You can create tables with headers and aligned columns.
| Feature | Status | Priority |
|---|---|---|
| Markdown Parser | Implemented | High |
| Templating | Implemented | High |
| Coffee Maker | Future | Low |
A horizontal rule is created with three hyphens and is great for separating sections.
That's all for now!