Getting Started

Loading...
Updated 11 months ago by Admin
Created 11 months ago by Admin
guidebasicsnavigationeditingdemo

Getting Started with the NextWiki Demo

Note: This is a public demonstration instance of NextWiki. Content may be reset periodically.

Welcome to NextWiki! This guide will help you get started with navigating and using the platform.

Navigation

  • Use the sidebar on the left to browse the available pages and folders.
  • Click on a page title to view its content.
  • Use the search bar at the top to find specific pages or content.

Creating Content

To create a new page:

  1. Navigate to the desired parent folder (or the root).
  2. Click the "Create Page" button (location might vary depending on UI).
  3. Enter a title and start writing your content using Markdown.

Basic Editing

NextWiki uses Markdown for formatting content. Here are some basics:

  • # Header 1, ## Header 2, etc. for headings.
  • *italic* or _italic_ for italic text.
  • **bold** or __bold__ for bold text.
  • [Link Text](URL) for creating hyperlinks.
  • `code` for inline code.
def greet(name):
  print(f"Hello, {name}!")

greet('World');

Lists

Unordered List:

  • Item 1
  • Item 2
    • Nested Item 2a
    • Nested Item 2b

Ordered List:

  1. First item
  2. Second item
  3. Third item

Blockquotes

This is a blockquote. It's useful for quoting text from another source.

Horizontal Rule

Use three or more hyphens, asterisks, or underscores:


Tables

Header 1Header 2Header 3
Align LCenterAlign R
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Tip: Markdown is versatile! You can create lists, links, code blocks, and more to structure your content effectively.

Explore More Features

  • 📄 Markdown Examples
  • âš™ Customization Guide
  • 🔗 API Integration

Explore the "Features" section for more advanced examples!