Getting Started
Step-by-step guide to set up and begin using Siddhi Hajare Documentation
Quick Start Guide
Welcome to Siddhi Hajare Documentation! This guide walks you through setting up your workspace and creating your first documentation pages. Follow these steps to get started quickly.
Create Your Account
Visit our website and sign up for a free account. Provide your email address and create a secure password.
Verify Email
Check your email for a verification link. Click the link to activate your account.
Set Up Workspace
Create your first workspace by choosing a name and description for your documentation project.
Invite Team Members
Add team members by entering their email addresses and assigning appropriate roles.
Creating Your First Page
Use our drag-and-drop editor to create pages visually. Simply add headings, text, and media elements.
Write in Markdown for quick content creation. Our editor supports all standard Markdown syntax.
Create pages programmatically using our REST API for automation.
const response = await fetch('/api/pages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${API_TOKEN}`
},
body: JSON.stringify({
title: 'Getting Started',
content: '# Welcome
This is your first page.',
workspaceId: 'your-workspace-id'
})
});
const page = await response.json();
console.log('Created page:', page.id);
curl -X POST https://api.siddhidocs.com/pages \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{
"title": "Getting Started",
"content": "# Welcome\
\
This is your first page.",
"workspaceId": "your-workspace-id"
}'
Organizing Content
Organize your documentation into logical categories. Create folders and subfolders to structure your content hierarchy.
Basic Formatting
| Element | Markdown | Result |
|---|---|---|
| Heading | # Title | Large heading |
| Bold | **text** | Bold text |
| Italic | *text* | Italic text |
| Code | `code` | inline code |
| Link | [text](url) | link |
Collaboration Features
Comments
Add comments to pages and discuss changes with your team.
Reviews
Submit pages for review and approval before publishing.
Common Pitfalls
Next Steps
Once you've completed the basic setup, explore our advanced features like custom themes, automated publishing, and integration with external tools. Check out our API overview and advanced topics guides for more information.
Last updated 1 week ago