Introduction
Welcome to your documentation site. Edit this content in the editor and watch the preview update in real-time.
Getting Started
This docs builder supports all standard markdown features plus some extras.
Installation
npm install my-awesome-sdk
Quick Start
import { SDK } from "my-awesome-sdk";
const client = new SDK({
apiKey: "your_api_key",
});
const result = await client.create({
name: "Hello World",
type: "document",
});
console.log(result.id);
Features
Note
This is a note callout. Use it for general information.
Tip
This is a tip callout. Use it for helpful suggestions.
Warning
This is a warning callout. Use it for potential issues.
Important
This is an important callout. Use it for critical information.
Comparison Table
| Feature | Free | Pro | Enterprise |
|---|
| Pages | 5 | 50 | Unlimited |
| Themes | 4 | 12 | Custom |
| Export | HTML | HTML + PDF | All formats |
| Support | Community | Email | Dedicated |
Code Examples
Here's some Python:
def fibonacci(n: int) -> list[int]:
"""Generate Fibonacci sequence."""
fib = [0, 1]
for i in range(2, n):
fib.append(fib[i-1] + fib[i-2])
return fib[:n]
print(fibonacci(10))
Configuration
You can configure the SDK using environment variables or pass options directly:
- API Key — Required for authentication
- Base URL — Override the default endpoint
- Timeout — Request timeout in milliseconds (default: 30000)
- Retries — Number of retry attempts (default: 3)
Use client.configure() to update settings at runtime.
Built with ViraClips Docs Builder