ezDoc User Guide

Managing Pages

Learn how to create, edit, organize, and delete pages in your documentation.

Creating Pages

New Page Button

  1. Click "+ New Page" in the sidebar
ezDocStudio_NewPage
  1. Enter a page title
  2. Choose content type (Markdown or HTML)
  3. Click "Create"

Page Properties

Each page has:

  • Title - Displayed in navigation
  • Slug - URL-friendly identifier
  • Content Type - Markdown or HTML
  • Order - Position in navigation

Editing Pages

Opening a Page

Click any page in the sidebar to open it in the editor.

Switching Content Type

Change between Markdown and HTML:

  1. Push the "Markdown" or "HTML" toggle button
  2. Content is preserved

Editor Features

  • Toolbar - Quick formatting buttons
  • Auto-save - Saves every 30 seconds
  • Manual save - Ctrl+S / Cmd+S
  • Preview - See rendered output

Organizing Pages

Reordering Pages

Drag and drop pages in the sidebar to reorder them.

Moving to Categories

Drag a page onto a category header to move it.

Uncategorized Pages

Pages without a category appear in the "Other Pages" section when exported.

Renaming Pages

  1. Open the page
  2. Click the page title at the top
Click to Edit
  1. Enter a new title
Edit Page Title
  1. Press Enter or click outside

The slug updates automatically.

Deleting Pages

  1. Open the page you want to delete
  2. Click the "🗑️ Delete" button
  3. Confirm the deletion
⚠️ Warning: Deleting a page is permanent and cannot be undone!
  • Click any page to open it
  • Scroll through long page lists
  • Collapse/expand categories

Keyboard Navigation

  • Ctrl+S - Save current page
  • Ctrl+P - Preview current page
  • Esc - Close modals

Page Content

Markdown Pages

Write using Markdown syntax:

# Heading
**Bold** and *italic*
- Lists
[Links](url)

HTML Pages

Full HTML control:

<h1>Heading</h1>
<p>Paragraph</p>
<div class="box">Content</div>

Mixed Content

You can use HTML in Markdown pages:

# Markdown Heading

<div class="notification is-info">
HTML notification in Markdown!
</div>

Back to **Markdown**.

Best Practices

Page Titles

  • Keep titles concise
  • Use descriptive names
  • Maintain consistent naming

Content Organization

  • One topic per page
  • Use headings for structure
  • Link related pages

File Management

  • Regular saves
  • Use categories
  • Keep pages focused

✨ Pro Tip: Use the preview feature frequently to see how your pages will look when exported!