|
| 1 | +# Chapter manifest for the twinBASIC documentation PDF. |
| 2 | +# |
| 3 | +# `front_matter` is an ordered list of sections that emit between the |
| 4 | +# title page and the first numbered Part. No divider page, no part |
| 5 | +# number; each entry just contributes its chapter(s) inline. Each |
| 6 | +# entry has: |
| 7 | +# title -- the conceptual section name (used by future TOC and as |
| 8 | +# the anchor seed when the URL would otherwise produce an |
| 9 | +# empty anchor, e.g. the root `/` page). |
| 10 | +# page -- single absolute URL (alternative to `prefixes`); use |
| 11 | +# when the section is exactly one page (the root index). |
| 12 | +# prefixes -- URL-prefix list (alternative to `page`); same shape as |
| 13 | +# on a numbered part. |
| 14 | +# |
| 15 | +# `parts` is an ordered list of numbered book parts. Each part has: |
| 16 | +# title -- shown on the part divider page and in the global TOC. |
| 17 | +# subtitle -- optional second-line descriptor on the divider. |
| 18 | +# prefixes -- one or more URL prefixes; book.html gathers every |
| 19 | +# page in `site.pages` whose URL contains a prefix, |
| 20 | +# sorts by URL, and emits each as a chapter. Used by |
| 21 | +# "flat" parts that map directly to a folder of pages. |
| 22 | +# page -- single absolute URL alternative to `prefixes`, used |
| 23 | +# for one-chapter parts (e.g. the FAQ). Match is |
| 24 | +# exact, not contains-based, so a one-page section |
| 25 | +# doesn't accidentally sweep in siblings. |
| 26 | +# foreword_page -- single absolute URL emitted as a `<article |
| 27 | +# class="part-foreword">` right after the part |
| 28 | +# divider, before any chapter dividers. No running |
| 29 | +# header on these pages (CSS suppresses chrome via a |
| 30 | +# named page). Used by the Packages part to surface |
| 31 | +# the `/tB/Packages/` landing as introductory |
| 32 | +# material for the whole section. |
| 33 | +# chapters -- ordered list of per-chapter entries (1.9). Each |
| 34 | +# chapter has its own divider page and its own |
| 35 | +# chapter-level content; the part becomes a |
| 36 | +# container for several distinct subjects rather |
| 37 | +# than a flat folder. Each entry has: |
| 38 | +# title -- the chapter divider title. |
| 39 | +# subtitle -- optional descriptor. |
| 40 | +# landing_page -- the chapter's intro page; always |
| 41 | +# emitted first within the |
| 42 | +# chapter, and the plugin strips |
| 43 | +# its source H1 so the chapter |
| 44 | +# divider's H2 is the sole |
| 45 | +# outline entry for the chapter. |
| 46 | +# prefixes -- additional URL prefixes for |
| 47 | +# content pages (members, etc.); |
| 48 | +# sorted by URL after the |
| 49 | +# landing. A page that matches |
| 50 | +# a prefix AND is the landing is |
| 51 | +# emitted only once (as the |
| 52 | +# landing). |
| 53 | +# |
| 54 | +# Index pages (URL ending in `/`) sort before sibling content pages |
| 55 | +# under ASCII lexicographic order, so each part naturally opens with |
| 56 | +# its package landing page followed by the individual symbols. |
| 57 | + |
| 58 | +front_matter: |
| 59 | + - title: Introduction |
| 60 | + page: / |
| 61 | + |
| 62 | +parts: |
| 63 | + - title: Features |
| 64 | + subtitle: Language additions, attributes, tooling, and packaging |
| 65 | + prefixes: |
| 66 | + - /Features/ |
| 67 | + |
| 68 | + - title: Frequently Asked Questions |
| 69 | + subtitle: Status, scope, and how to get help |
| 70 | + page: /FAQ |
| 71 | + |
| 72 | + - title: Tutorials |
| 73 | + subtitle: Worked examples for CEF, WebView2, and CustomControls |
| 74 | + prefixes: |
| 75 | + - /Tutorials/ |
| 76 | + |
| 77 | + - title: The Core Language |
| 78 | + subtitle: Statements, operators, and built-in keywords |
| 79 | + prefixes: |
| 80 | + - /tB/Core/ |
| 81 | + |
| 82 | + - title: Reference Section |
| 83 | + subtitle: Alphabetical indexes of statements, operators, and compiler constants, plus the project glossary |
| 84 | + # The live site has a top-level "Reference Section" nav item that groups |
| 85 | + # these alphabetical-index pages. The five Reference/* pages plus the |
| 86 | + # Controls table and the Glossary live at three different URL prefixes; |
| 87 | + # `contains`-match catches all of them. (Attributes also belongs here in |
| 88 | + # the live nav but its permalink is /tB/Core/Attributes, which the Core |
| 89 | + # part above already sweeps up; we leave it there rather than introduce |
| 90 | + # an excludes schema for one page.) |
| 91 | + prefixes: |
| 92 | + - /Reference |
| 93 | + - /tB/Controls |
| 94 | + - /tB/Gloss |
| 95 | + |
| 96 | + - title: Packages |
| 97 | + subtitle: The runtime and library packages shipped with twinBASIC |
| 98 | + # The /tB/Packages/ landing page is the part's foreword; its content |
| 99 | + # (an overview of all built-in packages) sits between the part divider |
| 100 | + # and the first chapter divider, with no running header. Each package |
| 101 | + # below becomes a chapter with a dedicated chapter-divider title |
| 102 | + # page; the chapter's own source landing page emits next (with its |
| 103 | + # source H1 stripped by the plugin to avoid the redundancy with the |
| 104 | + # chapter divider's H2), followed by the package's class / module / |
| 105 | + # control pages in URL order. |
| 106 | + foreword_page: /tB/Packages/ |
| 107 | + chapters: |
| 108 | + - title: VBA Package |
| 109 | + subtitle: Standard runtime modules --- Strings, Math, FileSystem, and the rest |
| 110 | + # The VBA landing lives at /tB/Packages/VBA (added when Packages |
| 111 | + # was promoted to a top-level nav item), while individual module |
| 112 | + # members keep their legacy /tB/Modules/... URLs. |
| 113 | + landing_page: /tB/Packages/VBA |
| 114 | + prefixes: |
| 115 | + - /tB/Modules/ |
| 116 | + |
| 117 | + - title: VBRUN Package |
| 118 | + subtitle: Runtime types for controls, errors, and the property bag |
| 119 | + landing_page: /tB/Packages/VBRUN/ |
| 120 | + prefixes: |
| 121 | + - /tB/Packages/VBRUN/ |
| 122 | + |
| 123 | + - title: VB Package |
| 124 | + subtitle: Classic VB6 forms and intrinsic controls |
| 125 | + landing_page: /tB/Packages/VB/ |
| 126 | + prefixes: |
| 127 | + - /tB/Packages/VB/ |
| 128 | + |
| 129 | + - title: WebView2 Package |
| 130 | + subtitle: Chromium-based browser control via Microsoft Edge WebView2 |
| 131 | + landing_page: /tB/Packages/WebView2/ |
| 132 | + prefixes: |
| 133 | + - /tB/Packages/WebView2/ |
| 134 | + |
| 135 | + - title: Assert Package |
| 136 | + subtitle: Test assertions with Exact, Strict, and Permissive comparison |
| 137 | + landing_page: /tB/Packages/Assert/ |
| 138 | + prefixes: |
| 139 | + - /tB/Packages/Assert/ |
| 140 | + |
| 141 | + - title: CustomControls Package |
| 142 | + subtitle: The WaynesControls suite and its supporting framework |
| 143 | + landing_page: /tB/Packages/CustomControls/ |
| 144 | + prefixes: |
| 145 | + - /tB/Packages/CustomControls/ |
| 146 | + |
| 147 | + - title: CEF Package |
| 148 | + subtitle: Chromium Embedded Framework browser control |
| 149 | + landing_page: /tB/Packages/CEF/ |
| 150 | + prefixes: |
| 151 | + - /tB/Packages/CEF/ |
| 152 | + |
| 153 | + - title: WinEventLogLib Package |
| 154 | + subtitle: Windows Event Log integration |
| 155 | + landing_page: /tB/Packages/WinEventLogLib/ |
| 156 | + prefixes: |
| 157 | + - /tB/Packages/WinEventLogLib/ |
| 158 | + |
| 159 | + - title: WinNamedPipesLib Package |
| 160 | + subtitle: Asynchronous named-pipe framework over IOCP |
| 161 | + landing_page: /tB/Packages/WinNamedPipesLib/ |
| 162 | + prefixes: |
| 163 | + - /tB/Packages/WinNamedPipesLib/ |
| 164 | + |
| 165 | + - title: WinServicesLib Package |
| 166 | + subtitle: Windows Services hosting |
| 167 | + landing_page: /tB/Packages/WinServicesLib/ |
| 168 | + prefixes: |
| 169 | + - /tB/Packages/WinServicesLib/ |
| 170 | + |
| 171 | + - title: tbIDE Package |
| 172 | + subtitle: IDE Extensibility --- the addin SDK |
| 173 | + landing_page: /tB/Packages/tbIDE/ |
| 174 | + prefixes: |
| 175 | + - /tB/Packages/tbIDE/ |
| 176 | + |
| 177 | + - title: WinNativeCommonCtls Package |
| 178 | + subtitle: VB6-compatible Common Controls replacement on top of Win32 ComCtl32 |
| 179 | + landing_page: /tB/Packages/WinNativeCommonCtls/ |
| 180 | + prefixes: |
| 181 | + - /tB/Packages/WinNativeCommonCtls/ |
0 commit comments