-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmkdocs.yml
428 lines (421 loc) · 21.7 KB
/
mkdocs.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
site_name: Twine Cookbook
docs_dir: 'pages'
site_dir: 'docs'
use_directory_urls: false
nav:
- 'Home': 'index.md'
- Cookbook Introduction:
- 'Using the Cookbook': 'using_cookbook.md'
- 'Example Formatting': 'formatting.md'
- 'Style Guide': 'style_guide.md'
- Common Questions:
- 'What can I make with Twine?': 'questions/making.md'
- 'How do I get started?': 'questions/getting_started.md'
- 'How do I make links?': 'questions/links.md'
- 'How do I style text?': 'questions/style_text.md'
- 'Where are my stories saved?': 'questions/stories_saved.md'
- 'What do I need to know?': 'questions/need_to_know.md'
- Common Terms:
- 'Twine': 'terms/terms_twine.md'
- 'Cookbook': 'terms/terms_cookbook.md'
- 'Stories': 'terms/terms_stories.md'
- 'Passages': 'terms/terms_passages.md'
- 'Variables': 'terms/terms_variables.md'
- 'Markdown / Markup': 'terms/terms_markdown_and_markup.md'
- 'Macros': 'terms/terms_macros.md'
- 'Story Formats': 'terms/terms_storyformats.md'
- 'CSS': 'terms/terms_css.md'
- 'JavaScript': 'terms/terms_javascript.md'
- 'Twee': 'terms/terms_twee.md'
- 'HTML': 'terms/terms_html.md'
- Twine 2 Editor:
- 'Story Listing': 'introduction/twine2_story_listing.md'
- 'Passages View': 'introduction/twine2_passages_view.md'
- 'Passages': 'introduction/passages.md'
- 'Story Formats': 'introduction/story_formats.md'
- Getting Started:
- 'First Story': 'starting/twine2/firststory.md'
- 'Choosing Story Formats': 'starting/twine2/storyformat.md'
- 'Creating Links': 'starting/twine2/creatinglinks.md'
- 'Reviewing Stories': 'starting/twine2/review.md'
- 'Publishing on Borogove.io': 'starting/twine2/publishing_on_borogoveio.md'
- 'Publishing on Itch.io': 'starting/twine2/publishing_on_itchio.md'
- 'Adding to IFDB': 'starting/twine2/adding_to_IFDB.md'
- Working with HTML:
- 'Reviewing HTML': 'html/reviewing.md'
- Story Formats:
- 'Chapbook': 'html/storyformats/chapbook.md'
- 'Harlowe': 'html/storyformats/harlowe.md'
- 'SugarCube': 'html/storyformats/sugarcube.md'
- 'Snowman': 'html/storyformats/snowman.md'
- Working with CSS:
- 'Reviewing CSS Selectors': 'css/selectors.md'
- Story Formats:
- 'Chapbook': 'css/storyformats/chapbook.md'
- 'Harlowe': 'css/storyformats/harlowe.md'
- 'SugarCube': 'css/storyformats/sugarcube.md'
- 'Snowman': 'css/storyformats/snowman.md'
- Working with JavaScript:
- 'Reviewing JavaScript': 'js/reviewing.md'
- Story Formats:
- 'Chapbook': 'js/storyformats/chapbook.md'
- 'Harlowe': 'js/storyformats/harlowe.md'
- 'SugarCube': 'js/storyformats/sugarcube.md'
- 'Snowman': 'js/storyformats/snowman.md'
- Twine 2 Examples:
- Adding Functionality:
- 'Chapbook': 'addingfunctionality/chapbook/chapbook_adding_functionality.md'
- 'SugarCube': 'addingfunctionality/sugarcube/sugarcube_adding_functionality.md'
- 'Snowman': 'addingfunctionality/snowman/snowman_adding_functionality.md'
- Arrays:
- 'Chapbook': 'arrays/chapbook/chapbook_arrays.md'
- 'Harlowe': 'arrays/harlowe/harlowe_arrays.md'
- 'SugarCube': 'arrays/sugarcube/sugarcube_arrays.md'
- 'Snowman': 'arrays/snowman/snowman_arrays.md'
- Audio:
- 'Chapbook': 'audio/chapbook/chapbook_audio.md'
- 'Harlowe': 'audio/harlowe/harlowe_audio.md'
- 'SugarCube': 'audio/sugarcube/sugarcube_audio.md'
- 'Snowman': 'audio/snowman/snowman_audio.md'
- Conditional Statements:
- 'Chapbook': 'conditionalstatements/chapbook/chapbook_conditionalstatements.md'
- 'Harlowe': 'conditionalstatements/harlowe/harlowe_conditionalstatements.md'
- 'SugarCube': 'conditionalstatements/sugarcube/sugarcube_conditionalstatements.md'
- 'Snowman': 'conditionalstatements/snowman/snowman_conditionalstatements.md'
- CSS Selectors:
- 'Chapbook': 'cssselectors/chapbook/chapbook_cssselectors.md'
- 'Harlowe': 'cssselectors/harlowe/harlowe_cssselectors.md'
- 'SugarCube': 'cssselectors/sugarcube/sugarcube_cssselectors.md'
- 'Snowman': 'cssselectors/snowman/snowman_cssselectors.md'
- 'Snowman (v2.0 and later)': 'cssselectors/snowman_2/snowman_cssselectors.md'
- CSS and Passage Tags:
- 'Chapbook': 'passagetags/chapbook/chapbook_passagetags.md'
- 'Harlowe': 'passagetags/harlowe/harlowe_passagetags.md'
- 'SugarCube': 'passagetags/sugarcube/sugarcube_passagetags.md'
- 'Snowman': 'passagetags/snowman/snowman_passagetags.md'
- 'Sugarcane (1.4.2)': 'passagetags/sugarcane/sugarcane_passagetags.md'
- Cycling Choices:
- 'Chapbook': 'cycling/chapbook/chapbook_cycling.md'
- 'Harlowe': 'cycling/harlowe/harlowe_cycling.md'
- 'Harlowe (v3.0.1 or later)': 'cycling/harlowe_3/harlowe_cycling.md'
- 'SugarCube': 'cycling/sugarcube/sugarcube_cycling.md'
- 'Snowman': 'cycling/snowman/snowman_cycling.md'
- Date and Time:
- 'Chapbook': 'dateandtime/chapbook/chapbook_dateandtime.md'
- 'Harlowe': 'dateandtime/harlowe/harlowe_dateandtime.md'
- 'SugarCube': 'dateandtime/sugarcube/sugarcube_dateandtime.md'
- 'Snowman': 'dateandtime/snowman/snowman_dateandtime.md'
- Delayed Text:
- 'Chapbook': 'delayedtext/chapbook/chapbook_delayedtext.md'
- 'Harlowe': 'delayedtext/harlowe/harlowe_delayedtext.md'
- 'SugarCube': 'delayedtext/sugarcube/sugarcube_delayedtext.md'
- 'Snowman': 'delayedtext/snowman/snowman_delayedtext.md'
- Deleting Variables:
- 'Chapbook': 'deletingvariables/chapbook/chapbook_deletingvariables.md'
- 'SugarCube': 'deletingvariables/sugarcube/sugarcube_deletingvariables.md'
- 'Snowman': 'deletingvariables/snowman/snowman_deletingvariables.md'
- Dice Rolling:
- 'Chapbook': 'dicerolling/chapbook/chapbook_dicerolling.md'
- 'Harlowe': 'dicerolling/harlowe/harlowe_dicerolling.md'
- 'SugarCube': 'dicerolling/sugarcube/sugarcube_dicerolling.md'
- 'Snowman': 'dicerolling/snowman/snowman_dicerolling.md'
- Dropdown:
- 'Chapbook': 'dropdown/chapbook/chapbook_dropdown.md'
- 'Harlowe (v3.0.1 or later)': 'dropdown/harlowe/harlowe_dropdown.md'
- Fairmath System:
- 'Chapbook': 'fairmath/chapbook/chapbook_fairmath.md'
- 'Harlowe': 'fairmath/harlowe/harlowe_fairmath.md'
- 'SugarCube': 'fairmath/sugarcube/sugarcube_fairmath.md'
- 'Snowman': 'fairmath/snowman/snowman_fairmath.md'
- Geolocation:
- 'Chapbook': 'geolocation/chapbook/chapbook_geolocation.md'
- 'Harlowe': 'geolocation/harlowe/harlowe_geolocation.md'
- 'SugarCube': 'geolocation/sugarcube/sugarcube_geolocation.md'
- 'Snowman': 'geolocation/snowman/snowman_geolocation.md'
- Google Fonts:
- 'Chapbook': 'googlefonts/chapbook/chapbook_googlefonts.md'
- 'Harlowe': 'googlefonts/harlowe/harlowe_googlefonts.md'
- 'SugarCube': 'googlefonts/sugarcube/sugarcube_googlefonts.md'
- 'Snowman': 'googlefonts/snowman/snowman_googlefonts.md'
- 'Sugarcane (1.4.2)': 'googlefonts/sugarcane/sugarcane_googlefonts.md'
- Headers and Footers:
- 'Chapbook': 'headersandfooters/chapbook/chapbook_headersandfooters.md'
- 'Harlowe': 'headersandfooters/harlowe/harlowe_headersandfooters.md'
- 'SugarCube': 'headersandfooters/sugarcube/sugarcube_headersandfooters.md'
- 'Snowman': 'headersandfooters/snowman/snowman_headersandfooters.md'
- Hidden Link:
- 'Harlowe': 'hiddenlink/harlowe/harlowe_hiddenlink.md'
- 'SugarCube': 'hiddenlink/sugarcube/sugarcube_hiddenlink.md'
- 'Snowman': 'hiddenlink/snowman/snowman_hiddenlink.md'
- Images:
- 'Chapbook': 'images/chapbook/chapbook_images.md'
- 'Harlowe': 'images/harlowe/harlowe_images.md'
- 'SugarCube': 'images/sugarcube/sugarcube_images.md'
- 'Snowman': 'images/snowman/snowman_images.md'
- External JavaScript:
- 'Chapbook': 'importexternaljs/chapbook/chapbook_importexternaljs.md'
- 'Harlowe': 'importexternaljs/harlowe/harlowe_importexternaljs.md'
- 'SugarCube': 'importexternaljs/sugarcube/sugarcube_importexternaljs.md'
- 'Snowman': 'importexternaljs/snowman/snowman_importexternaljs.md'
- Keyboard Events:
- 'Chapbook': 'keyboard/chapbook/chapbook_keyboard.md'
- 'Harlowe': 'keyboard/harlowe/harlowe_keyboard.md'
- 'SugarCube': 'keyboard/sugarcube/sugarcube_keyboard.md'
- 'Snowman': 'keyboard/snowman/snowman_keyboard.md'
- Left Sidebar:
- 'Harlowe (both v1.x and v2.x series)': 'sidebar_left/harlowe/harlowe_sidebar_left.md'
- 'Harlowe (v2.1.0 or later)': 'sidebar_left/harlowe_2/harlowe_sidebar_left.md'
- 'SugarCube': 'sidebar_left/sugarcube/sugarcube_sidebar_left.md'
- 'Snowman': 'sidebar_left/snowman/snowman_sidebar_left.md'
- Limiting Number Range:
- 'Chapbook': 'clamping_numbers/chapbook/chapbook_clamping_numbers.md'
- 'Harlowe': 'clamping_numbers/harlowe/harlowe_clamping_numbers.md'
- 'SugarCube': 'clamping_numbers/sugarcube/sugarcube_clamping_numbers.md'
- 'Snowman': 'clamping_numbers/snowman/snowman_clamping_numbers.md'
- Loading Screen:
- 'SugarCube': 'loadscreen/sugarcube/sugarcube_loadscreen.md'
- Lock and Key (Variable):
- 'Chapbook': 'lockandkey_variable/chapbook/chapbook_lockandkey_variable.md'
- 'Harlowe': 'lockandkey_variable/harlowe/harlowe_lockandkey_variable.md'
- 'SugarCube': 'lockandkey_variable/sugarcube/sugarcube_lockandkey_variable.md'
- 'Snowman': 'lockandkey_variable/snowman/snowman_lockandkey_variable.md'
- Looping:
- 'Chapbook': 'looping/chapbook/chapbook_looping.md'
- 'Harlowe': 'looping/harlowe/harlowe_looping.md'
- 'SugarCube': 'looping/sugarcube/sugarcube_looping.md'
- 'Snowman': 'looping/snowman/snowman_looping.md'
- Modal (Pop-up Window):
- 'Harlowe': 'modal/harlowe/harlowe_modal.md'
- 'SugarCube': 'modal/sugarcube/sugarcube_modal.md'
- 'Snowman': 'modal/snowman/snowman_modal.md'
- Modularity:
- 'Harlowe': 'modularity/harlowe/harlowe_modularity.md'
- 'SugarCube': 'modularity/sugarcube/sugarcube_modularity.md'
- 'Snowman': 'modularity/snowman/snowman_modularity.md'
- Moving through a 'dungeon':
- 'Harlowe': 'dungeonmoving/harlowe/harlowe_dungeonmoving.md'
- 'SugarCube': 'dungeonmoving/sugarcube/sugarcube_dungeonmoving.md'
- 'Snowman': 'dungeonmoving/snowman/snowman_dungeonmoving.md'
- 'Sugarcane (1.4.2)': 'dungeonmoving/sugarcane/sugarcane_dungeonmoving.md'
- Passage Events:
- 'SugarCube': 'passageevents/sugarcube/sugarcube_passage_events.md'
- 'Snowman': 'passageevents/snowman/snowman_passage_events.md'
- 'Snowman (v2.0.2 or later)': 'passageevents/snowman_2/snowman_passage_events.md'
- Passages in Passages:
- 'Chapbook': 'passagesinpassages/chapbook/chapbook_passagesinpassages.md'
- 'Harlowe': 'passagesinpassages/harlowe/harlowe_passagesinpassages.md'
- 'SugarCube': 'passagesinpassages/sugarcube/sugarcube_passagesinpassages.md'
- 'Snowman': 'passagesinpassages/snowman/snowman_passagesinpassages.md'
- Passage Transitions:
- 'Harlowe (v3.0.1 or later)': 'passagetransitions/harlowe/harlowe_passagetransitions.md'
- 'SugarCube': 'passagetransitions/sugarcube/sugarcube_passagetransitions.md'
- 'Snowman': 'passagetransitions/snowman/snowman_passagetransitions.md'
- 'Snowman (v2.0 and later)': 'passagetransitions/snowman_2/snowman_2_passagetransitions.md'
- Passage Visits:
- 'Chapbook': 'passagevisits/chapbook/chapbook_passagevisits.md'
- 'Harlowe': 'passagevisits/harlowe/harlowe_passagevisits.md'
- 'Harlowe (3.1 or later)': 'passagevisits/harlowe_3.1/harlowe_passagevisits.md'
- 'SugarCube': 'passagevisits/sugarcube/sugarcube_passagevisits.md'
- 'Snowman (v2.0.2 and later)': 'passagevisits/snowman/snowman_passagevisits.md'
- Player Statistics:
- 'Chapbook': 'playerstatistics/chapbook/chapbook_player_statistics.md'
- 'Harlowe': 'playerstatistics/harlowe/harlowe_player_statistics.md'
- 'SugarCube': 'playerstatistics/sugarcube/sugarcube_player_statistics.md'
- 'Snowman': 'playerstatistics/snowman/snowman_player_statistics.md'
- Programmatic Undo:
- 'Harlowe': 'programmaticundo/harlowe/harlowe_programmaticundo.md'
- 'SugarCube': 'programmaticundo/sugarcube/sugarcube_programmaticundo.md'
- 'Snowman': 'programmaticundo/snowman/snowman_programmaticundo.md'
- Render Passage to Element:
- 'SugarCube': 'passagetoelement/sugarcube/sugarcube_passagetoelement.md'
- 'Snowman (2.0 or later)': 'passagetoelement/snowman/snowman_passagetoelement.md'
- Saving Games:
- 'Harlowe': 'savinggames/harlowe/harlowe_savinggames.md'
- 'SugarCube': 'savinggames/sugarcube/sugarcube_savinggames.md'
- 'Snowman': 'savinggames/snowman/snowman_savinggames.md'
- Setting and Showing Variables:
- 'Chapbook': 'settingandshowing/chapbook/chapbook_settingandshowing.md'
- 'Harlowe': 'settingandshowing/harlowe/harlowe_settingandshowing.md'
- 'SugarCube': 'settingandshowing/sugarcube/sugarcube_settingandshowing.md'
- 'Snowman': 'settingandshowing/snowman/snowman_settingandshowing.md'
- Space Exploration:
- 'Chapbook': 'spaceexploration/chapbook/chapbook_space_exploration.md'
- 'Harlowe': 'spaceexploration/harlowe/harlowe_space_exploration.md'
- 'SugarCube': 'spaceexploration/sugarcube/sugarcube_space_exploration.md'
- 'Snowman': 'spaceexploration/snowman/snowman_space_exploration.md'
- Static Healthbars:
- 'Chapbook': 'statichealthbars/chapbook/chapbook_statichealthbars.md'
- 'Harlowe': 'statichealthbars/harlowe/harlowe_statichealthbars.md'
- 'SugarCube': 'statichealthbars/sugarcube/sugarcube_statichealthbars.md'
- 'Snowman': 'statichealthbars/snowman/snowman_statichealthbars.md'
- Story and Passage API:
- 'Chapbook': 'storyandpassage/chapbook/chapbook_storyandpassage.md'
- 'SugarCube': 'storyandpassage/sugarcube/sugarcube_storyandpassage.md'
- 'Snowman': 'storyandpassage/snowman/snowman_storyandpassage.md'
- Storylets:
- 'Harlowe (3.2 or later)': 'storylets/harlowe/harlowe_storylets.md'
- Style Markup:
- 'Chapbook': 'markup/chapbook/chapbook_markup.md'
- 'Harlowe': 'markup/harlowe/harlowe_markup.md'
- 'SugarCube': 'markup/sugarcube/sugarcube_markup.md'
- 'Snowman': 'markup/snowman/snowman_markup.md'
- 'Sugarcane (1.4.2)': 'markup/sugarcane/sugarcane_markup.md'
- Templates:
- 'SugarCube': 'template_type/sugarcube/sugarcube_templates.md'
- Timed Passages:
- 'Chapbook': 'timedpassages/chapbook/chapbook_timedpassages.md'
- 'Harlowe': 'timedpassages/harlowe/harlowe_timedpassages.md'
- 'SugarCube': 'timedpassages/sugarcube/sugarcube_timedpassages.md'
- 'Snowman': 'timedpassages/snowman/snowman_timedpassages.md'
- Timed Progress Bars:
- 'SugarCube': 'timedprogressbars/sugarcube/sugarcube_timed_progress_bars.md'
- 'Snowman': 'timedprogressbars/snowman/snowman_timed_progress_bars.md'
- Turn Counter:
- 'Chapbook': 'turncounter/chapbook/chapbook_turncounter.md'
- 'Harlowe': 'turncounter/harlowe/harlowe_turncounter.md'
- 'SugarCube': 'turncounter/sugarcube/sugarcube_turncounter.md'
- 'Snowman': 'turncounter/snowman/snowman_turncounter.md'
- Typewriter Effect:
- 'Chapbook': 'typewriter/chapbook/chapbook_typewriter.md'
- 'Harlowe': 'typewriter/harlowe/harlowe_typewriter.md'
- 'SugarCube': 'typewriter/sugarcube/sugarcube_typewriter.md'
- 'Snowman': 'typewriter/snowman/snowman_typewriter.md'
- Variable Style Styling:
- 'Chapbook': 'storystyling/chapbook/chapbook_storystyling.md'
- 'Harlowe': 'storystyling/harlowe/harlowe_storystyling.md'
- 'SugarCube': 'storystyling/sugarcube/sugarcube_storystyling.md'
- 'Snowman': 'storystyling/snowman/snowman_storystyling.md'
- Using Add-ons:
- 'SugarCube': 'usingaddons/sugarcube/sugarcube_usingaddons.md'
- Twine 1:
- Common Terms:
- 'Passages': 'twine1/terms/passages.md'
- 'Links': 'twine1/terms/links.md'
- 'Formatting': 'twine1/terms/formatting.md'
- 'Tags': 'twine1/terms/tags.md'
- 'Story Formats': 'twine1/terms/storyformats.md'
- 'Special Passages': 'twine1/terms/specialpassages.md'
- 'Scripts': 'twine1/terms/scripts.md'
- Getting Started:
- 'Installing': 'twine1/editor/installing.md'
- 'Story Files': 'twine1/editor/story_files.md'
- 'Story Map': 'twine1/editor/story_map.md'
- 'Editing Passages': 'twine1/editor/editing_passages.md'
- 'Working with Images': 'twine1/editor/images.md'
- 'Proofing Work': 'twine1/editor/proofing.md'
- 'Finding and Replacing Text': 'twine1/editor/replacing_text.md'
- 'Why use code?': 'twine1/editor/code.md'
- 'Expressions': 'twine1/editor/expressions.md'
- 'Functions': 'twine1/editor/functions.md'
- 'Writing Macros': 'twine1/editor/writing_macros.md'
- 'CSS': 'twine1/editor/css.md'
- 'Twine and Twee': 'twine1/editor/choosing_between_twine_and_twee.md'
- 'Browser Support': 'twine1/editor/browser_support.md'
- 'General Questions': 'twine1/editor/general_questions.md'
- Twine 1 Macros:
- 'back': 'twine1/macros/back.md'
- 'button': 'twine1/macros/button.md'
- 'checkbox': 'twine1/macros/checkbox.md'
- 'choice': 'twine1/macros/choice.md'
- 'display': 'twine1/macros/display.md'
- 'else': 'twine1/macros/else.md'
- 'endif': 'twine1/macros/endif.md'
- 'endsilently': 'twine1/macros/endsilently.md'
- 'forget': 'twine1/macros/forget.md'
- 'if': 'twine1/macros/if.md'
- 'nobr': 'twine1/macros/nobr.md'
- 'print': 'twine1/macros/print.md'
- 'radio': 'twine1/macros/radio.md'
- 'remember': 'twine1/macros/remember.md'
- 'return': 'twine1/macros/return.md'
- 'set': 'twine1/macros/set.md'
- 'silently': 'twine1/macros/silently.md'
- 'textinput': 'twine1/macros/textinput.md'
- Twine 1 Functions:
- 'alert': 'twine1/functions/alert.md'
- 'confirm': 'twine1/functions/confirm.md'
- 'either': 'twine1/functions/either.md'
- 'open': 'twine1/functions/open.md'
- 'parameter': 'twine1/functions/parameter.md'
- 'passage': 'twine1/functions/passage.md'
- 'previous': 'twine1/functions/previous.md'
- 'prompt': 'twine1/functions/prompt.md'
- 'random': 'twine1/functions/random.md'
- 'rot13': 'twine1/functions/rot13.md'
- 'tags': 'twine1/functions/tags.md'
- 'turns': 'twine1/functions/turns.md'
- 'visited': 'twine1/functions/visited.md'
- 'visitedtag': 'twine1/functions/visitedtag.md'
- Twine 1 Story Formats:
- Jonah:
- 'Jonah': 'twine1/storyformats/jonah/index.md'
- 'Common Questions': 'twine1/storyformats/jonah/questions.md'
- Sugarcane:
- 'Sugarcane': 'twine1/storyformats/sugarcane/index.md'
- 'Common Questions': 'twine1/storyformats/sugarcane/questions.md'
- Release Notes Archive:
- Twine 2:
- '2.6.2': 'releasenotes/twine2/2.6.2.md'
- '2.6.1': 'releasenotes/twine2/2.6.1.md'
- '2.6.0': 'releasenotes/twine2/2.6.0.md'
- '2.5.1': 'releasenotes/twine2/2.5.1.md'
- '2.5.0': 'releasenotes/twine2/2.5.0.md'
- '2.4.1': 'releasenotes/twine2/2.4.1.md'
- '2.4.0': 'releasenotes/twine2/2.4.0.md'
- '2.3.16': 'releasenotes/twine2/2.3.16.md'
- '2.3.15': 'releasenotes/twine2/2.3.15.md'
- '2.3.14': 'releasenotes/twine2/2.3.14.md'
- '2.3.13': 'releasenotes/twine2/2.3.13.md'
- '2.3.12': 'releasenotes/twine2/2.3.12.md'
- '2.3.11': 'releasenotes/twine2/2.3.11.md'
- '2.3.10': 'releasenotes/twine2/2.3.10.md'
- '2.3.9': 'releasenotes/twine2/2.3.9.md'
- '2.3.8': 'releasenotes/twine2/2.3.8.md'
- '2.3.7': 'releasenotes/twine2/2.3.7.md'
- '2.3.6': 'releasenotes/twine2/2.3.6.md'
- '2.3.5': 'releasenotes/twine2/2.3.5.md'
- '2.3.4': 'releasenotes/twine2/2.3.4.md'
- '2.3.3': 'releasenotes/twine2/2.3.3.md'
- '2.3.2': 'releasenotes/twine2/2.3.2.md'
- '2.3.1': 'releasenotes/twine2/2.3.1.md'
- '2.3.0': 'releasenotes/twine2/2.3.0.md'
- '2.2.1': 'releasenotes/twine2/2.2.1.md'
- '2.2.0': 'releasenotes/twine2/2.2.0.md'
- '2.1.3': 'releasenotes/twine2/2.1.3.md'
- '2.1.2': 'releasenotes/twine2/2.1.2.md'
- '2.1.1': 'releasenotes/twine2/2.1.1.md'
- '2.1.0': 'releasenotes/twine2/2.1.0.md'
- '2.0.11': 'releasenotes/twine2/2.0.11.md'
- '2.0.10': 'releasenotes/twine2/2.0.10.md'
- '2.0.9': 'releasenotes/twine2/2.0.9.md'
- '2.0.8': 'releasenotes/twine2/2.0.8.md'
- '2.0.7': 'releasenotes/twine2/2.0.7.md'
- '2.0.6': 'releasenotes/twine2/2.0.6.md'
- '2.0.5': 'releasenotes/twine2/2.0.5.md'
- '2.0.4': 'releasenotes/twine2/2.0.4.md'
- '2.0.3': 'releasenotes/twine2/2.0.3.md'
- '2.0.2': 'releasenotes/twine2/2.0.2.md'
- '2.0.1': 'releasenotes/twine2/2.0.1.md'
- Twine 1:
- '1.4.3': 'releasenotes/twine1/1.4.3.md'
- '1.4.2': 'releasenotes/twine1/1.4.2.md'
- '1.4.1': 'releasenotes/twine1/1.4.1.md'
- '1.4': 'releasenotes/twine1/1.4.md'
theme:
name: material
features:
- instant
palette:
primary: blue
accent: lightblue
logo: stylesheets/logo.svg
favicon: stylesheets/logo.svg
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- toc:
permalink: "#"
extra_css:
- stylesheets/overrides.css