-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.osf
More file actions
27 lines (20 loc) · 790 Bytes
/
main.osf
File metadata and controls
27 lines (20 loc) · 790 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
// File: omniscript-examples/modular/main.osf
// What: Main document demonstrating @include directive
// Why: Show how to compose documents from multiple files
// Related: sections/intro.osf, sections/body.osf, sections/conclusion.osf
@meta {
title: "Complete Project Report";
author: "Project Team";
date: "2025-10-17";
description: "Comprehensive project documentation using modular composition";
}
@include { path: "./sections/intro.osf"; }
@include { path: "./sections/body.osf"; }
@include { path: "./sections/conclusion.osf"; }
@doc {
---
**Document composed from multiple files using @include directive**
- intro.osf: Executive summary and project overview
- body.osf: Technical details and implementation
- conclusion.osf: Results and recommendations
}