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

  1. You can make an ordered list like this!
  2. It’s just numbers and a dot.
  3. Easy.

Images & “Cool Stuff”

Here is a standard image:

Concise description of lake photo

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:

Alt text

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.

Want to turn an image into a link? Wrap the image code in the link code!

Alt text

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!