tiddlywiki 5.3.3 → 5.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (893) hide show
  1. package/bin/build-site.sh +33 -0
  2. package/boot/boot.js +61 -26
  3. package/boot/tiddlywiki.files +32 -0
  4. package/contributing.md +1 -1
  5. package/core/copyright.tid +1 -1
  6. package/core/images/standard-layout.tid +7 -0
  7. package/core/language/en-GB/Buttons.multids +3 -0
  8. package/core/language/en-GB/ControlPanel.multids +6 -0
  9. package/core/language/en-GB/Docs/ModuleTypes.multids +1 -1
  10. package/core/language/en-GB/Docs/PaletteColours.multids +7 -0
  11. package/core/language/en-GB/Fields.multids +2 -0
  12. package/core/language/en-GB/Misc.multids +2 -2
  13. package/core/modules/commands/listen.js +1 -1
  14. package/core/modules/commands/makelibrary.js +1 -26
  15. package/core/modules/commands/save.js +3 -1
  16. package/core/modules/commands/savewikifolder.js +4 -1
  17. package/core/modules/filters/backtranscludes.js +26 -0
  18. package/core/modules/filters/crypto.js +2 -5
  19. package/core/modules/filters/strings.js +6 -3
  20. package/core/modules/filters/transcludes.js +26 -0
  21. package/core/modules/filters/x-listops.js +1 -1
  22. package/core/modules/indexers/back-indexer.js +122 -0
  23. package/core/modules/macros/csvtiddlers.js +9 -5
  24. package/core/modules/parsers/parseutils.js +1 -1
  25. package/core/modules/parsers/wikiparser/rules/codeblock.js +6 -3
  26. package/core/modules/parsers/wikiparser/rules/codeinline.js +5 -2
  27. package/core/modules/parsers/wikiparser/rules/extlink.js +2 -1
  28. package/core/modules/parsers/wikiparser/rules/filteredtranscludeblock.js +15 -5
  29. package/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js +15 -5
  30. package/core/modules/parsers/wikiparser/rules/fnprocdef.js +3 -3
  31. package/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +2 -1
  32. package/core/modules/parsers/wikiparser/rules/heading.js +4 -2
  33. package/core/modules/parsers/wikiparser/rules/html.js +25 -0
  34. package/core/modules/parsers/wikiparser/rules/image.js +2 -2
  35. package/core/modules/parsers/wikiparser/rules/import.js +2 -1
  36. package/core/modules/parsers/wikiparser/rules/list.js +29 -4
  37. package/core/modules/parsers/wikiparser/rules/macrodef.js +3 -3
  38. package/core/modules/parsers/wikiparser/rules/prettyextlink.js +7 -2
  39. package/core/modules/parsers/wikiparser/rules/prettylink.js +12 -5
  40. package/core/modules/parsers/wikiparser/rules/quoteblock.js +16 -30
  41. package/core/modules/parsers/wikiparser/rules/syslink.js +6 -3
  42. package/core/modules/parsers/wikiparser/rules/table.js +2 -1
  43. package/core/modules/parsers/wikiparser/rules/typedblock.js +4 -1
  44. package/core/modules/parsers/wikiparser/rules/wikilink.js +4 -1
  45. package/core/modules/parsers/wikiparser/wikiparser.js +39 -5
  46. package/core/modules/saver-handler.js +7 -3
  47. package/core/modules/server/authenticators/header.js +3 -1
  48. package/core/modules/server/server.js +5 -0
  49. package/core/modules/startup/render.js +8 -2
  50. package/core/modules/startup/rootwidget.js +10 -2
  51. package/core/modules/startup/story.js +14 -4
  52. package/core/modules/startup/windows.js +1 -1
  53. package/core/modules/utils/dom/dom.js +3 -1
  54. package/core/modules/utils/dom/http.js +19 -7
  55. package/core/modules/utils/errors.js +23 -0
  56. package/core/modules/utils/fakedom.js +2 -2
  57. package/core/modules/utils/filesystem.js +13 -10
  58. package/core/modules/utils/repository.js +52 -0
  59. package/core/modules/utils/utils.js +11 -2
  60. package/core/modules/widgets/action-deletefield.js +7 -2
  61. package/core/modules/widgets/action-log.js +6 -1
  62. package/core/modules/widgets/button.js +1 -1
  63. package/core/modules/widgets/data.js +182 -0
  64. package/core/modules/widgets/draggable.js +2 -2
  65. package/core/modules/widgets/edit.js +1 -1
  66. package/core/modules/widgets/importvariables.js +1 -1
  67. package/core/modules/widgets/link.js +1 -1
  68. package/core/modules/widgets/parameters.js +12 -0
  69. package/core/modules/widgets/testcase.js +165 -0
  70. package/core/modules/widgets/transclude.js +24 -1
  71. package/core/modules/widgets/widget.js +23 -10
  72. package/core/modules/wiki.js +78 -2
  73. package/core/palettes/Vanilla.tid +7 -0
  74. package/core/plugin.info +2 -1
  75. package/core/templates/external-js/save-all-external-js.tid +1 -1
  76. package/core/templates/external-js/save-offline-external-js.tid +1 -1
  77. package/core/templates/save-all.tid +1 -1
  78. package/core/templates/save-empty.tid +1 -1
  79. package/core/templates/save-lazy-all.tid +1 -1
  80. package/core/templates/save-lazy-images.tid +1 -1
  81. package/core/ui/AdvancedSearch/Filter.tid +1 -4
  82. package/core/ui/AdvancedSearch/Standard.tid +5 -4
  83. package/core/ui/Components/plugin-info.tid +11 -1
  84. package/core/ui/ControlPanel/Modals/AddPlugins.tid +13 -2
  85. package/core/ui/ControlPanel/Saving/DownloadSaver.tid +11 -2
  86. package/core/ui/ControlPanel/Saving/General.tid +11 -3
  87. package/core/ui/ControlPanel/Settings/CamelCase.tid +10 -1
  88. package/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab.tid +11 -6
  89. package/core/ui/ControlPanel/Settings/DefaultSidebarTab.tid +11 -5
  90. package/core/ui/ControlPanel/Settings/EditorToolbar.tid +9 -2
  91. package/core/ui/ControlPanel/Settings/InfoPanelMode.tid +11 -3
  92. package/core/ui/ControlPanel/Settings/LinkToBehaviour.tid +15 -11
  93. package/core/ui/ControlPanel/Settings/MissingLinks.tid +6 -2
  94. package/core/ui/ControlPanel/Settings/NavigationAddressBar.tid +13 -4
  95. package/core/ui/ControlPanel/Settings/NavigationHistory.tid +11 -3
  96. package/core/ui/ControlPanel/Settings/NavigationPermalinkviewMode.tid +17 -2
  97. package/core/ui/ControlPanel/Settings/PerformanceInstrumentation.tid +9 -1
  98. package/core/ui/ControlPanel/Settings/TitleLinks.tid +11 -3
  99. package/core/ui/ControlPanel/Settings/ToolbarButtonStyle.tid +9 -6
  100. package/core/ui/ControlPanel/Settings/ToolbarButtons.tid +17 -2
  101. package/core/ui/ControlPanel/TestCases.tid +10 -0
  102. package/core/ui/ControlPanel/TestCasesAll.tid +24 -0
  103. package/core/ui/ControlPanel/TestCasesFailed.tid +15 -0
  104. package/core/ui/ControlPanel/TiddlyWiki.tid +2 -2
  105. package/core/ui/EditTemplate/body/default.tid +7 -2
  106. package/core/ui/EditTemplate/controls.tid +12 -6
  107. package/core/ui/EditTemplate/tags.tid +52 -28
  108. package/core/ui/EditorToolbar/preview.tid +2 -2
  109. package/core/ui/KeyboardShortcuts/refresh.tid +5 -0
  110. package/core/ui/PageControls/more-page-actions.tid +37 -44
  111. package/core/ui/PageControls.tid +10 -13
  112. package/core/ui/{PageTemplate.tid → StandardLayout.tid} +1 -1
  113. package/core/ui/TestCaseTemplate.tid +19 -0
  114. package/core/ui/TestCases/DefaultTemplate.tid +91 -0
  115. package/core/ui/TestCases/DefaultTemplateSourceTabs.tid +27 -0
  116. package/core/ui/TestCases/RawJSONTemplate.tid +4 -0
  117. package/core/ui/TestCases/actions/Export.tid +4 -0
  118. package/core/ui/TestCases/actions/Import.tid +11 -0
  119. package/core/ui/ViewTemplate/title.tid +33 -26
  120. package/core/ui/ViewToolbar/more-tiddler-actions.tid +35 -43
  121. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  122. package/core/wiki/config/ShortcutInfo.multids +1 -0
  123. package/core/wiki/config/ViewTemplateBodyFilters.multids +1 -0
  124. package/core/wiki/config/shortcuts/shortcuts-mac.multids +1 -0
  125. package/core/wiki/config/shortcuts/shortcuts-not-mac.multids +1 -0
  126. package/core/wiki/macros/CSS.tid +44 -51
  127. package/core/wiki/macros/copy-to-clipboard.tid +17 -11
  128. package/core/wiki/macros/diff.tid +28 -28
  129. package/core/wiki/macros/tag-picker.tid +165 -160
  130. package/core/wiki/macros/tag.tid +3 -1
  131. package/core/wiki/macros/testcase.tid +10 -0
  132. package/core/wiki/tags/TestCaseActions.tid +2 -0
  133. package/core/wiki/tags/ViewTemplateBodyFilter.tid +1 -1
  134. package/editions/dev/tiddlers/HelloThere.tid +1 -0
  135. package/editions/dev/tiddlers/javascript-widget-tutorial/Javascript Widget Tutorial.tid +22 -16
  136. package/editions/dev/tiddlers/new/Using ES2016 for Writing Plugins.tid +18 -8
  137. package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +5 -0
  138. package/editions/dev/tiddlers/system/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +6 -0
  139. package/editions/full/tiddlywiki.info +1 -0
  140. package/editions/geospatialdemo/tiddlers/DefaultTiddlers.tid +4 -0
  141. package/editions/geospatialdemo/tiddlers/Features.tid +14 -0
  142. package/editions/geospatialdemo/tiddlers/Flickr Demo.tid +27 -0
  143. package/editions/geospatialdemo/tiddlers/Geospatial Plugin Logo.png +0 -0
  144. package/editions/geospatialdemo/tiddlers/Geospatial Plugin Logo.png.meta +2 -0
  145. package/editions/geospatialdemo/tiddlers/HelloThere.tid +37 -0
  146. package/editions/geospatialdemo/tiddlers/Markers.tid +53 -0
  147. package/editions/geospatialdemo/tiddlers/SiteSubtitle.tid +3 -0
  148. package/editions/geospatialdemo/tiddlers/SiteTitle.tid +3 -0
  149. package/editions/geospatialdemo/tiddlers/cascades/ViewTemplateBodyFilters.tid +6 -0
  150. package/editions/geospatialdemo/tiddlers/cities/LimehouseTownHall.tid +9 -0
  151. package/editions/geospatialdemo/tiddlers/cities/Motovun.tid +9 -0
  152. package/editions/geospatialdemo/tiddlers/cities/NewYork.tid +8 -0
  153. package/editions/geospatialdemo/tiddlers/cities/Oxford.tid +8 -0
  154. package/editions/geospatialdemo/tiddlers/cities/Toronto.tid +8 -0
  155. package/editions/geospatialdemo/tiddlers/cities/Winchester.tid +8 -0
  156. package/editions/geospatialdemo/tiddlers/config/flickr-param.multids +5 -0
  157. package/editions/geospatialdemo/tiddlers/default-import-spec.tid +4 -0
  158. package/editions/geospatialdemo/tiddlers/favicon.png +0 -0
  159. package/editions/geospatialdemo/tiddlers/favicon.png.meta +2 -0
  160. package/editions/geospatialdemo/tiddlers/features/canada-census-subdivision-millesime.geojson +1 -0
  161. package/editions/geospatialdemo/tiddlers/features/canada-census-subdivision-millesime.geojson.meta +5 -0
  162. package/editions/geospatialdemo/tiddlers/features/denver-bikerental.tid +109 -0
  163. package/editions/geospatialdemo/tiddlers/features/denver-campus.tid +63 -0
  164. package/editions/geospatialdemo/tiddlers/features/denver-freebus.tid +56 -0
  165. package/editions/geospatialdemo/tiddlers/features/denver-lightrail.tid +30 -0
  166. package/editions/geospatialdemo/tiddlers/features/harvard-glb-volc-geojson.json +1 -0
  167. package/editions/geospatialdemo/tiddlers/features/harvard-glb-volc-geojson.json.meta +5 -0
  168. package/editions/geospatialdemo/tiddlers/features/us-states.geojson +54 -0
  169. package/editions/geospatialdemo/tiddlers/features/us-states.geojson.meta +5 -0
  170. package/editions/geospatialdemo/tiddlers/real-estate-demo/real-estate-demo.tid +99 -0
  171. package/editions/geospatialdemo/tiddlers/real-estate-demo/schema.json +22 -0
  172. package/editions/geospatialdemo/tiddlers/real-estate-demo/schema.json.meta +3 -0
  173. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRow.tid +5 -0
  174. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldAddress.tid +7 -0
  175. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldBroker.tid +7 -0
  176. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldCity.tid +7 -0
  177. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldLat.tid +8 -0
  178. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldLong.tid +8 -0
  179. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldPrice.tid +8 -0
  180. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldSalesAgent.tid +7 -0
  181. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldState.tid +7 -0
  182. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldTags.tid +7 -0
  183. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldTitle.tid +8 -0
  184. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesRowFieldZipCode.tid +7 -0
  185. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/PropertiesSheet.tid +7 -0
  186. package/editions/geospatialdemo/tiddlers/real-estate-demo/xlsx-utils-import-specs/workbook.tid +7 -0
  187. package/editions/geospatialdemo/tiddlers/sidebarlayout.tid +2 -0
  188. package/editions/geospatialdemo/tiddlers/ui/geofeature.tid +39 -0
  189. package/editions/geospatialdemo/tiddlers/ui/geomarker.tid +128 -0
  190. package/editions/geospatialdemo/tiddlywiki.info +23 -0
  191. package/editions/introduction/tiddlers/slides/CecilyMap.tid +12 -12
  192. package/editions/introduction/tiddlers/slides/blank.json +1 -1
  193. package/editions/prerelease/tiddlers/{Release 5.3.4.tid → Release 5.3.5.tid } +11 -8
  194. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  195. package/editions/prerelease/tiddlers/system/configPerformanceInstrumentation.tid +2 -0
  196. package/editions/prerelease/tiddlywiki.info +4 -1
  197. package/editions/test/tiddlers/HelloThere.tid +4 -0
  198. package/editions/test/tiddlers/tests/data/data-widget/ImportCompound.tid +27 -0
  199. package/editions/test/tiddlers/tests/data/data-widget/ImportFilter.tid +28 -0
  200. package/editions/test/tiddlers/tests/data/data-widget/ImportTiddler.tid +23 -0
  201. package/editions/test/tiddlers/tests/data/data-widget/Simple.tid +18 -0
  202. package/editions/test/tiddlers/tests/data/functions/FunctionFilterrunVariables.tid +24 -0
  203. package/editions/test/tiddlers/tests/data/functions/FunctionFilterrunVariables2.tid +20 -0
  204. package/editions/test/tiddlers/tests/data/functions/FunctionFilterrunVariables3.tid +21 -0
  205. package/editions/test/tiddlers/tests/data/importvariables/WithSetWidgets2.tid +1 -0
  206. package/editions/test/tiddlers/tests/data/importvariables/WithSetWidgetsAndMacros.tid +1 -0
  207. package/editions/test/tiddlers/tests/data/macros/EndInBody.tid +16 -0
  208. package/editions/test/tiddlers/tests/data/macros/IndentedEnd.tid +16 -0
  209. package/editions/test/tiddlers/tests/data/macros/MismatchedNamedEnd.tid +16 -0
  210. package/editions/test/tiddlers/tests/data/macros/WhitespaceOnlyWithEnd.tid +18 -0
  211. package/editions/test/tiddlers/tests/data/macros/WhitespaceOnlyWithEnd2.tid +15 -0
  212. package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params-draft-exists.tid +27 -0
  213. package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params-empty-tiddler-exists.tid +23 -0
  214. package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params-empty.tid +20 -0
  215. package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params-tiddlers-exist.tid +28 -0
  216. package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params.tid +20 -0
  217. package/editions/test/tiddlers/tests/data/macros/unusedtitle/template-empty-params-tiddler-exist.tid +50 -0
  218. package/editions/test/tiddlers/tests/data/macros/unusedtitle/template-empty-params.tid +24 -0
  219. package/editions/test/tiddlers/tests/data/macros/unusedtitle/template.tid +28 -0
  220. package/editions/test/tiddlers/tests/data/pragmas/WhitespaceAfterPragma.tid +4 -1
  221. package/editions/test/tiddlers/tests/data/procedures/EndInBody.tid +16 -0
  222. package/editions/test/tiddlers/tests/data/procedures/IndentedEnd.tid +16 -0
  223. package/editions/test/tiddlers/tests/data/procedures/MismatchedNamedEnd.tid +16 -0
  224. package/editions/test/tiddlers/tests/data/procedures/WhitespaceOnlyWithEnd.tid +18 -0
  225. package/editions/test/tiddlers/tests/data/procedures/WhitespaceOnlyWithEnd2.tid +15 -0
  226. package/editions/test/tiddlers/tests/data/transclude/Procedures-Whitespace2.tid +25 -0
  227. package/editions/test/tiddlers/tests/data/transclude/Procedures-Whitespace3.tid +30 -0
  228. package/editions/test/tiddlers/tests/data/transclude/Recursion.tid +2 -1
  229. package/editions/test/tiddlers/tests/from-tw5.com/tiddlywiki.files +5 -0
  230. package/editions/test/tiddlers/tests/test-action-deletefield.js +176 -0
  231. package/editions/test/tiddlers/tests/test-backlinks.js +57 -44
  232. package/editions/test/tiddlers/tests/test-backtranscludes.js +241 -0
  233. package/editions/test/tiddlers/tests/test-fakedom.js +27 -0
  234. package/editions/test/tiddlers/tests/test-plugins.js +55 -0
  235. package/editions/test/tiddlers/tests/test-widget-getVariableInfo.js +95 -0
  236. package/editions/test/tiddlers/tests/test-widget.js +61 -0
  237. package/editions/test/tiddlers/tests/test-wikitext-parser.js +48 -49
  238. package/editions/test/tiddlywiki.info +2 -1
  239. package/editions/tour/tiddlers/Solar System/Asteroid (253) Mathilde Image.png +0 -0
  240. package/editions/tour/tiddlers/Solar System/Asteroid (253) Mathilde Image.png.meta +3 -0
  241. package/editions/tour/tiddlers/Solar System/Asteroid.tid +17 -0
  242. package/editions/tour/tiddlers/Solar System/Comet Image.png +0 -0
  243. package/editions/tour/tiddlers/Solar System/Comet Image.png.meta +3 -0
  244. package/editions/tour/tiddlers/Solar System/Comet.tid +15 -0
  245. package/editions/tour/tiddlers/Solar System/Earth Image.png +0 -0
  246. package/editions/tour/tiddlers/Solar System/Earth Image.png.meta +3 -0
  247. package/editions/tour/tiddlers/Solar System/Earth's Moon Image.png +0 -0
  248. package/editions/tour/tiddlers/Solar System/Earth's Moon Image.png.meta +3 -0
  249. package/editions/tour/tiddlers/Solar System/Earth's Moon.tid +10 -0
  250. package/editions/tour/tiddlers/Solar System/Earth.tid +21 -0
  251. package/editions/tour/tiddlers/Solar System/Jupiter Image.png +0 -0
  252. package/editions/tour/tiddlers/Solar System/Jupiter Image.png.meta +3 -0
  253. package/editions/tour/tiddlers/Solar System/Jupiter.tid +15 -0
  254. package/editions/tour/tiddlers/Solar System/Kuiper belt.tid +12 -0
  255. package/editions/tour/tiddlers/Solar System/Mars Image.png +0 -0
  256. package/editions/tour/tiddlers/Solar System/Mars Image.png.meta +5 -0
  257. package/editions/tour/tiddlers/Solar System/Mars.tid +11 -0
  258. package/editions/tour/tiddlers/Solar System/Mercury Image.png +0 -0
  259. package/editions/tour/tiddlers/Solar System/Mercury Image.png.meta +3 -0
  260. package/editions/tour/tiddlers/Solar System/Mercury.tid +21 -0
  261. package/editions/tour/tiddlers/Solar System/Milky Way Image.png +0 -0
  262. package/editions/tour/tiddlers/Solar System/Milky Way Image.png.meta +5 -0
  263. package/editions/tour/tiddlers/Solar System/Milky Way.tid +14 -0
  264. package/editions/tour/tiddlers/Solar System/Moon.tid +9 -0
  265. package/editions/tour/tiddlers/Solar System/Neptune Image.png +0 -0
  266. package/editions/tour/tiddlers/Solar System/Neptune Image.png.meta +3 -0
  267. package/editions/tour/tiddlers/Solar System/Neptune.tid +19 -0
  268. package/editions/tour/tiddlers/Solar System/Planet Image.png +0 -0
  269. package/editions/tour/tiddlers/Solar System/Planet Image.png.meta +3 -0
  270. package/editions/tour/tiddlers/Solar System/Planet.tid +17 -0
  271. package/editions/tour/tiddlers/Solar System/Pluto Image.png +0 -0
  272. package/editions/tour/tiddlers/Solar System/Pluto Image.png.meta +3 -0
  273. package/editions/tour/tiddlers/Solar System/Pluto.tid +12 -0
  274. package/editions/tour/tiddlers/Solar System/Saturn Image.png +0 -0
  275. package/editions/tour/tiddlers/Solar System/Saturn Image.png.meta +3 -0
  276. package/editions/tour/tiddlers/Solar System/Saturn.tid +17 -0
  277. package/editions/tour/tiddlers/Solar System/Solar System Image.png +0 -0
  278. package/editions/tour/tiddlers/Solar System/Solar System Image.png.meta +3 -0
  279. package/editions/tour/tiddlers/Solar System/Solar System.tid +18 -0
  280. package/editions/tour/tiddlers/Solar System/Sun Image.png +0 -0
  281. package/editions/tour/tiddlers/Solar System/Sun Image.png.meta +5 -0
  282. package/editions/tour/tiddlers/Solar System/Sun.tid +17 -0
  283. package/editions/tour/tiddlers/Solar System/Uranus Image.png +0 -0
  284. package/editions/tour/tiddlers/Solar System/Uranus Image.png.meta +3 -0
  285. package/editions/tour/tiddlers/Solar System/Uranus.tid +19 -0
  286. package/editions/tour/tiddlers/Solar System/Venus Image.png +0 -0
  287. package/editions/tour/tiddlers/Solar System/Venus Image.png.meta +3 -0
  288. package/editions/tour/tiddlers/Solar System/Venus.tid +17 -0
  289. package/editions/tour/tiddlers/System/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +4 -0
  290. package/editions/tour/tiddlers/System/DefaultTiddlers.tid +4 -0
  291. package/editions/tour/tiddlers/System/HelloThere.tid +5 -0
  292. package/editions/tour/tiddlers/System/SiteSubtitle.tid +2 -0
  293. package/editions/tour/tiddlers/System/SiteTitle.tid +2 -0
  294. package/editions/tour/tiddlers/System/configAutoStartTour.tid +2 -0
  295. package/editions/tour/tiddlers/System/styles.tid +9 -0
  296. package/editions/tour/tiddlywiki.info +16 -0
  297. package/editions/translators/tiddlywiki.info +1 -0
  298. package/editions/tw5.com/tiddlers/String Operators.tid +8 -0
  299. package/editions/tw5.com/tiddlers/Tag Operators.tid +8 -0
  300. package/editions/tw5.com/tiddlers/TiddlyWiki Docs PR Maker.tid +12 -0
  301. package/editions/tw5.com/tiddlers/about/Archive.tid +1 -1
  302. package/editions/tw5.com/tiddlers/about/Developers.tid +1 -0
  303. package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +5 -5
  304. package/editions/tw5.com/tiddlers/community/Community Editions.tid +2 -2
  305. package/editions/tw5.com/tiddlers/community/Contributor License Agreement.tid +2 -2
  306. package/editions/tw5.com/tiddlers/community/Improving TiddlyWiki Documentation.tid +21 -1
  307. package/editions/tw5.com/tiddlers/community/plugins/Disqus comments plugin by bimlas.tid +1 -1
  308. package/editions/tw5.com/tiddlers/community/plugins/Kin filter operator by bimlas.tid +1 -1
  309. package/editions/tw5.com/tiddlers/community/plugins/Locator plugin by bimlas.tid +1 -1
  310. package/editions/tw5.com/tiddlers/community/themes/Notebook theme by Nicolas Petton.tid +2 -2
  311. package/editions/tw5.com/tiddlers/concepts/Bags and Recipes.tid +42 -0
  312. package/editions/tw5.com/tiddlers/concepts/ColourPalettes.tid +2 -2
  313. package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +31 -0
  314. package/editions/tw5.com/tiddlers/concepts/Filters.tid +3 -3
  315. package/editions/tw5.com/tiddlers/concepts/Hard and Soft Links.tid +4 -2
  316. package/editions/tw5.com/tiddlers/concepts/Hard and Soft Transclusions.tid +16 -0
  317. package/editions/tw5.com/tiddlers/concepts/ShadowTiddlers.tid +4 -2
  318. package/editions/tw5.com/tiddlers/concepts/Temporary Tiddlers.tid +8 -0
  319. package/editions/tw5.com/tiddlers/concepts/TestCaseTiddlers.tid +26 -0
  320. package/editions/tw5.com/tiddlers/concepts/TextReference.tid +2 -2
  321. package/editions/tw5.com/tiddlers/concepts/TiddlerFields.tid +4 -3
  322. package/editions/tw5.com/tiddlers/concepts/Transclusion.tid +10 -3
  323. package/editions/tw5.com/tiddlers/customising/Alternative page layouts.tid +34 -3
  324. package/editions/tw5.com/tiddlers/customising/Creating new toolbar buttons.tid +2 -2
  325. package/editions/tw5.com/tiddlers/definitions/Legacy.tid +9 -0
  326. package/editions/tw5.com/tiddlers/definitions/TiddlyFox.tid +4 -2
  327. package/editions/tw5.com/tiddlers/definitions/TiddlyWeb.tid +2 -3
  328. package/editions/tw5.com/tiddlers/definitions/TiddlyWebAdaptor.tid +9 -0
  329. package/editions/tw5.com/tiddlers/definitions/UnaMesa.tid +10 -0
  330. package/editions/tw5.com/tiddlers/fields/ListField.tid +3 -3
  331. package/editions/tw5.com/tiddlers/filters/Conditional Operators.tid +6 -4
  332. package/editions/tw5.com/tiddlers/filters/Filter Operators.tid +13 -6
  333. package/editions/tw5.com/tiddlers/filters/Mathematics Operators.tid +2 -2
  334. package/editions/tw5.com/tiddlers/filters/add.tid +2 -2
  335. package/editions/tw5.com/tiddlers/filters/all.tid +8 -4
  336. package/editions/tw5.com/tiddlers/filters/append.tid +3 -3
  337. package/editions/tw5.com/tiddlers/filters/backtranscludes.tid +14 -0
  338. package/editions/tw5.com/tiddlers/filters/charcode.tid +2 -2
  339. package/editions/tw5.com/tiddlers/filters/compare Operator.tid +2 -2
  340. package/editions/tw5.com/tiddlers/filters/cycle Operator.tid +1 -1
  341. package/editions/tw5.com/tiddlers/filters/divide Operator.tid +1 -1
  342. package/editions/tw5.com/tiddlers/filters/enlist Operator.tid +2 -2
  343. package/editions/tw5.com/tiddlers/filters/enlist-input Operator.tid +1 -1
  344. package/editions/tw5.com/tiddlers/filters/examples/Brownies.tid +1 -1
  345. package/editions/tw5.com/tiddlers/filters/examples/Chick Peas.tid +1 -1
  346. package/editions/tw5.com/tiddlers/filters/examples/Milk.tid +1 -1
  347. package/editions/tw5.com/tiddlers/filters/examples/Rice Pudding.tid +1 -1
  348. package/editions/tw5.com/tiddlers/filters/examples/backtransclude.tid +7 -0
  349. package/editions/tw5.com/tiddlers/filters/examples/prepend.tid +2 -2
  350. package/editions/tw5.com/tiddlers/filters/examples/sha256 Operator (Examples).tid +9 -0
  351. package/editions/tw5.com/tiddlers/filters/examples/subfilter Operator (Examples).tid +1 -1
  352. package/editions/tw5.com/tiddlers/filters/examples/transclude.tid +5 -0
  353. package/editions/tw5.com/tiddlers/filters/field.tid +11 -11
  354. package/editions/tw5.com/tiddlers/filters/format.tid +6 -6
  355. package/editions/tw5.com/tiddlers/filters/jsonextract.tid +2 -2
  356. package/editions/tw5.com/tiddlers/filters/jsonget.tid +2 -2
  357. package/editions/tw5.com/tiddlers/filters/jsonindexes.tid +2 -2
  358. package/editions/tw5.com/tiddlers/filters/jsontype.tid +2 -2
  359. package/editions/tw5.com/tiddlers/filters/log Operator.tid +1 -1
  360. package/editions/tw5.com/tiddlers/filters/match Operator.tid +5 -6
  361. package/editions/tw5.com/tiddlers/filters/max Operator.tid +2 -2
  362. package/editions/tw5.com/tiddlers/filters/min Operator.tid +1 -1
  363. package/editions/tw5.com/tiddlers/filters/minlength.tid +3 -3
  364. package/editions/tw5.com/tiddlers/filters/moduleproperty Operator.tid +1 -1
  365. package/editions/tw5.com/tiddlers/filters/modules.tid +1 -1
  366. package/editions/tw5.com/tiddlers/filters/multiply Operator.tid +1 -1
  367. package/editions/tw5.com/tiddlers/filters/power Operator.tid +1 -1
  368. package/editions/tw5.com/tiddlers/filters/prefix.tid +9 -10
  369. package/editions/tw5.com/tiddlers/filters/prepend.tid +2 -2
  370. package/editions/tw5.com/tiddlers/filters/range.tid +11 -11
  371. package/editions/tw5.com/tiddlers/filters/reduce.tid +2 -2
  372. package/editions/tw5.com/tiddlers/filters/remainder Operator.tid +1 -1
  373. package/editions/tw5.com/tiddlers/filters/remove.tid +3 -3
  374. package/editions/tw5.com/tiddlers/filters/removeprefix.tid +8 -9
  375. package/editions/tw5.com/tiddlers/filters/removesuffix.tid +8 -9
  376. package/editions/tw5.com/tiddlers/filters/search.tid +3 -3
  377. package/editions/tw5.com/tiddlers/filters/sortby.tid +1 -1
  378. package/editions/tw5.com/tiddlers/filters/splitregexp Operator.tid +20 -2
  379. package/editions/tw5.com/tiddlers/filters/subfilter Operator.tid +3 -3
  380. package/editions/tw5.com/tiddlers/filters/subtract Operator.tid +1 -1
  381. package/editions/tw5.com/tiddlers/filters/suffix.tid +9 -10
  382. package/editions/tw5.com/tiddlers/filters/syntax/All Filter Run Prefix.tid +18 -0
  383. package/editions/tw5.com/tiddlers/filters/syntax/And Filter Run Prefix.tid +18 -0
  384. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix (Examples).tid +2 -2
  385. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix.tid +14 -9
  386. package/editions/tw5.com/tiddlers/filters/syntax/Else Filter Run Prefix.tid +18 -0
  387. package/editions/tw5.com/tiddlers/filters/syntax/Except Filter Run Prefix.tid +18 -0
  388. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +11 -63
  389. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix (Examples).tid +2 -2
  390. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix.tid +19 -14
  391. package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +11 -7
  392. package/editions/tw5.com/tiddlers/filters/syntax/Filter Run Prefix (Examples).tid +2 -2
  393. package/editions/tw5.com/tiddlers/filters/syntax/Filter Run Prefix.tid +18 -0
  394. package/editions/tw5.com/tiddlers/filters/syntax/Filter Run.tid +5 -4
  395. package/editions/tw5.com/tiddlers/filters/syntax/Filter Step.tid +22 -10
  396. package/editions/tw5.com/tiddlers/filters/syntax/Filter Syntax.tid +12 -6
  397. package/editions/tw5.com/tiddlers/filters/syntax/Filter Whitespace.tid +5 -3
  398. package/editions/tw5.com/tiddlers/filters/syntax/Interchangeable Filter Run Prefixes.tid +44 -0
  399. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix (Examples).tid +2 -2
  400. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +13 -8
  401. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix (Examples).tid +2 -2
  402. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +21 -16
  403. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +32 -6
  404. package/editions/tw5.com/tiddlers/filters/syntax/Or Filter Run Prefix.tid +18 -0
  405. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix (Examples).tid +2 -2
  406. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix.tid +23 -14
  407. package/editions/tw5.com/tiddlers/filters/syntax/Shortcut Filter Run Prefixes.tid +29 -0
  408. package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix (Examples).tid +2 -2
  409. package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix.tid +16 -9
  410. package/editions/tw5.com/tiddlers/filters/syntax/then Filter Run Prefix.tid +3 -36
  411. package/editions/tw5.com/tiddlers/filters/toggle Operator.tid +2 -2
  412. package/editions/tw5.com/tiddlers/filters/transcludes.tid +14 -0
  413. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Firefox.tid +4 -3
  414. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  415. package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +6 -0
  416. package/editions/tw5.com/tiddlers/howtos/Custom_data-styles.tid +4 -2
  417. package/editions/tw5.com/tiddlers/howtos/How to embed PDF and other documents.tid +2 -2
  418. package/editions/tw5.com/tiddlers/howtos/Setting a page background image.tid +2 -2
  419. package/editions/tw5.com/tiddlers/howtos/Tagging.tid +3 -3
  420. package/editions/tw5.com/tiddlers/howtos/Using Excise.tid +2 -2
  421. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  422. package/editions/tw5.com/tiddlers/images/Open Collective Logo.tid +4 -2
  423. package/editions/tw5.com/tiddlers/macros/StylesheetMacros.tid +3 -1
  424. package/editions/tw5.com/tiddlers/macros/TagMacro.tid +30 -2
  425. package/editions/tw5.com/tiddlers/macros/examples/tag.tid +8 -4
  426. package/editions/tw5.com/tiddlers/macros/import/tags-of-current-tiddler.tid +2 -1
  427. package/editions/tw5.com/tiddlers/macros/import/tv-get-export-image-link.tid +3 -2
  428. package/editions/tw5.com/tiddlers/macros/import/tv-wikilink-tooltip.tid +2 -1
  429. package/editions/tw5.com/tiddlers/macros/list-thumbnails Macro.tid +5 -5
  430. package/editions/tw5.com/tiddlers/macros/syntax/Macro Call Syntax.tid +5 -1
  431. package/editions/tw5.com/tiddlers/macros/syntax/Macro Definition Syntax.tid +5 -1
  432. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Call Syntax.tid +33 -0
  433. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Definition Syntax.tid +93 -0
  434. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Syntax.tid +11 -0
  435. package/editions/tw5.com/tiddlers/macros/tag-picker_Macro.tid +13 -5
  436. package/editions/tw5.com/tiddlers/macros/thumbnail Macro.tid +19 -4
  437. package/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +5 -1
  438. package/editions/tw5.com/tiddlers/mechanisms/RefreshThrottling.tid +1 -1
  439. package/editions/tw5.com/tiddlers/mechanisms/WikificationMechanism.tid +3 -3
  440. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-copy-to-clipboard.tid +3 -1
  441. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-bitmap-operation.tid +2 -2
  442. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-text-operation.tid +2 -2
  443. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Basic Authentication.tid +34 -0
  444. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Random Dog.tid +1 -1
  445. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Zotero.tid +1 -1
  446. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Examples.tid +117 -0
  447. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request.tid +8 -1
  448. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-permalink.tid +3 -1
  449. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-permaview.tid +3 -1
  450. package/editions/tw5.com/tiddlers/nodejs/Naming of System Tiddlers.tid +4 -4
  451. package/editions/tw5.com/tiddlers/nodejs/TiddlyWiki5 Versioning.tid +1 -1
  452. package/editions/tw5.com/tiddlers/plugins/Plugin Stability.tid +14 -0
  453. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _parsermode.tid +1 -1
  454. package/editions/tw5.com/tiddlers/procedures/Procedures.tid +6 -3
  455. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +1 -1
  456. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.3.tid +1 -1
  457. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.4.tid +170 -0
  458. package/editions/tw5.com/tiddlers/saving/Saving with FireFox.tid +17 -0
  459. package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +0 -1
  460. package/editions/tw5.com/tiddlers/saving/Saving with TiddlyFox on Android.tid +4 -2
  461. package/editions/tw5.com/tiddlers/saving/Saving with TiddlyFox.tid +2 -19
  462. package/editions/tw5.com/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +0 -1
  463. package/editions/tw5.com/tiddlers/styleguide/Documentation Macros.tid +188 -163
  464. package/editions/tw5.com/tiddlers/system/$__SplashScreen.tid +3 -1
  465. package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +7 -3
  466. package/editions/tw5.com/tiddlers/system/Deprecated.tid +5 -1
  467. package/editions/tw5.com/tiddlers/system/Deprecated_-_What_does_it_mean.tid +0 -3
  468. package/editions/tw5.com/tiddlers/system/Sources.tid +36 -15
  469. package/editions/tw5.com/tiddlers/system/TableOfContents.tid +2 -2
  470. package/editions/tw5.com/tiddlers/system/doc-macros.tid +181 -170
  471. package/editions/tw5.com/tiddlers/system/doc-styles.tid +46 -23
  472. package/editions/tw5.com/tiddlers/system/download-empty.tid +4 -4
  473. package/editions/tw5.com/tiddlers/system/filter-run-template.tid +50 -0
  474. package/editions/tw5.com/tiddlers/system/operator-macros.tid +46 -32
  475. package/editions/tw5.com/tiddlers/system/operator-template.tid +52 -71
  476. package/editions/tw5.com/tiddlers/system/variable-macros.tid +15 -10
  477. package/editions/tw5.com/tiddlers/system/version-macros.tid +29 -5
  478. package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +54 -62
  479. package/editions/tw5.com/tiddlers/tag-picker Macro (Examples).tid +69 -0
  480. package/editions/tw5.com/tiddlers/tag-pill Macro (Examples).tid +14 -0
  481. package/editions/tw5.com/tiddlers/testcases/DataWidget/ImportCompound.tid +33 -0
  482. package/editions/tw5.com/tiddlers/testcases/DataWidget/ImportedFilter.tid +49 -0
  483. package/editions/tw5.com/tiddlers/testcases/DataWidget/ImportedTiddler.tid +29 -0
  484. package/editions/tw5.com/tiddlers/testcases/DataWidget/Refreshing.tid +30 -0
  485. package/editions/tw5.com/tiddlers/testcases/DataWidget/SimpleTiddler.tid +22 -0
  486. package/editions/tw5.com/tiddlers/testcases/TestCaseWidget/FailingTest.tid +15 -0
  487. package/editions/tw5.com/tiddlers/testcases/TestCaseWidget/NoExpectedResults.tid +12 -0
  488. package/editions/tw5.com/tiddlers/testcases/TestCaseWidget/TwoPlusTwo.tid +18 -0
  489. package/editions/tw5.com/tiddlers/testcases/TestCaseWidget/currentTiddler.tid +16 -0
  490. package/editions/tw5.com/tiddlers/testcases/TranscludeWidget/SimpleTransclusion.tid +23 -0
  491. package/editions/tw5.com/tiddlers/variables/Variables.tid +4 -3
  492. package/editions/tw5.com/tiddlers/variables/examples/tv-get-export-image-link.tid +7 -1
  493. package/editions/tw5.com/tiddlers/variables/tv-filter-export-link Variable.tid +2 -2
  494. package/editions/tw5.com/tiddlers/variables/tv-get-export-image-link.tid +4 -4
  495. package/editions/tw5.com/tiddlers/variables/tv-get-export-link.tid +4 -4
  496. package/editions/tw5.com/tiddlers/variables/tv-wikilink-template.tid +2 -2
  497. package/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +2 -2
  498. package/editions/tw5.com/tiddlers/webserver/Using the integrated static file server.tid +17 -2
  499. package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ use-browse-cache.tid +25 -0
  500. package/editions/tw5.com/tiddlers/webserver/WebServer.tid +1 -1
  501. package/editions/tw5.com/tiddlers/widgets/ActionDeleteFieldWidget.tid +51 -20
  502. package/editions/tw5.com/tiddlers/widgets/ActionDeleteTiddlerWidget.tid +16 -14
  503. package/editions/tw5.com/tiddlers/widgets/ActionListopsWidget.tid +5 -3
  504. package/editions/tw5.com/tiddlers/widgets/DataWidget.tid +42 -0
  505. package/editions/tw5.com/tiddlers/widgets/EncryptWidget.tid +5 -5
  506. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +32 -0
  507. package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +2 -2
  508. package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +10 -0
  509. package/editions/tw5.com/tiddlers/widgets/TestCaseWidget.tid +107 -0
  510. package/editions/tw5.com/tiddlers/widgets/TranscludeWidget.tid +34 -34
  511. package/editions/tw5.com/tiddlers/widgets/Widgets.tid +4 -4
  512. package/editions/tw5.com/tiddlers/wikitext/Block Quotes in WikiText.tid +32 -1
  513. package/editions/tw5.com/tiddlers/wikitext/Hard Linebreaks in WikiText.tid +7 -3
  514. package/editions/tw5.com/tiddlers/wikitext/Transclusion and Substitution.tid +2 -2
  515. package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +27 -6
  516. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +2 -2
  517. package/editions/tw5.com/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +2 -2
  518. package/editions/tw5.com/tiddlywiki.info +5 -2
  519. package/languages/de-DE/Buttons.multids +4 -1
  520. package/languages/de-DE/ControlPanel.multids +7 -1
  521. package/languages/de-DE/Dates.multids +1 -1
  522. package/languages/de-DE/Docs/ModuleTypes.multids +2 -2
  523. package/languages/de-DE/Docs/PaletteColours.multids +4 -1
  524. package/languages/de-DE/EditTemplate.multids +1 -1
  525. package/languages/de-DE/Exporters.multids +1 -1
  526. package/languages/de-DE/Fields.multids +3 -1
  527. package/languages/de-DE/Help/build.tid +1 -1
  528. package/languages/de-DE/Help/clearpassword.tid +2 -2
  529. package/languages/de-DE/Help/commands.tid +2 -2
  530. package/languages/de-DE/Help/editions.tid +1 -1
  531. package/languages/de-DE/Help/fetch.tid +6 -6
  532. package/languages/de-DE/Help/import.tid +5 -5
  533. package/languages/de-DE/Help/init.tid +1 -1
  534. package/languages/de-DE/Help/listen.tid +8 -8
  535. package/languages/de-DE/Help/load.tid +3 -3
  536. package/languages/de-DE/Help/makelibrary.tid +2 -2
  537. package/languages/de-DE/Help/output.tid +2 -2
  538. package/languages/de-DE/Help/password.tid +1 -1
  539. package/languages/de-DE/Help/render.tid +6 -6
  540. package/languages/de-DE/Help/save.tid +3 -4
  541. package/languages/de-DE/Help/server.tid +5 -0
  542. package/languages/de-DE/Help/setfield.tid +1 -1
  543. package/languages/de-DE/Import.multids +1 -1
  544. package/languages/de-DE/Misc.multids +6 -6
  545. package/languages/de-DE/Modals/Download.tid +0 -1
  546. package/languages/de-DE/NewJournal.multids +1 -1
  547. package/languages/de-DE/Notifications.multids +1 -1
  548. package/languages/de-DE/Search.multids +1 -1
  549. package/languages/de-DE/SideBar.multids +1 -1
  550. package/languages/de-DE/SiteSubtitle.tid +1 -1
  551. package/languages/de-DE/ThemeTweaks.multids +1 -1
  552. package/languages/de-DE/TiddlerInfo.multids +1 -1
  553. package/languages/fr-FR/Buttons.multids +1 -0
  554. package/languages/fr-FR/ControlPanel.multids +6 -0
  555. package/languages/fr-FR/Docs/ModuleTypes.multids +1 -1
  556. package/languages/fr-FR/Docs/PaletteColours.multids +3 -0
  557. package/languages/fr-FR/Fields.multids +3 -1
  558. package/languages/fr-FR/Help/commands.tid +1 -1
  559. package/languages/fr-FR/Help/savewikifolder.tid +15 -0
  560. package/languages/fr-FR/Help/server.tid +1 -1
  561. package/languages/fr-FR/Types/application_javascript.tid +3 -3
  562. package/languages/fr-FR/Types/application_json.tid +2 -2
  563. package/languages/fr-FR/Types/application_x_tiddler_dictionary.tid +2 -2
  564. package/languages/fr-FR/Types/image_gif.tid +2 -2
  565. package/languages/fr-FR/Types/image_jpeg.tid +1 -1
  566. package/languages/fr-FR/Types/image_png.tid +1 -1
  567. package/languages/fr-FR/Types/image_svg_xml.tid +1 -1
  568. package/languages/fr-FR/Types/image_x-icon.tid +1 -1
  569. package/languages/fr-FR/Types/text_css.tid +2 -2
  570. package/languages/fr-FR/Types/text_html.tid +2 -2
  571. package/languages/fr-FR/Types/text_plain.tid +2 -2
  572. package/languages/fr-FR/Types/text_vnd.tiddlywiki.tid +2 -2
  573. package/languages/fr-FR/Types/text_x-tiddlywiki.tid +1 -1
  574. package/languages/mk-MK/Buttons.multids +195 -0
  575. package/languages/mk-MK/ControlPanel.multids +231 -0
  576. package/languages/mk-MK/CoreReadMe.tid +8 -0
  577. package/languages/mk-MK/Dates.multids +87 -0
  578. package/languages/mk-MK/Docs/ModuleTypes.multids +30 -0
  579. package/languages/mk-MK/Docs/PaletteColours.multids +109 -0
  580. package/languages/mk-MK/EditTemplate.multids +38 -0
  581. package/languages/mk-MK/Exporters.multids +6 -0
  582. package/languages/mk-MK/Fields.multids +43 -0
  583. package/languages/mk-MK/Filters.multids +16 -0
  584. package/languages/mk-MK/GettingStarted.tid +18 -0
  585. package/languages/mk-MK/Help/build.tid +11 -0
  586. package/languages/mk-MK/Help/clearpassword.tid +8 -0
  587. package/languages/mk-MK/Help/commands.tid +18 -0
  588. package/languages/mk-MK/Help/default.tid +26 -0
  589. package/languages/mk-MK/Help/deletetiddlers.tid +8 -0
  590. package/languages/mk-MK/Help/editions.tid +8 -0
  591. package/languages/mk-MK/Help/fetch.tid +38 -0
  592. package/languages/mk-MK/Help/help.tid +10 -0
  593. package/languages/mk-MK/Help/import.tid +24 -0
  594. package/languages/mk-MK/Help/init.tid +23 -0
  595. package/languages/mk-MK/Help/listen.tid +35 -0
  596. package/languages/mk-MK/Help/load.tid +19 -0
  597. package/languages/mk-MK/Help/makelibrary.tid +14 -0
  598. package/languages/mk-MK/Help/notfound.tid +4 -0
  599. package/languages/mk-MK/Help/output.tid +11 -0
  600. package/languages/mk-MK/Help/password.tid +10 -0
  601. package/languages/mk-MK/Help/render.tid +35 -0
  602. package/languages/mk-MK/Help/rendertiddler.tid +24 -0
  603. package/languages/mk-MK/Help/rendertiddlers.tid +20 -0
  604. package/languages/mk-MK/Help/save.tid +25 -0
  605. package/languages/mk-MK/Help/savetiddler.tid +14 -0
  606. package/languages/mk-MK/Help/savetiddlers.tid +16 -0
  607. package/languages/mk-MK/Help/savewikifolder.tid +34 -0
  608. package/languages/mk-MK/Help/server.tid +43 -0
  609. package/languages/mk-MK/Help/setfield.tid +17 -0
  610. package/languages/mk-MK/Help/unpackplugin.tid +8 -0
  611. package/languages/mk-MK/Help/verbose.tid +8 -0
  612. package/languages/mk-MK/Help/version.tid +8 -0
  613. package/languages/mk-MK/Import.multids +34 -0
  614. package/languages/mk-MK/Misc.multids +99 -0
  615. package/languages/mk-MK/Modals/Download.tid +13 -0
  616. package/languages/mk-MK/NewJournal.multids +5 -0
  617. package/languages/mk-MK/Notifications.multids +6 -0
  618. package/languages/mk-MK/Search.multids +20 -0
  619. package/languages/mk-MK/SideBar.multids +18 -0
  620. package/languages/mk-MK/SiteSubtitle.tid +3 -0
  621. package/languages/mk-MK/SiteTitle.tid +3 -0
  622. package/languages/mk-MK/Snippets/ListByTag.tid +5 -0
  623. package/languages/mk-MK/Snippets/MacroDefinition.tid +7 -0
  624. package/languages/mk-MK/Snippets/Table4x3.tid +8 -0
  625. package/languages/mk-MK/Snippets/TableOfContents.tid +9 -0
  626. package/languages/mk-MK/ThemeTweaks.multids +42 -0
  627. package/languages/mk-MK/TiddlerInfo.multids +21 -0
  628. package/languages/mk-MK/Types/application%2Fjavascript.tid +4 -0
  629. package/languages/mk-MK/Types/application%2Fjson.tid +4 -0
  630. package/languages/mk-MK/Types/application%2Fx-tiddler-dictionary.tid +4 -0
  631. package/languages/mk-MK/Types/image%2Fgif.tid +4 -0
  632. package/languages/mk-MK/Types/image%2Fjpeg.tid +4 -0
  633. package/languages/mk-MK/Types/image%2Fpng.tid +4 -0
  634. package/languages/mk-MK/Types/image%2Fsvg%2Bxml.tid +4 -0
  635. package/languages/mk-MK/Types/image%2Fx-icon.tid +4 -0
  636. package/languages/mk-MK/Types/text%2Fcss.tid +4 -0
  637. package/languages/mk-MK/Types/text%2Fhtml.tid +4 -0
  638. package/languages/mk-MK/Types/text%2Fplain.tid +4 -0
  639. package/languages/mk-MK/Types/text%2Fvnd.tiddlywiki.tid +4 -0
  640. package/languages/mk-MK/Types/text%2Fx-tiddlywiki.tid +4 -0
  641. package/languages/mk-MK/icon.tid +8 -0
  642. package/languages/mk-MK/plugin.info +8 -0
  643. package/languages/pl-PL/Dates.multids +41 -41
  644. package/languages/zh-Hans/Buttons.multids +3 -0
  645. package/languages/zh-Hans/ControlPanel.multids +6 -0
  646. package/languages/zh-Hans/Docs/ModuleTypes.multids +1 -1
  647. package/languages/zh-Hans/Docs/PaletteColours.multids +7 -0
  648. package/languages/zh-Hans/Fields.multids +2 -0
  649. package/languages/zh-Hans/Misc.multids +3 -3
  650. package/languages/zh-Hant/Buttons.multids +3 -0
  651. package/languages/zh-Hant/ControlPanel.multids +6 -0
  652. package/languages/zh-Hant/Docs/ModuleTypes.multids +1 -1
  653. package/languages/zh-Hant/Docs/PaletteColours.multids +7 -0
  654. package/languages/zh-Hant/Fields.multids +2 -0
  655. package/languages/zh-Hant/Misc.multids +2 -2
  656. package/license +1 -1
  657. package/licenses/cla-individual.md +14 -0
  658. package/package.json +1 -1
  659. package/plugins/tiddlywiki/async/plugin.info +2 -1
  660. package/plugins/tiddlywiki/aws/plugin.info +2 -1
  661. package/plugins/tiddlywiki/aws/templates/lambda/sjcl.tid +2 -2
  662. package/plugins/tiddlywiki/bibtex/plugin.info +2 -1
  663. package/plugins/tiddlywiki/blog/plugin.info +2 -1
  664. package/plugins/tiddlywiki/browser-sniff/plugin.info +2 -1
  665. package/plugins/tiddlywiki/browser-storage/plugin.info +2 -1
  666. package/plugins/tiddlywiki/cecily/plugin.info +2 -1
  667. package/plugins/tiddlywiki/classictools/modules/recipe.js +9 -0
  668. package/plugins/tiddlywiki/classictools/plugin.info +2 -1
  669. package/plugins/tiddlywiki/classictools/templates/tiddlywiki2.externaljs.template.html.tid +4 -4
  670. package/plugins/tiddlywiki/classictools/templates/tiddlywiki2.template.html.tid +21 -21
  671. package/plugins/tiddlywiki/codemirror/plugin.info +2 -1
  672. package/plugins/tiddlywiki/codemirror-autocomplete/plugin.info +2 -1
  673. package/plugins/tiddlywiki/codemirror-closebrackets/plugin.info +2 -1
  674. package/plugins/tiddlywiki/codemirror-closetag/plugin.info +2 -1
  675. package/plugins/tiddlywiki/codemirror-fullscreen-editing/plugin.info +2 -1
  676. package/plugins/tiddlywiki/codemirror-keymap-emacs/plugin.info +2 -1
  677. package/plugins/tiddlywiki/codemirror-keymap-sublime-text/plugin.info +2 -1
  678. package/plugins/tiddlywiki/codemirror-keymap-vim/plugin.info +2 -1
  679. package/plugins/tiddlywiki/codemirror-mode-css/plugin.info +2 -1
  680. package/plugins/tiddlywiki/codemirror-mode-htmlembedded/plugin.info +2 -1
  681. package/plugins/tiddlywiki/codemirror-mode-htmlmixed/plugin.info +2 -1
  682. package/plugins/tiddlywiki/codemirror-mode-javascript/plugin.info +2 -1
  683. package/plugins/tiddlywiki/codemirror-mode-markdown/plugin.info +2 -1
  684. package/plugins/tiddlywiki/codemirror-mode-x-tiddlywiki/plugin.info +2 -1
  685. package/plugins/tiddlywiki/codemirror-mode-xml/plugin.info +2 -1
  686. package/plugins/tiddlywiki/codemirror-search-replace/plugin.info +2 -1
  687. package/plugins/tiddlywiki/codemirror-trailingspace/plugin.info +2 -1
  688. package/plugins/tiddlywiki/comments/plugin.info +2 -1
  689. package/plugins/tiddlywiki/confetti/confetti-manager.js +56 -0
  690. package/plugins/tiddlywiki/confetti/confetti-widget.js +67 -0
  691. package/plugins/tiddlywiki/confetti/examples/staggered.tid +10 -0
  692. package/plugins/tiddlywiki/confetti/examples/typing-trigger.tid +10 -0
  693. package/plugins/tiddlywiki/confetti/files/LICENSE +15 -0
  694. package/plugins/tiddlywiki/confetti/files/confetti.js +626 -0
  695. package/plugins/tiddlywiki/confetti/files/tiddlywiki.files +20 -0
  696. package/plugins/tiddlywiki/confetti/plugin.info +7 -0
  697. package/plugins/tiddlywiki/confetti/readme.tid +65 -0
  698. package/plugins/tiddlywiki/confetti/startup.js +63 -0
  699. package/plugins/tiddlywiki/consent-banner/plugin.info +2 -1
  700. package/plugins/tiddlywiki/d3/plugin.info +2 -1
  701. package/plugins/tiddlywiki/dynannotate/docs/readme.tid +10 -0
  702. package/plugins/tiddlywiki/dynannotate/examples/spotlight.tid +71 -0
  703. package/plugins/tiddlywiki/dynannotate/modules/element-spotlight.js +136 -0
  704. package/plugins/tiddlywiki/dynannotate/modules/startup.js +24 -1
  705. package/plugins/tiddlywiki/dynannotate/plugin.info +2 -1
  706. package/plugins/tiddlywiki/dynannotate/styles.tid +17 -0
  707. package/plugins/tiddlywiki/dynaview/plugin.info +2 -1
  708. package/plugins/tiddlywiki/evernote/plugin.info +2 -1
  709. package/plugins/tiddlywiki/external-attachments/plugin.info +2 -1
  710. package/plugins/tiddlywiki/filesystem/plugin.info +2 -1
  711. package/plugins/tiddlywiki/freelinks/plugin.info +2 -1
  712. package/plugins/tiddlywiki/geospatial/baselayers/TagsGeoBaseLayer.tid +2 -0
  713. package/plugins/tiddlywiki/geospatial/baselayers/esri-world-imagery.tid +7 -0
  714. package/plugins/tiddlywiki/geospatial/baselayers/openstreetmap.tid +7 -0
  715. package/plugins/tiddlywiki/geospatial/baselayers/opentopomap.tid +7 -0
  716. package/plugins/tiddlywiki/geospatial/docs/flickr.tid +141 -0
  717. package/plugins/tiddlywiki/geospatial/docs/geobaselayer.tid +20 -0
  718. package/plugins/tiddlywiki/geospatial/docs/geodifference.tid +20 -0
  719. package/plugins/tiddlywiki/geospatial/docs/geodistance.tid +14 -0
  720. package/plugins/tiddlywiki/geospatial/docs/geointersect.tid +20 -0
  721. package/plugins/tiddlywiki/geospatial/docs/geolayer.tid +24 -0
  722. package/plugins/tiddlywiki/geospatial/docs/geolocation.tid +92 -0
  723. package/plugins/tiddlywiki/geospatial/docs/geolookup.tid +16 -0
  724. package/plugins/tiddlywiki/geospatial/docs/geomap.tid +122 -0
  725. package/plugins/tiddlywiki/geospatial/docs/geonearestpoint.tid +19 -0
  726. package/plugins/tiddlywiki/geospatial/docs/geopoint.tid +22 -0
  727. package/plugins/tiddlywiki/geospatial/docs/geounion.tid +20 -0
  728. package/plugins/tiddlywiki/geospatial/docs/olc-decode.tid +14 -0
  729. package/plugins/tiddlywiki/geospatial/docs/olc-encode.tid +14 -0
  730. package/plugins/tiddlywiki/geospatial/docs.tid +3 -0
  731. package/plugins/tiddlywiki/geospatial/files/leaflet.js/LICENSE +26 -0
  732. package/plugins/tiddlywiki/geospatial/files/leaflet.js/images/layers-2x.png +0 -0
  733. package/plugins/tiddlywiki/geospatial/files/leaflet.js/images/layers.png +0 -0
  734. package/plugins/tiddlywiki/geospatial/files/leaflet.js/images/marker-icon-2x.png +0 -0
  735. package/plugins/tiddlywiki/geospatial/files/leaflet.js/images/marker-icon.png +0 -0
  736. package/plugins/tiddlywiki/geospatial/files/leaflet.js/images/marker-shadow.png +0 -0
  737. package/plugins/tiddlywiki/geospatial/files/leaflet.js/leaflet-src.js +14512 -0
  738. package/plugins/tiddlywiki/geospatial/files/leaflet.js/leaflet-src.js.map +1 -0
  739. package/plugins/tiddlywiki/geospatial/files/leaflet.js/leaflet.css +661 -0
  740. package/plugins/tiddlywiki/geospatial/files/leaflet.js/leaflet.js +6 -0
  741. package/plugins/tiddlywiki/geospatial/files/leaflet.js/leaflet.js.map +1 -0
  742. package/plugins/tiddlywiki/geospatial/files/leaflet.js/tiddlywiki.files +34 -0
  743. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/MIT-LICENCE.txt +20 -0
  744. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/MarkerCluster.Default.css +60 -0
  745. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/MarkerCluster.css +14 -0
  746. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/leaflet.markercluster-src.js +2718 -0
  747. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/leaflet.markercluster-src.js.map +1 -0
  748. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/leaflet.markercluster.js +2 -0
  749. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/leaflet.markercluster.js.map +1 -0
  750. package/plugins/tiddlywiki/geospatial/files/leaflet.markercluster/tiddlywiki.files +41 -0
  751. package/plugins/tiddlywiki/geospatial/files/open-location-code/LICENSE +202 -0
  752. package/plugins/tiddlywiki/geospatial/files/open-location-code/openlocationcode.js +695 -0
  753. package/plugins/tiddlywiki/geospatial/files/open-location-code/openlocationcode.min.js +1 -0
  754. package/plugins/tiddlywiki/geospatial/files/open-location-code/tiddlywiki.files +21 -0
  755. package/plugins/tiddlywiki/geospatial/files/turf.js/LICENSE +20 -0
  756. package/plugins/tiddlywiki/geospatial/files/turf.js/tiddlywiki.files +21 -0
  757. package/plugins/tiddlywiki/geospatial/files/turf.js/turf.6.5.0.js +88 -0
  758. package/plugins/tiddlywiki/geospatial/geotools.js +41 -0
  759. package/plugins/tiddlywiki/geospatial/helpers/Flickr.tid +99 -0
  760. package/plugins/tiddlywiki/geospatial/helpers/FlickrDefaultPhotoTemplate.tid +11 -0
  761. package/plugins/tiddlywiki/geospatial/icon.tid +6 -0
  762. package/plugins/tiddlywiki/geospatial/images/markers/pin.svg +9 -0
  763. package/plugins/tiddlywiki/geospatial/images/markers/pin.svg.meta +2 -0
  764. package/plugins/tiddlywiki/geospatial/license.tid +10 -0
  765. package/plugins/tiddlywiki/geospatial/operators/helper.js +24 -0
  766. package/plugins/tiddlywiki/geospatial/operators/lookup.js +45 -0
  767. package/plugins/tiddlywiki/geospatial/operators/measurement.js +54 -0
  768. package/plugins/tiddlywiki/geospatial/operators/olc.js +55 -0
  769. package/plugins/tiddlywiki/geospatial/operators/transformation.js +88 -0
  770. package/plugins/tiddlywiki/geospatial/plugin.info +7 -0
  771. package/plugins/tiddlywiki/geospatial/readme.tid +13 -0
  772. package/plugins/tiddlywiki/geospatial/settings.tid +24 -0
  773. package/plugins/tiddlywiki/geospatial/startup.js +78 -0
  774. package/plugins/tiddlywiki/geospatial/styles.tid +10 -0
  775. package/plugins/tiddlywiki/geospatial/tests/operators/geodifference-interactive.tid +63 -0
  776. package/plugins/tiddlywiki/geospatial/tests/operators/geodifference.tid +54 -0
  777. package/plugins/tiddlywiki/geospatial/tests/operators/geodistance.tid +30 -0
  778. package/plugins/tiddlywiki/geospatial/tests/operators/geointersect-interactive.tid +63 -0
  779. package/plugins/tiddlywiki/geospatial/tests/operators/geointersect.tid +54 -0
  780. package/plugins/tiddlywiki/geospatial/tests/operators/geolookup.tid +64 -0
  781. package/plugins/tiddlywiki/geospatial/tests/operators/geonearestpoint.tid +28 -0
  782. package/plugins/tiddlywiki/geospatial/tests/operators/geonearestpoint2.tid +45 -0
  783. package/plugins/tiddlywiki/geospatial/tests/operators/geopoint.tid +21 -0
  784. package/plugins/tiddlywiki/geospatial/tests/operators/geounion-interactive.tid +63 -0
  785. package/plugins/tiddlywiki/geospatial/tests/operators/geounion.tid +54 -0
  786. package/plugins/tiddlywiki/geospatial/tests/operators/olc-decode.tid +20 -0
  787. package/plugins/tiddlywiki/geospatial/tests/operators/olc-encode.tid +20 -0
  788. package/plugins/tiddlywiki/geospatial/tests/widgets/geomap-draggable-marker.tid +40 -0
  789. package/plugins/tiddlywiki/geospatial/tests/widgets/geomap-refresh.tid +62 -0
  790. package/plugins/tiddlywiki/geospatial/tests/widgets/geomap.tid +54 -0
  791. package/plugins/tiddlywiki/geospatial/widgets/geobaselayer.js +17 -0
  792. package/plugins/tiddlywiki/geospatial/widgets/geolayer.js +17 -0
  793. package/plugins/tiddlywiki/geospatial/widgets/geomap.js +301 -0
  794. package/plugins/tiddlywiki/github-fork-ribbon/plugin.info +2 -1
  795. package/plugins/tiddlywiki/github-fork-ribbon/readme.tid +2 -4
  796. package/plugins/tiddlywiki/github-fork-ribbon/styles.tid +10 -11
  797. package/plugins/tiddlywiki/github-fork-ribbon/template.tid +26 -0
  798. package/plugins/tiddlywiki/github-fork-ribbon/usage.tid +79 -24
  799. package/plugins/tiddlywiki/googleanalytics/plugin.info +2 -1
  800. package/plugins/tiddlywiki/hammerjs/plugin.info +2 -1
  801. package/plugins/tiddlywiki/help/plugin.info +2 -1
  802. package/plugins/tiddlywiki/highlight/files/tiddlywiki.files +0 -1
  803. package/plugins/tiddlywiki/highlight/plugin.info +2 -1
  804. package/plugins/tiddlywiki/highlight-legacy/plugin.info +2 -1
  805. package/plugins/tiddlywiki/innerwiki/anchor.js +17 -0
  806. package/plugins/tiddlywiki/innerwiki/innerwiki.js +6 -66
  807. package/plugins/tiddlywiki/innerwiki/plugin.info +2 -1
  808. package/plugins/tiddlywiki/internals/plugin.info +2 -1
  809. package/plugins/tiddlywiki/jasmine/plugin.info +2 -1
  810. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +21 -18
  811. package/plugins/tiddlywiki/jszip/plugin.info +2 -1
  812. package/plugins/tiddlywiki/katex/plugin.info +2 -1
  813. package/plugins/tiddlywiki/markdown/plugin.info +2 -1
  814. package/plugins/tiddlywiki/markdown-legacy/plugin.info +2 -1
  815. package/plugins/tiddlywiki/menubar/items/pagecontrols.tid +9 -10
  816. package/plugins/tiddlywiki/menubar/plugin.info +2 -1
  817. package/plugins/tiddlywiki/mobiledragdrop/plugin.info +2 -1
  818. package/plugins/tiddlywiki/nodewebkitsaver/plugin.info +2 -1
  819. package/plugins/tiddlywiki/pluginlibrary/plugin.info +2 -1
  820. package/plugins/tiddlywiki/powered-by-tiddlywiki/plugin.info +2 -1
  821. package/plugins/tiddlywiki/qrcode/plugin.info +2 -1
  822. package/plugins/tiddlywiki/railroad/plugin.info +2 -1
  823. package/plugins/tiddlywiki/savetrail/plugin.info +2 -1
  824. package/plugins/tiddlywiki/sax/plugin.info +2 -1
  825. package/plugins/tiddlywiki/share/plugin.info +2 -1
  826. package/plugins/tiddlywiki/stacked-view/plugin.info +2 -1
  827. package/plugins/tiddlywiki/tahoelafs/plugin.info +2 -1
  828. package/plugins/tiddlywiki/text-slicer/plugin.info +2 -1
  829. package/plugins/tiddlywiki/tiddlyweb/plugin.info +2 -1
  830. package/plugins/tiddlywiki/tour/config-AutoStartTour.tid +2 -0
  831. package/plugins/tiddlywiki/tour/config-CurrentTour.tid +2 -0
  832. package/plugins/tiddlywiki/tour/config-DefaultColourMappings.multids +31 -0
  833. package/plugins/tiddlywiki/tour/config-ShowTour.tid +2 -0
  834. package/plugins/tiddlywiki/tour/docs.tid +25 -0
  835. package/plugins/tiddlywiki/tour/images/tour-button-icon.tid +9 -0
  836. package/plugins/tiddlywiki/tour/plugin.info +8 -0
  837. package/plugins/tiddlywiki/tour/readme.tid +3 -0
  838. package/plugins/tiddlywiki/tour/settings.tid +154 -0
  839. package/plugins/tiddlywiki/tour/simplified-tiddler-with-tags.tid +106 -0
  840. package/plugins/tiddlywiki/tour/simplified-tiddler.tid +22 -0
  841. package/plugins/tiddlywiki/tour/start-tour-button.tid +18 -0
  842. package/plugins/tiddlywiki/tour/startup-actions.tid +7 -0
  843. package/plugins/tiddlywiki/tour/styles.tid +261 -0
  844. package/plugins/tiddlywiki/tour/tour-panel.tid +104 -0
  845. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/config/ProductName.tid +2 -0
  846. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-GasGiant.tid +4 -0
  847. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-Jupiter.tid +5 -0
  848. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-Mars.tid +5 -0
  849. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-Planet.tid +4 -0
  850. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-Rocky.tid +4 -0
  851. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/data/tiddlers-Saturn.tid +5 -0
  852. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/images/tiddlywiki-tour-logo.svg +28 -0
  853. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/images/tiddlywiki-tour-logo.svg.meta +2 -0
  854. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/introduction-to-tiddlywiki.tid +8 -0
  855. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/settings.tid +4 -0
  856. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/close-control-panel.tid +9 -0
  857. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/closing-tiddlers.tid +25 -0
  858. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/create-tiddler.tid +11 -0
  859. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/end-of-fullscreen.tid +10 -0
  860. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/finished.tid +13 -0
  861. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/links.tid +23 -0
  862. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/open-control-panel.tid +9 -0
  863. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/recent.tid +9 -0
  864. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/search.tid +9 -0
  865. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/tags.tid +26 -0
  866. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/tiddlers.tid +16 -0
  867. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/steps/welcome.tid +10 -0
  868. package/plugins/tiddlywiki/tour/tours/introduction-to-tiddlywiki/tagsTourIntroductionToTiddlyWiki.tid +2 -0
  869. package/plugins/tiddlywiki/tour/variables.tid +104 -0
  870. package/plugins/tiddlywiki/translators/plugin.info +2 -1
  871. package/plugins/tiddlywiki/tw2parser/plugin.info +2 -1
  872. package/plugins/tiddlywiki/tw5.com-docs/plugin.info +2 -1
  873. package/plugins/tiddlywiki/tw5.com-docs/readme.tid +7 -0
  874. package/plugins/tiddlywiki/twitter/plugin.info +2 -1
  875. package/plugins/tiddlywiki/twitter-archivist/plugin.info +2 -1
  876. package/plugins/tiddlywiki/upgrade/plugin.info +2 -1
  877. package/plugins/tiddlywiki/xlsx-utils/plugin.info +2 -1
  878. package/plugins/tiddlywiki/xmldom/plugin.info +2 -1
  879. package/readme.md +6 -6
  880. package/themes/tiddlywiki/vanilla/base.tid +212 -9
  881. package/themes/tiddlywiki/vanilla/reset.tid +61 -85
  882. package/boot/sjcl.js.meta +0 -3
  883. package/core/modules/indexers/backlinks-index.js +0 -86
  884. package/editions/es-ES/tiddlers/$__StoryList.tid +0 -6
  885. package/editions/tw.org/tiddlers/$__StoryList.tid +0 -3
  886. package/editions/tw5.com/tiddlers/$__StoryList.tid +0 -5
  887. package/plugins/tiddlywiki/innerwiki/data.js +0 -58
  888. /package/editions/fr-FR/tiddlers/community/editions/{_Noteself_ by Danielo Rodr/303/255guez.tid" → _Noteself_ by Danielo Rodriguez.tid} +0 -0
  889. /package/editions/test/tiddlers/tests/data/macros/{NestedMacros-indented.tid → nested-macros/NestedMacros-indented.tid} +0 -0
  890. /package/editions/test/tiddlers/tests/data/macros/{NestedMacros-indented2.tid → nested-macros/NestedMacros-indented2.tid} +0 -0
  891. /package/editions/test/tiddlers/tests/data/macros/{NestedMacros.tid → nested-macros/NestedMacros.tid} +0 -0
  892. /package/editions/test/tiddlers/tests/data/macros/{TrailingNewlines.tid → trailing-newlines/TrailingNewlines.tid} +0 -0
  893. /package/editions/tw5.com/tiddlers/{Tables in WikiText CSS Utility Classes.tid → wikitext/Tables in WikiText CSS Utility Classes.tid} +0 -0
@@ -0,0 +1,106 @@
1
+ title: $:/plugins/tiddlywiki/tour/simplified-tiddler-with-tags
2
+
3
+ \whitespace trim
4
+ \define tag-pill-styles()
5
+ background-color:$(backgroundColor)$;
6
+ fill:$(foregroundColor)$;
7
+ color:$(foregroundColor)$;
8
+ \end
9
+
10
+ \procedure tag-pill-label(prefix)
11
+ <$text text={{{ [<currentTiddler>removeprefix<prefix>] }}}/>
12
+ \end
13
+
14
+ \procedure tag-pill-label-link(prefix)
15
+ <div>
16
+ <$link>
17
+ <$transclude $variable="tag-pill-label" prefix=<<prefix>>/>
18
+ </$link>
19
+ </div>
20
+ \end
21
+
22
+ <!-- This has no whitespace trim to avoid modifying $actions$. Closing tags omitted for brevity. -->
23
+ \define tag-pill-inner(tag,icon,colour,fallbackTarget,colourA,colourB,element-tag,element-attributes,actions,prefix)
24
+ \whitespace trim
25
+ <$let
26
+ foregroundColor=<<contrastcolour target:"""$colour$""" fallbackTarget:"""$fallbackTarget$""" colourA:"""$colourA$""" colourB:"""$colourB$""">>
27
+ backgroundColor=<<__colour__>>
28
+ >
29
+ <$element-tag$
30
+ $element-attributes$
31
+ class="tc-tag-label tc-btn-invisible"
32
+ style=<<tag-pill-styles>>
33
+ >
34
+ <<__actions__>>
35
+ <$transclude tiddler=<<__icon__>>/>
36
+ <$let currentTiddler=<<__tag__>>>
37
+ <$transclude $variable="tag-pill-label" prefix=<<__prefix__>>/>
38
+ </$let>
39
+ </$element-tag$>
40
+ </$let>
41
+ \end
42
+
43
+ \define tag-pill-body(tag,icon,colour,palette,element-tag,element-attributes,actions,prefix)
44
+ <$transclude $variable="tag-pill-inner"
45
+ tag=<<__tag__>>
46
+ icon=<<__icon__>>
47
+ colour=<<__colour__>>
48
+ fallbackTarget={{$palette$##tag-background}}
49
+ colourA={{$palette$##foreground}}
50
+ colourB={{$palette$##background}}
51
+ element-tag=<<__element-tag__>>
52
+ element-attributes=<<__element-attributes__>>
53
+ actions=<<__actions__>>
54
+ prefix=<<__prefix__>>
55
+ />
56
+ \end
57
+
58
+ \procedure simplified-tag(prefix)
59
+ <span class="tc-tag-list-item" data-tag-title=<<currentTiddler>>>
60
+ <$set name="transclusion" value=<<currentTiddler>>>
61
+ <$transclude $variable="tag-pill-body"
62
+ tag=<<currentTiddler>>
63
+ icon={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerIconFilter]!is[draft]get[text]] }}}
64
+ colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}
65
+ palette={{$:/palette}}
66
+ element-tag="$button"
67
+ element-attributes="""popup=<<qualify "$:/state/popup/tag">> dragFilter="[all[current]tagging[]]" tag='span'"""
68
+ prefix=<<prefix>>
69
+ />
70
+ <$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes" class="tc-drop-down">
71
+ <$set name="tv-show-missing-links" value="yes">
72
+ <$transclude $variable="tag-pill-label-link" prefix=<<prefix>>/>
73
+ </$set>
74
+ <hr>
75
+ <$list filter="[all[shadows+tiddlers]tag<currentTiddler>]">
76
+ <$transclude $variable="tag-pill-label-link" prefix=<<prefix>>/>
77
+ </$list>
78
+ </$reveal>
79
+ </$set>
80
+ </span>
81
+ \end
82
+
83
+ <$let storyTiddler=<<currentTiddler>>>
84
+ <div class="tc-tiddler-frame tc-tiddler-view-frame tc-tiddler-exists tc-tiddler-shadow " role="article">
85
+ <div class="tc-tiddler-title">
86
+ <div class="tc-titlebar">
87
+ <span class="tc-tiddler-controls">
88
+ <$list filter="[<tour-simplified-tiddler-close-button>match[yes]]" variable="ignore">
89
+ {{||$:/core/ui/Buttons/close}}
90
+ </$list>
91
+ </span>
92
+ <span>
93
+ <h2 class="tc-title"><$view field="caption"/></h2>
94
+ </span>
95
+ </div>
96
+ </div>
97
+ <div class="tc-tags-wrapper">
98
+ <$list filter="[all[current]tags[]sort[title]]" storyview="pop">
99
+ <<simplified-tag "$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/">>
100
+ </$list>
101
+ </div>
102
+ <div class="tc-tiddler-body">
103
+ <$transclude field="text" mode="block"/>
104
+ </div>
105
+ </div>
106
+ </$let>
@@ -0,0 +1,22 @@
1
+ title: $:/plugins/tiddlywiki/tour/simplified-tiddler
2
+
3
+ \whitespace trim
4
+ <$let storyTiddler=<<currentTiddler>>>
5
+ <div class="tc-tiddler-frame tc-tiddler-view-frame tc-tiddler-exists tc-tiddler-shadow " role="article">
6
+ <div class="tc-tiddler-title">
7
+ <div class="tc-titlebar">
8
+ <span class="tc-tiddler-controls">
9
+ <$list filter="[<tour-simplified-tiddler-close-button>match[yes]]" variable="ignore">
10
+ {{||$:/core/ui/Buttons/close}}
11
+ </$list>
12
+ </span>
13
+ <span>
14
+ <h2 class="tc-title"><$view field="caption"/></h2>
15
+ </span>
16
+ </div>
17
+ </div>
18
+ <div class="tc-tiddler-body">
19
+ <$transclude field="text" mode="block"/>
20
+ </div>
21
+ </div>
22
+ </$let>
@@ -0,0 +1,18 @@
1
+ title: $:/plugins/tiddlywiki/tour/start-tour-button
2
+ tags: $:/tags/PageControls
3
+ caption: {{$:/plugins/tiddlywiki/tour/tour-button-icon}} Start Tour
4
+ description: Start interactive training tour
5
+
6
+ \whitespace trim
7
+ \import [[$:/plugins/tiddlywiki/tour/variables]]
8
+ <$button tooltip="Start interactive training tour" aria-label="Start Tour" class=<<tv-config-toolbar-class>>>
9
+ <<tour-restart>>
10
+ <$list filter="[<tv-config-toolbar-icons>match[yes]]" variable="listItem">
11
+ {{$:/plugins/tiddlywiki/tour/tour-button-icon}}
12
+ </$list>
13
+ <$list filter="[<tv-config-toolbar-text>match[yes]]">
14
+ <span class="tc-btn-text">
15
+ <$text text="Start Tour"/>
16
+ </span>
17
+ </$list>
18
+ </$button>
@@ -0,0 +1,7 @@
1
+ title: $:/plugins/tiddlywiki/tour/startup-actions
2
+ tags: $:/tags/StartupAction
3
+
4
+ \import [[$:/plugins/tiddlywiki/tour/variables]]
5
+ <$list filter="[[$:/config/AutoStartTour]get[text]else[no]match[yes]]" variable="ignore">
6
+ <<tour-restart>>
7
+ </$list>
@@ -0,0 +1,261 @@
1
+ title: $:/plugins/tiddlywiki/tour/styles
2
+ tags: $:/tags/Stylesheet
3
+
4
+ \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock
5
+
6
+ .tc-tour-panel {
7
+ position: fixed;
8
+ bottom: 0;
9
+ left: 0;
10
+ width: 310px;
11
+ height: 400px;
12
+ overflow: auto;
13
+ -webkit-overflow-scrolling: touch;
14
+ <<box-shadow "0px 0px 5px rgba(0, 0, 0, 0.3)">>
15
+ border: 1px solid <<colour tour-overlay-border>>;
16
+ background: <<colour tour-overlay-background>>;
17
+ border-radius: 8px;
18
+ padding: 1em;
19
+ margin: 0.5em;
20
+ z-index: 2000;
21
+ }
22
+
23
+ .tc-tour-panel-navigation .tc-btn-big-green {
24
+ border-radius: 0.25em;
25
+ margin: 0 1em 0 0;
26
+ }
27
+
28
+ .tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-back {
29
+ background: <<colour tour-navigation-buttons-back-background>>;
30
+ color: <<colour tour-navigation-buttons-back-foreground>>;
31
+ }
32
+
33
+ .tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-next {
34
+ background: <<colour tour-navigation-buttons-next-background>>;
35
+ color: <<colour tour-navigation-buttons-next-foreground>>;
36
+ }
37
+
38
+ .tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-hint {
39
+ background: <<colour tour-navigation-buttons-hint-background>>;
40
+ color: <<colour tour-navigation-buttons-hint-foreground>>;
41
+ }
42
+
43
+ .tc-tour-panel-navigation .tc-btn-big-green:hover {
44
+ color: <<colour tour-navigation-buttons-hover-foreground>>;
45
+ background: <<colour tour-navigation-buttons-hover-background>>;
46
+ }
47
+
48
+ .tc-tour-panel-fullscreen {
49
+ top: 0;
50
+ right: 0;
51
+ width: auto;
52
+ height: auto;
53
+ box-shadow: none;
54
+ border: none;
55
+ background: <<colour tour-fullscreen-background>>;
56
+ margin: 0;
57
+ border-radius: 0;
58
+ }
59
+
60
+ .tc-tour-panel-controls .tc-tour-panel-list-button {
61
+ padding: 2px 8px;
62
+ border-radius: 1em;
63
+ color: <<color tour-chooser-button-foreground>>;
64
+ text-align: left;
65
+ }
66
+
67
+ .tc-tour-panel-controls .tc-tour-panel-list-button.tc-selected {
68
+ color: <<colour tour-chooser-button-selected-foreground>>;
69
+ fill: <<colour tour-chooser-button-selected-foreground>>;
70
+ background: <<color tour-chooser-button-selected-background>>;
71
+ }
72
+
73
+ .tc-tour-panel-controls .tc-tour-panel-list-button:hover {
74
+ background: <<colour tour-chooser-button-hover-background>>;
75
+ color: <<colour tour-chooser-button-hover-foreground>>;
76
+ }
77
+
78
+ .tc-tour-panel-controls .tc-popup .tc-drop-down {
79
+ font-size: 1em;
80
+ color: <<colour tour-chooser-dropdown-foreground>>;
81
+ min-width: auto;
82
+ }
83
+
84
+ .tc-tour-panel-chooser-item {
85
+ border: 1px solid <<colour tour-chooser-item-border>>;
86
+ background: <<colour tour-chooser-item-background>>;
87
+ color: <<colour tour-chooser-item-foreground>>;
88
+ padding: 4px 4px 4px 8px;
89
+ margin: 12px 0;
90
+ border-radius: 12px;
91
+ box-shadow: 3px 3px 5px <<colour tour-chooser-item-shadow>>;
92
+ display: flex;
93
+ flex-direction: row;
94
+ justify-content: space-between;
95
+ gap: 1em;
96
+ }
97
+
98
+ .tc-tour-panel-chooser-item .tc-tour-panel-chooser-start-button {
99
+ display: inline-block;
100
+ width: auto;
101
+ padding: 4px;
102
+ font-size: 0.7em;
103
+ vertical-align: baseline;
104
+ border-radius: 1em;
105
+ background: <<colour tour-chooser-item-start-background>>;
106
+ color: <<colour tour-chooser-item-start-foreground>>;
107
+ fill: <<colour tour-chooser-item-start-foreground>>;
108
+ text-transform: uppercase;
109
+ }
110
+
111
+ .tc-tour-panel-chooser-wrapper button:hover {
112
+ background: <<colour tour-chooser-item-start-hover-background>>;
113
+ color: <<colour tour-chooser-item-start-hover-foreground>>;
114
+ }
115
+
116
+ .tc-tour-panel-fullscreen h1 {
117
+ background: <<colour tour-step-heading-background>>;
118
+ padding: 0.25em;
119
+ margin: -0.25em;
120
+ border-radius: 4px;
121
+ }
122
+
123
+ .tc-tour-panel-fullscreen .tc-tour-panel-controls {
124
+ /* display: none; */
125
+ position: fixed;
126
+ top: 0;
127
+ left: 0;
128
+ right: 0;
129
+ padding: 4px;
130
+ color: <<colour tour-fullscreen-controls-foreground>>;
131
+ }
132
+
133
+ .tc-tour-panel .tc-tour-panel-banner-image {
134
+ display: none;
135
+ }
136
+
137
+ .tc-tour-panel-fullscreen .tc-tour-panel-banner-image {
138
+ display: block;
139
+ width: 100px;
140
+ float: right;
141
+ margin: 4em 2em 2em 2em;
142
+ }
143
+
144
+ .tc-tour-panel-fullscreen .tc-tour-panel-inner {
145
+ width: 30%;
146
+ min-width: 350px;
147
+ height: 30%;
148
+ margin: 10em auto 0 auto;
149
+ }
150
+
151
+ .tc-tour-panel .tc-tour-panel-inner .tc-tiddler-frame {
152
+ width: auto;
153
+ padding: 1.5em 2.5em;
154
+ }
155
+
156
+ .tc-tour-panel .tc-tour-panel-inner .tc-tiddler-frame .tc-titlebar {
157
+ font-size: 1.5em;
158
+ line-height: 1.1;
159
+ }
160
+
161
+ .tc-tour-task {
162
+ background: <<colour tour-step-task-background>>;
163
+ color: <<colour tour-step-task-foreground>>;
164
+ padding: 0.5em;
165
+ border-radius: 1em;
166
+ }
167
+
168
+ .tc-tour-task svg {
169
+ fill: <<colour tour-step-task-foreground>>;
170
+ vertical-align: middle;
171
+ width: 1.2em;
172
+ height: 1.2em;
173
+ margin-right: 0.5em;
174
+ }
175
+
176
+ .tc-tour-settings-tour-details,
177
+ .tc-tour-settings-tour-step-details {
178
+ width: 100%;
179
+ }
180
+
181
+ .tc-tour-settings-tour-details th,
182
+ .tc-tour-settings-tour-step-details th {
183
+ text-align: right;
184
+ vertical-align: top;
185
+ font-weight: normal;
186
+ width:10em;
187
+ }
188
+
189
+ .tc-tour-settings-tour-details td,
190
+ .tc-tour-settings-tour-step-details td {
191
+ font-weight: bold;
192
+ }
193
+
194
+ .tc-tour-settings-tour-details-description {
195
+
196
+ }
197
+
198
+ .tc-tour-settings-tour-details-logo img {
199
+ max-width: 200px;
200
+ max-height: 100px;
201
+ }
202
+
203
+ .tc-tour-settings-tour-settings {
204
+ border: 1px solid <<colour muted-foreground>>;
205
+ margin: 0.5em 0;
206
+ padding: 0.5em;
207
+ }
208
+
209
+ .tc-tour-settings-tour-step {
210
+ border: 1px solid <<colour foreground>>;
211
+ }
212
+
213
+ .tc-tour-settings-tour-step-heading {
214
+ background: <<colour muted-foreground>>;
215
+ border: 0;
216
+ display: flex;
217
+ flex-wrap: nowrap;
218
+ justify-content: space-between;
219
+ align-items: center;
220
+ gap: 5px;
221
+ }
222
+
223
+ .tc-tour-settings-tour-step-open-button,
224
+ .tc-tour-settings-tour-step-launch-button {
225
+ display: inline-block;
226
+ padding: 0.25em;
227
+ }
228
+
229
+ .tc-tour-settings-tour-step-open-button {
230
+ flex-grow: 1;
231
+ text-align: left;
232
+ }
233
+
234
+ .tc-tour-settings-tour-step-launch-button {
235
+ flex-grow: 0;
236
+ }
237
+
238
+ .tc-tour-settings-tour-step-open-button:hover,
239
+ .tc-tour-settings-tour-step-launch-button:hover {
240
+ background: <<colour foreground>>;
241
+ color: <<colour background>>;
242
+ fill: <<colour background>>;
243
+ }
244
+
245
+ .tc-tour-settings-tour-step-heading-step-number {
246
+ font-weight: bold;
247
+ background: <<colour foreground>>;
248
+ color: <<colour background>>;
249
+ border-radius: 1em;
250
+ font-size: 0.9em;
251
+ display: inline-block;
252
+ padding: 0 4px;
253
+ }
254
+
255
+ .tc-tour-settings-tour-step-details {
256
+ margin: 0;
257
+ }
258
+
259
+ .tc-tour-settings-tour-step-body {
260
+ padding: 0.5em;
261
+ }
@@ -0,0 +1,104 @@
1
+ title: $:/plugins/tiddlywiki/tour/panel
2
+ tags: $:/tags/PageTemplate
3
+
4
+ \whitespace trim
5
+
6
+ \procedure tour-buttons()
7
+ \procedure tv-action-refresh-policy() always
8
+ <div class="tc-tour-panel-navigation">
9
+ <%if [function[tour-is-not-first-step]] %>
10
+ <$button class="tc-btn-big-green tc-tour-panel-navigation-back">
11
+ <<tour-previous-step>>
12
+ back
13
+ </$button>
14
+ <%endif%>
15
+ <%if [function[tour-is-not-last-step]] %>
16
+ <$button class="tc-btn-big-green tc-tour-panel-navigation-next">
17
+ <<tour-next-step>>
18
+ next
19
+ </$button>
20
+ <%endif%>
21
+ <%if [function[tour-is-last-step]] %>
22
+ <$confetti/>
23
+ <$confetti delay=300 originY=0.6 spread=100 scalar=1.5/>
24
+ <$confetti delay=400 originY=0.55 spread=130/>
25
+ <$confetti delay=500 originY=0.55 spread=170 scalar=2/>
26
+ <%endif%>
27
+ </div>
28
+ \end
29
+
30
+ \procedure tour-step-no-success-filter()
31
+ <$transclude tiddler=<<currentTourStep>> mode="block"/>
32
+ <<tour-buttons>>
33
+ \end tour-step-no-success-filter
34
+
35
+ \procedure tour-step-success-filter-not-satisfied()
36
+ <$transclude tiddler=<<currentTourStep>> mode="block"/>
37
+ <%if [{$:/state/tour/step}has[hint-selector]] %>
38
+ <div class="tc-tour-panel-navigation">
39
+ <$button class="tc-btn-big-green tc-tour-panel-navigation-hint">
40
+ <$action-sendmessage $message="tm-spotlight-element" selector={{{ [{$:/state/tour/step}get[hint-selector]] }}} selector-fallback-1={{{ [{$:/state/tour/step}get[hint-selector-fallback-1]] }}} selector-fallback-2={{{ [{$:/state/tour/step}get[hint-selector-fallback-2]] }}}/>
41
+ <$transclude tiddler={{$:/state/tour/step}} field="hint-text" mode="inline"> show me a hint </$transclude>
42
+ </$button>
43
+ </div>
44
+ <%endif%>
45
+ \end tour-step-success-filter-not-satisfied
46
+
47
+ \procedure tour-step-success-filter-satisfied()
48
+ <$let tour-task="">
49
+ <$transclude tiddler=<<currentTourStep>> mode="block"/>
50
+ </$let>
51
+ <$confetti/>
52
+ <p>
53
+ Congratulations, you may proceed
54
+ </p>
55
+ <<tour-buttons>>
56
+ \end tour-step-success-filter-satisfied
57
+ \import [[$:/plugins/tiddlywiki/tour/variables]]
58
+
59
+ <%if [{$:/config/ShowTour}!is[blank]else[show]match[show]] %>
60
+ <div class=`tc-tour-panel tc-tour-panel-${ [{$:/state/tour/step}get[display-mode]else[normal]] }$ ${ [{$:/config/CurrentTour}get[class]] }$`>
61
+ <$image class="tc-tour-panel-banner-image" source={{{ [{$:/config/CurrentTour}get[logo]] }}}/>
62
+ <div class="tc-tour-panel-inner">
63
+ <div class="tc-tiddler-controls tc-tour-panel-controls">
64
+ <$button set="$:/config/ShowTour" setTo="no" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button>
65
+ <$button popup=<<qualify "$:/state/popup/tour-dropdown">> class="tc-btn-invisible tc-tour-panel-list-button" selectedClass="tc-selected">
66
+ <span class="tc-small-gap-right">''Tour'':</span> <<tour-display-current-tour>>
67
+ </$button>
68
+ <$reveal state=<<qualify "$:/state/popup/tour-dropdown">> type="popup" position="belowleft" animate="yes" tag="div">
69
+ <div class="tc-drop-down">
70
+ <p>
71
+ Choose a tour:
72
+ </p>
73
+ <p>
74
+ <<tour-chooser>>
75
+ </p>
76
+ </div>
77
+ </$reveal>
78
+ </div>
79
+ <$let
80
+ currentTour={{$:/config/CurrentTour}}
81
+ currentTourStep={{$:/state/tour/step}}
82
+ step-success-filter-var={{{ [<currentTourStep>get[step-success-filter-var]] :map[subfilter<currentTiddler>] }}}
83
+ >
84
+ <%if [<currentTourStep>has[caption]] %>
85
+ <h1><$transclude $tiddler=<<currentTourStep>> $field="caption" mode="inline"/></h1>
86
+ <%endif%>
87
+ <!-- Handle steps without a step-success-filter -->
88
+ <%if [<currentTourStep>!has[step-success-filter]] %>
89
+ <<tour-step-no-success-filter>>
90
+ <%endif%>
91
+ <!-- Handle steps that have a step-success-filter -->
92
+ <%if [<currentTourStep>has[step-success-filter]] %>
93
+ <$let step-success-filter={{{ [<currentTourStep>get[step-success-filter]] }}}>
94
+ <%if [subfilter<step-success-filter>] %>
95
+ <<tour-step-success-filter-satisfied>>
96
+ <%else%>
97
+ <<tour-step-success-filter-not-satisfied>>
98
+ <%endif%>
99
+ </$let>
100
+ <%endif%>
101
+ </$let>
102
+ </div>
103
+ </div>
104
+ <%endif%>
@@ -0,0 +1,2 @@
1
+ title: $:/config/Tours/IntroductionToTiddlyWiki/ProductName
2
+ text: ~TiddlyWiki
@@ -0,0 +1,4 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Gas Giant
2
+ caption: Gas Giant
3
+
4
+ A gas giant is a large planet that has a solid core, but a very thick atmosphere. This means that most of the planet is made up of gas. These planets are very large.
@@ -0,0 +1,5 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Jupiter
2
+ caption: Jupiter
3
+ tags: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Planet [[$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Gas Giant]]
4
+
5
+ Jupiter is the largest planet in the Solar System. It is the fifth planet from the Sun. Jupiter is a gas giant because it is so large and made of gas. The other gas giants in the Solar System are [[Saturn|$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Saturn]], Uranus, and Neptune.
@@ -0,0 +1,5 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Mars
2
+ caption: Mars
3
+ tags: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Planet [[$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Rocky]]
4
+
5
+ Mars is the fourth planet from the Sun in the Solar System and the second-smallest planet. Mars is a terrestrial planet with polar ice caps of frozen water and carbon dioxide. It has the largest volcano in the Solar System, and some very large impact craters. Mars is named after the mythological Roman god of war because it appears of red color.
@@ -0,0 +1,4 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Planet
2
+ caption: Planet
3
+
4
+ A planet is a large object such as Venus or Earth that orbits a star. Planets are smaller than stars, and they do not make light. Jupiter is the biggest planet in the Solar System, while the smallest planet in the Solar System is Mercury.
@@ -0,0 +1,4 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Rocky
2
+ caption: Rocky
3
+
4
+ Rocky planets have a core, a mantle, and a crust. They are a bit like a boiled egg: the central yolk is the core; the white albumin is the mantle; and the shell is the crust. The crust of a terrestrial planet is thin, with the core and the mantle taking up the vast bulk, sometimes with a very large core, sometimes much smaller. Terrestrial planets have metallic cores of mostly iron, with rocky mantles and crusts.
@@ -0,0 +1,5 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Saturn
2
+ caption: Saturn
3
+ tags: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Planet [[$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Gas Giant]]
4
+
5
+ Saturn is the sixth planet from the Sun located in the Solar System. It is the second largest planet in the Solar System, after Jupiter. Saturn is one of the four gas giant planets in the Solar System, along with [[Jupiter|$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Jupiter]], Uranus, and Neptune.
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="100%" height="100%" viewBox="0 0 500 335" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
4
+ <g transform="matrix(0.488281,0,0,0.436198,0,0)">
5
+ <rect id="Artboard1" x="0" y="0" width="1024" height="768" style="fill:none;"/>
6
+ <clipPath id="_clip1">
7
+ <rect id="Artboard11" serif:id="Artboard1" x="0" y="0" width="1024" height="768"/>
8
+ </clipPath>
9
+ <g clip-path="url(#_clip1)">
10
+ <g transform="matrix(3.66495,0,0,4.10256,0,0.218772)">
11
+ <g transform="matrix(1,0,0,1,-59.5095,-391.468)">
12
+ <path d="M320.725,420.421C326.96,417.788 332.843,414.256 338.913,411.253C338.882,411.406 338.722,411.458 338.626,411.561C328.964,419.375 327.614,432.589 328.751,444.808C329.174,451.149 327.382,458.033 325.167,464.525C321.022,475.102 313.017,486.251 303.726,485.68C300.214,485.568 298.174,483.58 295.563,481.456C295.057,485.757 293.067,489.595 291.148,493.398C286.718,501.831 275.14,505.548 264.419,514.553C253.699,523.558 267.849,555.718 271.28,561.578C274.711,567.439 284.287,569.583 280.571,574.872C279.434,576.618 277.696,577.243 275.838,577.921L273.318,578.249C262.308,577.938 257.466,577.965 251.859,568.744L247.489,568.87C242.402,568.644 244.522,568.746 241.129,568.577C235.455,568.356 236.364,562.965 235.366,560.117C233.769,550.449 237.478,540.73 237.361,531.06C237.32,527.627 232.462,515.476 230.727,511.132C225.287,512.156 219.817,512.351 214.298,512.626C201.576,512.595 188.94,511.037 176.396,509.059C173.952,519.157 166.686,533.291 172.692,543.554C179.982,554.17 185.098,557.111 193.028,557.751C200.957,558.39 202.748,567.343 200.829,570.541C199.131,572.751 196.147,573.152 193.611,573.687L188.539,573.925C184.548,573.791 180.98,572.714 177.424,571.052C171.485,567.736 165.351,560.844 160.793,555.895C161.854,557.871 162.487,561.729 161.525,563.524C158.83,567.341 147.176,567.318 141.839,564.946C135.776,562.252 121.125,543.335 118.86,529.168C124.886,517.772 133.665,507.845 138.106,495.437C128.425,489.26 123.24,479.204 123.913,467.813L124.156,466.494C114.631,468.277 119.57,467.614 109.323,468.389C76.689,468.289 47.99,446.162 64.15,411.773C65.201,409.737 66.201,407.885 67.982,408.77C69.412,409.479 69.207,412.325 68.487,415.481C59.25,456.572 104.396,456.886 132.149,449.282C134.903,448.528 140.381,443.444 144.176,441.759C150.379,439.004 157.111,437.887 163.793,437.082C180.411,435.188 200.384,443.943 210.533,444.228C220.681,444.514 235.118,441.798 243.98,442.37C250.41,442.664 256.724,443.825 262.928,445.478C266.944,425.911 267.228,411.489 276.748,408.151C281.18,408.851 284.806,413.787 287.706,417.829L287.706,423.746C287.706,428.653 295.104,432.636 304.216,432.636C313.328,432.636 320.725,428.653 320.725,423.746L320.725,420.421ZM151.046,554.19L152.645,554.662C154.654,553.763 158.693,555.152 160.836,555.832C156.89,551.458 150.947,545.035 146.664,540.986C145.259,536.084 145.859,531.152 146.161,526.148L146.222,525.734C144.534,529.74 142.391,533.634 141.24,537.85C139.893,543.539 147.228,549.677 150.073,553.194L151.046,554.19Z"/>
13
+ </g>
14
+ <g transform="matrix(2.12347,0,0,2.12347,219.225,-7.42467)">
15
+ <g transform="matrix(1,0,0,0.666667,-0.185118,3.43957)">
16
+ <path d="M0.667,9.362C0.576,9.293 0.518,9.153 0.518,9C0.518,8.847 0.576,8.707 0.667,8.638C2.756,7.072 10.971,0.911 12.065,0.09C12.14,0.033 12.23,0.033 12.306,0.09C13.399,0.911 21.614,7.072 23.703,8.638C23.794,8.707 23.852,8.847 23.852,9C23.852,9.153 23.794,9.293 23.703,9.362C21.614,10.928 13.399,17.089 12.306,17.91C12.23,17.967 12.14,17.967 12.065,17.91C10.971,17.089 2.756,10.928 0.667,9.362Z"/>
17
+ </g>
18
+ <g transform="matrix(1,0,0,1,1.77636e-15,4.43957)">
19
+ <path d="M18.5,8.75L18.5,13.744C18.5,15.675 15.587,17.244 12,17.244C8.413,17.244 5.5,15.675 5.5,13.744L5.5,8.75L11.951,11.975C11.982,11.991 12.018,11.991 12.049,11.975L18.5,8.75Z"/>
20
+ </g>
21
+ <g transform="matrix(1,0,0,0.648293,19.2746,5.5086)">
22
+ <path d="M2,6L2.207,11L1.526,14C1.526,14 1.524,14.709 2.5,14.717C3.421,14.724 3.5,14 3.5,14L2.707,11L3,6L2,6Z"/>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,2 @@
1
+ title: $:/plugins/tiddlywiki/tour/tiddlywiki-tour-logo
2
+ type: image/svg+xml
@@ -0,0 +1,8 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki
2
+ tags: $:/tags/Tour
3
+ tour-tag: $:/tags/Tour/IntroductionToTiddlyWiki
4
+ logo: $:/plugins/tiddlywiki/tour/tiddlywiki-tour-logo
5
+ description: Introduction to {{$:/config/Tours/IntroductionToTiddlyWiki/ProductName}}
6
+ settings: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/settings
7
+
8
+ An introductory tour to {{$:/config/Tours/IntroductionToTiddlyWiki/ProductName}}
@@ -0,0 +1,4 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/settings
2
+
3
+ Customise name used for ~TiddlyWiki: <$edit tiddler="$:/config/Tours/IntroductionToTiddlyWiki/ProductName" tag="input"/>
4
+
@@ -0,0 +1,9 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/steps/close-control-panel
2
+ caption: Close the control panel
3
+ tags: $:/tags/Tour/IntroductionToTiddlyWiki
4
+ hint-selector: .tc-story-river div[data-tiddler-title='$:/ControlPanel'] .tc-btn-\%24\%3A\%2Fcore\%2Fui\%2FButtons\%2Fclose
5
+ step-success-filter: [[$:/StoryList]!contains[$:/ControlPanel]]
6
+
7
+ <<tour-task "Now close the control panel">>
8
+
9
+ Use the {{$:/core/images/close-button|0.65em}} button in the top right corner of the control panel tiddler.
@@ -0,0 +1,25 @@
1
+ title: $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/steps/closing-tiddlers
2
+ caption: Closing tiddlers
3
+ tags: $:/tags/Tour/IntroductionToTiddlyWiki
4
+ display-mode: fullscreen
5
+ enter-actions: <$action-setfield $tiddler="$:/temp/Tour/DemoStoryList" list="$:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Jupiter $:/plugins/tiddlywiki/tour/introduction-to-tiddlywiki/tiddlers/Saturn"/>
6
+ step-success-filter: [list[$:/temp/Tour/DemoStoryList]count[]match[0]]
7
+
8
+ \procedure tour-simplified-tiddler-close-button() yes
9
+
10
+ In the top right corner of each tiddler there is a button marked {{$:/core/images/close-button|0.65em}} that can be used to close them when you are finished with them.
11
+
12
+ <<tour-task "Close both of these tiddlers">>
13
+
14
+ Closing a tiddler does not delete it or alter it in any way. It just removes it from the display.
15
+
16
+ <$navigator story="$:/temp/Tour/DemoStoryList" history="$:/temp/Tour/DemoHistoryList" openLinkFromInsideRiver="below">
17
+
18
+ <$list
19
+ filter="[list[$:/temp/Tour/DemoStoryList]]"
20
+ history="$:/temp/Tour/DemoHistoryList"
21
+ template="$:/plugins/tiddlywiki/tour/simplified-tiddler"
22
+ storyview="classic"
23
+ />
24
+
25
+ </$navigator>