2025-12-30
Headings
You don’t need to write the H1 (Title) or Date—the script adds those automatically!
H2 is a Medium Heading
H3 is a Small Heading
The paragraph tag is automatic. You just type text like this! This is an example paragraph.
Here’s how you use BOLD text.
And here’s how you use italic text.
The link tag is different—brackets for text, parentheses for URL!
Lists
- You can make an ordered list like this!
- It’s just numbers and a dot.
- Easy.
- Or how about an unordered list?
- Just use asterisks (or hyphens).
- That means the list uses bullets.
Images & “Cool Stuff”
Here is a standard image:

This is a caption! We add the class like this:
Advanced: Adding Classes (The “Zonelets” Style)
In your HTML, you had an image with class="small right". In Markdown, we use curly braces at the end of the line:

Wow, that image is smaller and aligned to the right. This text is flowing around it!
We added two classes to it… .small and .right.
Image Links
Want to turn an image into a link? Wrap the image code in the link code!
Escape Characters
If you need to type special symbols like < or > without breaking the page, you can often just type them in Markdown. But if you are writing code, wrap it in backticks:
Use <br> to break a line.
Conclusion
Well, that’s all for now. Keep this file around and use it for reference!