Getting StartedGetting Started
Getting Started

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.

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);

Organizing Content

Organize your documentation into logical categories. Create folders and subfolders to structure your content hierarchy.

Tip: Start with a clear structure. Plan your documentation hierarchy before adding content.

Basic Formatting

ElementMarkdownResult
Heading# TitleLarge heading
Bold**text**Bold text
Italic*text*Italic text
Code`code`inline code
Link[text](url)link

Collaboration Features

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.

Was this page helpful?
Built with Documentation.AI

Last updated 1 week ago