-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01-hello-world.osf
More file actions
35 lines (27 loc) · 922 Bytes
/
01-hello-world.osf
File metadata and controls
35 lines (27 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// =============================================================================
// Example: Hello World
// Category: Getting Started
// Description: The simplest possible OSF document - your first step
// Features: @meta block, @doc block, basic text
// Estimated time: 2 minutes
// =============================================================================
@meta {
title: "Hello World";
author: "OmniScript Team";
date: "2025-10-15";
version: "1.0";
theme: default;
}
@doc {
# Hello, World!
Welcome to **OmniScript Format** (OSF)!
This is the simplest possible OSF document. It contains:
- A `@meta` block with document information
- A `@doc` block with markdown-formatted content
## What You Can Do Next
1. Modify this text
2. Add more sections
3. Try different themes
4. Export to PDF, DOCX, PPTX, or XLSX
**That's it!** You've created your first OSF document.
}