Skip to content

Write Your First Document

This is a quick guide to create your first page. For more detailed information, check out the Simple Markdown Guide.

Create a New Page

  1. In the editor, click the + button next to any folder
  2. Name your file (e.g., my-first-page.md)
  3. Add a title at the top:
    # My First Page
    
    Welcome to my new page!
    

Add Some Content

Try these common Markdown elements:

## A Section Heading

This is a paragraph with **bold** and *italic* text.

- List item 1
- List item 2
  - Subitem A
  - Subitem B

[Link to another page](another-page.md)

> This is a quote block

Add Front Matter (Optional)

At the top of your file, you can add special settings:

---
title: My Amazing Page
description: This is my first page in Change Maker
---

Next Steps