Updated about 16 hours ago by NextWiki Admin
Created 2 days ago by NextWiki Admin
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 (not available for this demo)
To create a new page:
- Click the "New Page" button
- Enter a title and path 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.
for embedding images.- `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:
- First item
- Second item
- Third item
Blockquotes
This is a blockquote. It's useful for quoting text from another source.
This is an info blockquote.
Horizontal Rule
Use three or more hyphens, asterisks, or underscores:
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Align L | Center | Align R |
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
๐ก Tip: Markdown is versatile! You can create lists, links, code blocks, and more to structure your content effectively.
Explore More Features
Explore the "Features" section for more advanced examples!