tiddlywiki 5.3.7 → 5.4.0

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 (1823) hide show
  1. package/.claude/settings.json +34 -0
  2. package/.claude/settings.local.json +21 -0
  3. package/.gitattributes +4 -0
  4. package/.github/ISSUE_TEMPLATE/bug_report.md +62 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +8 -2
  6. package/.github/workflows/ci.yml +8 -8
  7. package/.github/workflows/eslint.yml +40 -0
  8. package/.github/workflows/pr-check-build-size.yml +4 -4
  9. package/.github/workflows/pr-comment-build-size.yml +1 -1
  10. package/.github/workflows/pr-validation.yml +37 -0
  11. package/bin/build-site.sh +1 -24
  12. package/bin/build-tw-org.sh +1 -1
  13. package/bin/optimise-svgs.js +32 -32
  14. package/boot/boot.js +112 -96
  15. package/boot/bootprefix.js +4 -0
  16. package/community/docs/Community Cards Caveats.tid +5 -0
  17. package/community/docs/Community Cards.tid +11 -0
  18. package/community/docs/Displaying Community Cards.tid +26 -0
  19. package/community/docs/Submitting a Community Card.tid +36 -0
  20. package/community/people/Arlen22.tid +10 -0
  21. package/community/people/ChristianByron.tid +14 -0
  22. package/community/people/EricShulman.tid +29 -0
  23. package/community/people/Jermolene.tid +21 -0
  24. package/community/people/LinOnetwo.tid +19 -0
  25. package/community/people/MotovunJack.tid +11 -0
  26. package/community/people/PMario.tid +25 -0
  27. package/community/people/SaqImtiaz.tid +16 -0
  28. package/community/people/kjharcombe.tid +7 -0
  29. package/community/project/TiddlyWiki People.tid +10 -0
  30. package/community/project/TiddlyWiki Project.tid +10 -0
  31. package/community/project/Vacant Positions.tid +4 -0
  32. package/community/project/teams/Core Team.tid +8 -0
  33. package/community/project/teams/Developer Experience Team.tid +19 -0
  34. package/community/project/teams/Infrastructure Team.tid +16 -0
  35. package/community/project/teams/MultiWikiServer Team.tid +8 -0
  36. package/community/project/teams/Project Team.tid +15 -0
  37. package/community/project/teams/Quality Assurance Team.tid +11 -0
  38. package/community/project/teams/Succession Team.tid +13 -0
  39. package/community/project/teams/TiddlyWiki Newsletter Team.tid +15 -0
  40. package/community/project/teams/tagCommunityTeam.tid +5 -0
  41. package/community/readme.md +3 -0
  42. package/community/tools/cards/DefaultColourMappings.multids +15 -0
  43. package/community/tools/cards/Procedures.tid +168 -0
  44. package/community/tools/cards/Styles.tid +158 -0
  45. package/community/tools/cards/ViewTemplateBodyCascade.tid +6 -0
  46. package/community/tools/cards/ViewTemplateBodyTemplatePerson.tid +3 -0
  47. package/community/tools/cards/ViewTemplateBodyTemplateTeam.tid +3 -0
  48. package/community/tools/icons/person.tid +7 -0
  49. package/community/tools/icons/project-team.tid +7 -0
  50. package/community/tools/icons/team.tid +9 -0
  51. package/contributing.md +1 -1
  52. package/core/acknowledgements.tid +2 -1
  53. package/core/language/en-GB/ControlPanel.multids +2 -1
  54. package/core/language/en-GB/Draft.multids +4 -0
  55. package/core/language/en-GB/Import.multids +2 -0
  56. package/core/language/en-GB/Misc.multids +1 -0
  57. package/core/language/en-GB/TiddlerInfo.multids +5 -0
  58. package/core/modules/background-actions.js +116 -0
  59. package/core/modules/editor/engines/framed.js +4 -4
  60. package/core/modules/editor/engines/simple.js +2 -1
  61. package/core/modules/editor/factory.js +11 -11
  62. package/core/modules/editor/operations/text/excise.js +1 -1
  63. package/core/modules/editor/operations/text/wrap-lines.js +1 -1
  64. package/core/modules/editor/operations/text/wrap-selection.js +1 -1
  65. package/core/modules/filter-tracker.js +106 -0
  66. package/core/modules/filterrunprefixes/cascade.js +2 -2
  67. package/core/modules/filterrunprefixes/filter.js +2 -2
  68. package/core/modules/filterrunprefixes/let.js +39 -0
  69. package/core/modules/filterrunprefixes/map.js +3 -3
  70. package/core/modules/filterrunprefixes/reduce.js +2 -2
  71. package/core/modules/filterrunprefixes/sort.js +3 -3
  72. package/core/modules/filters/compare.js +1 -1
  73. package/core/modules/filters/deserialize.js +1 -1
  74. package/core/modules/filters/each.js +2 -2
  75. package/core/modules/filters/field.js +1 -1
  76. package/core/modules/filters/fields.js +1 -1
  77. package/core/modules/filters/filter.js +1 -1
  78. package/core/modules/filters/format/json.js +2 -6
  79. package/core/modules/filters/format/timestamp.js +1 -1
  80. package/core/modules/filters/function.js +2 -2
  81. package/core/modules/filters/getindex.js +1 -1
  82. package/core/modules/filters/json-ops.js +71 -21
  83. package/core/modules/filters/lookup.js +1 -1
  84. package/core/modules/filters/math.js +29 -25
  85. package/core/modules/filters/range.js +4 -4
  86. package/core/modules/filters/removesuffix.js +1 -1
  87. package/core/modules/filters/strings.js +26 -80
  88. package/core/modules/filters/suffix.js +1 -1
  89. package/core/modules/filters/title.js +3 -2
  90. package/core/modules/filters/unknown.js +2 -2
  91. package/core/modules/filters/variables.js +1 -1
  92. package/core/modules/filters/x-listops.js +168 -168
  93. package/core/modules/filters.js +92 -45
  94. package/core/modules/indexers/back-indexer.js +8 -8
  95. package/core/modules/indexers/field-indexer.js +3 -3
  96. package/core/modules/info/dimensions.js +86 -0
  97. package/core/modules/info/mediaquerytracker.js +67 -0
  98. package/core/modules/info/platform.js +0 -7
  99. package/core/modules/keyboard.js +15 -16
  100. package/core/modules/macros/csvtiddlers.js +8 -9
  101. package/core/modules/macros/displayshortcuts.js +2 -2
  102. package/core/modules/parsers/audioparser.js +18 -8
  103. package/core/modules/parsers/binaryparser.js +1 -1
  104. package/core/modules/parsers/csvparser.js +8 -4
  105. package/core/modules/parsers/imageparser.js +6 -7
  106. package/core/modules/parsers/parseutils.js +274 -57
  107. package/core/modules/parsers/pdfparser.js +4 -5
  108. package/core/modules/parsers/videoparser.js +7 -8
  109. package/core/modules/parsers/wikiparser/rules/codeblock.js +5 -5
  110. package/core/modules/parsers/wikiparser/rules/commentblock.js +12 -3
  111. package/core/modules/parsers/wikiparser/rules/commentinline.js +9 -2
  112. package/core/modules/parsers/wikiparser/rules/conditional.js +1 -1
  113. package/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js +1 -1
  114. package/core/modules/parsers/wikiparser/rules/entity.js +0 -2
  115. package/core/modules/parsers/wikiparser/rules/extlink.js +2 -2
  116. package/core/modules/parsers/wikiparser/rules/fnprocdef.js +4 -4
  117. package/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +3 -1
  118. package/core/modules/parsers/wikiparser/rules/html.js +10 -10
  119. package/core/modules/parsers/wikiparser/rules/image.js +1 -1
  120. package/core/modules/parsers/wikiparser/rules/import.js +0 -1
  121. package/core/modules/parsers/wikiparser/rules/list.js +1 -0
  122. package/core/modules/parsers/wikiparser/rules/macrocallblock.js +1 -1
  123. package/core/modules/parsers/wikiparser/rules/macrocallinline.js +2 -0
  124. package/core/modules/parsers/wikiparser/rules/macrodef.js +5 -3
  125. package/core/modules/parsers/wikiparser/rules/mvvdisplayinline.js +95 -0
  126. package/core/modules/parsers/wikiparser/rules/parsermode.js +8 -2
  127. package/core/modules/parsers/wikiparser/rules/prettyextlink.js +3 -1
  128. package/core/modules/parsers/wikiparser/rules/prettylink.js +1 -1
  129. package/core/modules/parsers/wikiparser/rules/rules.js +9 -2
  130. package/core/modules/parsers/wikiparser/rules/styleblock.js +4 -1
  131. package/core/modules/parsers/wikiparser/rules/styleinline.js +1 -1
  132. package/core/modules/parsers/wikiparser/rules/table.js +2 -2
  133. package/core/modules/parsers/wikiparser/rules/transcludeblock.js +5 -5
  134. package/core/modules/parsers/wikiparser/rules/transcludeinline.js +4 -4
  135. package/core/modules/parsers/wikiparser/rules/typedblock.js +24 -11
  136. package/core/modules/parsers/wikiparser/wikiparser.js +12 -12
  137. package/core/modules/pluginswitcher.js +4 -5
  138. package/core/modules/relinkers/tiddlers.js +54 -0
  139. package/core/modules/saver-handler.js +4 -4
  140. package/core/modules/savers/andtidwiki.js +6 -6
  141. package/core/modules/savers/custom.js +1 -1
  142. package/core/modules/savers/download.js +3 -1
  143. package/core/modules/savers/gitea.js +1 -2
  144. package/core/modules/savers/github.js +1 -3
  145. package/core/modules/savers/gitlab.js +3 -5
  146. package/core/modules/savers/postmessage.js +62 -0
  147. package/core/modules/savers/put.js +1 -1
  148. package/core/modules/savers/upload.js +1 -2
  149. package/core/modules/startup/browser-messaging.js +1 -1
  150. package/core/modules/startup/eventbus.js +46 -0
  151. package/core/modules/startup/favicon.js +10 -8
  152. package/core/modules/startup/info.js +10 -4
  153. package/core/modules/startup/load-modules.js +29 -1
  154. package/core/modules/startup/plugins.js +0 -1
  155. package/core/modules/startup/render.js +8 -3
  156. package/core/modules/startup/rootwidget.js +1 -1
  157. package/core/modules/startup/startup.js +1 -16
  158. package/core/modules/startup/windows.js +6 -4
  159. package/core/modules/storyviews/classic.js +5 -8
  160. package/core/modules/storyviews/pop.js +7 -11
  161. package/core/modules/storyviews/zoomin.js +17 -11
  162. package/core/modules/syncer.js +7 -7
  163. package/core/modules/upgraders/plugins.js +1 -2
  164. package/core/modules/upgraders/system.js +1 -2
  165. package/core/modules/upgraders/themetweaks.js +1 -2
  166. package/core/modules/utils/base64.js +31 -0
  167. package/core/modules/utils/csv.js +22 -22
  168. package/core/modules/utils/deprecated.js +58 -0
  169. package/core/modules/utils/diff-match-patch/diff_match_patch.js +2 -53
  170. package/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed.js +826 -1615
  171. package/core/modules/utils/dom/browser.js +36 -22
  172. package/core/modules/utils/dom/dom.js +5 -54
  173. package/core/modules/utils/dom/dragndrop.js +5 -6
  174. package/core/modules/utils/dom/http.js +8 -9
  175. package/core/modules/utils/dom/keyboard.js +1 -1
  176. package/core/modules/utils/dom/modal.js +9 -10
  177. package/core/modules/utils/dom/notifier.js +0 -2
  178. package/core/modules/utils/dom/popup.js +6 -6
  179. package/core/modules/utils/dom/scroller.js +2 -2
  180. package/core/modules/utils/errors.js +1 -0
  181. package/core/modules/utils/escapecss.js +2 -88
  182. package/core/modules/utils/fakedom.js +4 -4
  183. package/core/modules/utils/linked-list.js +1 -1
  184. package/core/modules/utils/logger.js +1 -1
  185. package/core/modules/utils/messaging.js +121 -0
  186. package/core/modules/utils/parsetree.js +16 -0
  187. package/core/modules/utils/performance.js +3 -3
  188. package/core/modules/utils/pluginmaker.js +5 -5
  189. package/core/modules/utils/transliterate.js +2 -2
  190. package/core/modules/utils/utils.js +137 -158
  191. package/core/modules/widgets/action-confirm.js +1 -1
  192. package/core/modules/widgets/action-createtiddler.js +4 -4
  193. package/core/modules/widgets/action-listops.js +2 -4
  194. package/core/modules/widgets/action-log.js +17 -9
  195. package/core/modules/widgets/audio.js +101 -0
  196. package/core/modules/widgets/browse.js +1 -1
  197. package/core/modules/widgets/button.js +23 -11
  198. package/core/modules/widgets/checkbox.js +3 -3
  199. package/core/modules/widgets/data.js +1 -1
  200. package/core/modules/widgets/diff-text.js +27 -10
  201. package/core/modules/widgets/draggable.js +3 -3
  202. package/core/modules/widgets/droppable.js +3 -4
  203. package/core/modules/widgets/dropzone.js +21 -22
  204. package/core/modules/widgets/edit-binary.js +2 -3
  205. package/core/modules/widgets/edit-bitmap.js +0 -1
  206. package/core/modules/widgets/element.js +3 -1
  207. package/core/modules/widgets/eventcatcher.js +239 -80
  208. package/core/modules/widgets/fields.js +5 -5
  209. package/core/modules/widgets/genesis.js +1 -1
  210. package/core/modules/widgets/image.js +33 -9
  211. package/core/modules/widgets/importvariables.js +4 -3
  212. package/core/modules/widgets/jsontiddler.js +0 -1
  213. package/core/modules/widgets/keyboard.js +8 -9
  214. package/core/modules/widgets/let.js +6 -5
  215. package/core/modules/widgets/link.js +27 -13
  216. package/core/modules/widgets/linkcatcher.js +3 -3
  217. package/core/modules/widgets/list.js +12 -12
  218. package/core/modules/widgets/log.js +2 -2
  219. package/core/modules/widgets/messagecatcher.js +1 -1
  220. package/core/modules/widgets/navigator.js +29 -29
  221. package/core/modules/widgets/parameters.js +5 -2
  222. package/core/modules/widgets/password.js +1 -1
  223. package/core/modules/widgets/radio.js +1 -1
  224. package/core/modules/widgets/range.js +7 -21
  225. package/core/modules/widgets/reveal.js +33 -12
  226. package/core/modules/widgets/scrollable.js +4 -5
  227. package/core/modules/widgets/select.js +19 -10
  228. package/core/modules/widgets/setmultiplevariables.js +31 -31
  229. package/core/modules/widgets/slot.js +0 -1
  230. package/core/modules/widgets/testcase.js +1 -1
  231. package/core/modules/widgets/transclude.js +64 -32
  232. package/core/modules/widgets/void.js +23 -0
  233. package/core/modules/widgets/widget.js +179 -64
  234. package/core/modules/widgets/wikify.js +5 -5
  235. package/core/modules/wiki-bulkops.js +5 -41
  236. package/core/modules/wiki.js +45 -59
  237. package/core/palettes/BrightMute.tid +11 -6
  238. package/core/palettes/FlexokiDark.tid +2 -2
  239. package/core/stylesheets/custom-properties.tid +30 -0
  240. package/core/templates/external-js/save-all-external-js.tid +1 -1
  241. package/core/templates/external-js/save-offline-external-js.tid +1 -1
  242. package/core/templates/external-js/tiddlywiki5-external-js.html.tid +8 -6
  243. package/core/templates/save-all.tid +1 -1
  244. package/core/templates/save-empty.tid +1 -1
  245. package/core/templates/save-lazy-all.tid +1 -1
  246. package/core/templates/save-lazy-images.tid +1 -1
  247. package/core/ui/AdvancedSearch/Filter.tid +23 -17
  248. package/core/ui/AdvancedSearch/Shadows.tid +9 -3
  249. package/core/ui/AdvancedSearch/Standard.tid +13 -7
  250. package/core/ui/AdvancedSearch/System.tid +9 -3
  251. package/core/ui/AlertTemplate.tid +3 -3
  252. package/core/ui/ControlPanel/Basics.tid +1 -0
  253. package/core/ui/EditTemplate/body-editor.tid +1 -1
  254. package/core/ui/EditTemplate/body-toolbar-button.tid +4 -2
  255. package/core/ui/EditTemplate/fields.tid +163 -139
  256. package/core/ui/EditTemplate/title.tid +5 -1
  257. package/core/ui/EditTemplate/type.tid +17 -2
  258. package/core/ui/Filters/StoryList.tid +1 -1
  259. package/core/ui/ImportListing.tid +35 -15
  260. package/core/ui/LayoutSwitcher.tid +18 -19
  261. package/core/ui/PageStylesheet.tid +2 -0
  262. package/core/ui/PageTemplate/alerts.tid +2 -2
  263. package/core/ui/SideBar/Open.tid +1 -1
  264. package/core/ui/SideBar/Tools.tid +1 -1
  265. package/core/ui/SideBarSegments/search.tid +11 -5
  266. package/core/ui/TiddlerInfo/Advanced/CascadeInfo.tid +43 -0
  267. package/core/ui/TiddlerInfo.tid +1 -1
  268. package/core/ui/ViewTemplate/title.tid +7 -3
  269. package/core/ui/WikiInformation.tid +3 -0
  270. package/core/wiki/config/MediaQueryTrackers/DarkLightPreferred.tid +5 -0
  271. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  272. package/core/wiki/config/TiddlerInfoMode.tid +1 -1
  273. package/core/wiki/languageswitcher.tid +12 -12
  274. package/core/wiki/macros/CSS-property.tid +39 -0
  275. package/core/wiki/macros/CSS.tid +0 -50
  276. package/core/wiki/macros/colour-picker.tid +22 -19
  277. package/core/wiki/macros/deprecated.tid +43 -0
  278. package/core/wiki/macros/dumpvariables.tid +1 -1
  279. package/core/wiki/macros/image-picker.tid +16 -13
  280. package/core/wiki/macros/keyboard-driven-input.tid +16 -10
  281. package/core/wiki/macros/list.tid +83 -69
  282. package/core/wiki/macros/tabs.tid +4 -3
  283. package/core/wiki/macros/tag-picker.tid +3 -2
  284. package/core/wiki/macros/toc.tid +32 -5
  285. package/core/wiki/macros/translink.tid +13 -13
  286. package/core/wiki/macros/tree.tid +24 -20
  287. package/core/wiki/minifocuseditswitcher.tid +8 -0
  288. package/core/wiki/tags/TiddlerInfoAdvanced.tid +1 -1
  289. package/core/wiki/themeswitcher.tid +10 -9
  290. package/core/wiki/viewswitcher.tid +5 -4
  291. package/core-server/commander.js +176 -0
  292. package/core-server/commands/commands.js +36 -0
  293. package/core-server/commands/deletetiddlers.js +36 -0
  294. package/core-server/commands/fetch.js +170 -0
  295. package/core-server/commands/import.js +42 -0
  296. package/core-server/commands/init.js +53 -0
  297. package/core-server/commands/listen.js +42 -0
  298. package/core-server/commands/load.js +44 -0
  299. package/core-server/commands/output.js +32 -0
  300. package/core-server/commands/render.js +63 -0
  301. package/core-server/commands/rendertiddlers.js +62 -0
  302. package/core-server/commands/save.js +62 -0
  303. package/core-server/commands/savetiddlers.js +49 -0
  304. package/core-server/commands/savewikifolder.js +221 -0
  305. package/core-server/commands/server.js +49 -0
  306. package/core-server/commands/setfield.js +50 -0
  307. package/core-server/filesystem.js +541 -0
  308. package/core-server/plugin.info +11 -0
  309. package/core-server/readme.tid +7 -0
  310. package/core-server/server/authenticators/basic.js +87 -0
  311. package/core-server/server/routes/delete-tiddler.js +26 -0
  312. package/core-server/server/routes/get-favicon.js +22 -0
  313. package/core-server/server/routes/get-file.js +73 -0
  314. package/core-server/server/routes/get-index.js +25 -0
  315. package/core-server/server/routes/get-login-basic.js +34 -0
  316. package/core-server/server/routes/get-status.js +31 -0
  317. package/core-server/server/routes/get-tiddler-html.js +42 -0
  318. package/core-server/server/routes/get-tiddler.js +44 -0
  319. package/core-server/server/routes/get-tiddlers-json.js +48 -0
  320. package/core-server/server/routes/put-tiddler.js +50 -0
  321. package/core-server/server/server.js +393 -0
  322. package/core-server/utils/base64.js +30 -0
  323. package/core-server/utils/escapecss.js +95 -0
  324. package/core-server/utils/repository.js +45 -0
  325. package/editions/de-AT/tiddlers/external/tiddlywiki.files +2 -2
  326. package/editions/de-AT/tiddlers/system/$__editions_de-AT-DE_download-empty.tid +1 -1
  327. package/editions/de-AT/tiddlywiki.info +1 -2
  328. package/editions/de-DE/tiddlywiki.info +1 -2
  329. package/editions/dev/tiddlers/$__StoryList.tid +3 -0
  330. package/editions/dev/tiddlers/How to Create a Custom Cascade Entry.tid +127 -0
  331. package/editions/dev/tiddlers/build/Releasing a new version of TiddlyWiki.tid +11 -6
  332. package/editions/dev/tiddlers/from Heigele and Jurke/RootWidget and Rendering Startup.tid +5 -1
  333. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +1 -1
  334. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +1 -1
  335. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +1 -1
  336. package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +1 -1
  337. package/editions/empty/tiddlywiki.info +1 -2
  338. package/editions/es-ES/tiddlers/system/download-empty.tid +1 -1
  339. package/editions/es-ES/tiddlywiki.info +1 -2
  340. package/editions/fr-FR/tiddlers/$__editions_tw5.com_railroad_macro-parameter-value.tid +3 -1
  341. package/editions/fr-FR/tiddlers/Macro_Call_Syntax.tid +1 -1
  342. package/editions/fr-FR/tiddlers/Macro_Definition_Syntax.tid +1 -1
  343. package/editions/fr-FR/tiddlers/ReleaseTemplate.tid +1 -0
  344. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +17 -0
  345. package/editions/fr-FR/tiddlers/system/download-empty.tid +1 -1
  346. package/editions/fr-FR/tiddlywiki.info +1 -2
  347. package/editions/ja-JP/tiddlers/Concatenating a text reference to create a URL.tid +15 -0
  348. package/editions/ja-JP/tiddlers/Concatenating variables to create a URL.tid +15 -0
  349. package/editions/ja-JP/tiddlers/TiddlyWiki Docs PR Maker.tid +4 -5
  350. package/editions/ja-JP/tiddlers/Welcome.tid +10 -0
  351. package/editions/ja-JP/tiddlers/_TiddlyStudy_ by Kebi.tid +28 -0
  352. package/editions/ja-JP/tiddlers/_tw_shared/doc-utilities/wikitext-macros.tid +91 -0
  353. package/editions/ja-JP/tiddlers/about/Archive.tid +3 -3
  354. package/editions/ja-JP/tiddlers/about/Developers.tid +3 -21
  355. package/editions/ja-JP/tiddlers/about/Donations.tid +17 -0
  356. package/editions/ja-JP/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  357. package/editions/ja-JP/tiddlers/about/History of TiddlyWiki.tid +7 -81
  358. package/editions/ja-JP/tiddlers/about/The Story of TiddlyWiki.tid +71 -0
  359. package/editions/ja-JP/tiddlers/about/TiddlyWiki Anniversaries.tid +33 -0
  360. package/editions/ja-JP/tiddlers/commands/BuildCommand.tid +13 -0
  361. package/editions/ja-JP/tiddlers/commands/ClearPasswordCommand.tid +6 -0
  362. package/editions/ja-JP/tiddlers/commands/Commands.tid +17 -0
  363. package/editions/ja-JP/tiddlers/commands/CommandsCommand.tid +10 -0
  364. package/editions/ja-JP/tiddlers/commands/DeleteTiddlersCommand.tid +9 -0
  365. package/editions/ja-JP/tiddlers/commands/EditionsCommand.tid +10 -0
  366. package/editions/ja-JP/tiddlers/commands/FetchCommand.tid +10 -0
  367. package/editions/ja-JP/tiddlers/commands/HelpCommand.tid +10 -0
  368. package/editions/ja-JP/tiddlers/commands/ImportCommand.tid +10 -0
  369. package/editions/ja-JP/tiddlers/commands/InitCommand.tid +14 -0
  370. package/editions/ja-JP/tiddlers/commands/ListenCommand.tid +12 -0
  371. package/editions/ja-JP/tiddlers/commands/LoadCommand.tid +10 -0
  372. package/editions/ja-JP/tiddlers/commands/MakeLibraryCommand.tid +12 -0
  373. package/editions/ja-JP/tiddlers/commands/OutputCommand.tid +10 -0
  374. package/editions/ja-JP/tiddlers/commands/PasswordCommand.tid +6 -0
  375. package/editions/ja-JP/tiddlers/commands/RenderCommand.tid +18 -0
  376. package/editions/ja-JP/tiddlers/commands/RenderTiddlerCommand.tid +9 -0
  377. package/editions/ja-JP/tiddlers/commands/RenderTiddlersCommand.tid +9 -0
  378. package/editions/ja-JP/tiddlers/commands/SaveCommand.tid +10 -0
  379. package/editions/ja-JP/tiddlers/commands/SaveTiddlerCommand.tid +10 -0
  380. package/editions/ja-JP/tiddlers/commands/SaveTiddlersCommand.tid +10 -0
  381. package/editions/ja-JP/tiddlers/commands/SaveWikiFolderCommand.tid +9 -0
  382. package/editions/ja-JP/tiddlers/commands/ServerCommand.tid +16 -0
  383. package/editions/ja-JP/tiddlers/commands/SetFieldCommand.tid +9 -0
  384. package/editions/ja-JP/tiddlers/commands/UnpackPluginCommand.tid +10 -0
  385. package/editions/ja-JP/tiddlers/commands/VerboseCommand.tid +6 -0
  386. package/editions/ja-JP/tiddlers/commands/VersionCommand.tid +6 -0
  387. package/editions/ja-JP/tiddlers/community/Articles.tid +3 -3
  388. package/editions/ja-JP/tiddlers/community/Community Editions.tid +2 -2
  389. package/editions/ja-JP/tiddlers/community/Community Links Aggregator.tid +13 -0
  390. package/editions/ja-JP/tiddlers/community/Community Palettes.tid +2 -2
  391. package/editions/ja-JP/tiddlers/community/Community Plugins.tid +2 -2
  392. package/editions/ja-JP/tiddlers/community/Community Themes.tid +2 -2
  393. package/editions/ja-JP/tiddlers/community/Community.tid +4 -6
  394. package/editions/ja-JP/tiddlers/community/Examples.tid +3 -3
  395. package/editions/ja-JP/tiddlers/community/Forums.tid +9 -18
  396. package/editions/ja-JP/tiddlers/community/Improving TiddlyWiki Documentation.tid +55 -0
  397. package/editions/ja-JP/tiddlers/community/Latest.tid +2 -2
  398. package/editions/ja-JP/tiddlers/community/Meetups.tid +2 -2
  399. package/editions/ja-JP/tiddlers/community/Other Resources.tid +2 -2
  400. package/editions/ja-JP/tiddlers/community/Resources.tid +13 -0
  401. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2016.tid +17 -0
  402. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2017.tid +13 -0
  403. package/editions/ja-JP/tiddlers/community/TiddlyWiki Hangouts.tid +1 -1
  404. package/editions/ja-JP/tiddlers/community/TiddlyWiki Newsletter.tid +12 -0
  405. package/editions/ja-JP/tiddlers/community/TiddlyWiki on the Web.tid +3 -3
  406. package/editions/ja-JP/tiddlers/community/Translate TiddlyWiki into your language.tid +18 -0
  407. package/editions/ja-JP/tiddlers/community/Tutorials.tid +2 -2
  408. package/editions/ja-JP/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +21 -0
  409. package/editions/ja-JP/tiddlers/community/articles/_Notizen mit TiddlyWiki systemubergreifend nutzen_ by Michael Sonntag.tid +19 -0
  410. package/editions/ja-JP/tiddlers/community/articles/_Setting Up a Personal TiddlyWiki Server on OS X_ by Kris Johnson.tid +24 -0
  411. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki 5 im Betatest_ by besim.tid +17 -0
  412. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki_ by Sander de Boer.tid +17 -0
  413. package/editions/ja-JP/tiddlers/community/docs/Community Cards Caveats.tid +7 -0
  414. package/editions/ja-JP/tiddlers/community/docs/Community Cards.tid +13 -0
  415. package/editions/ja-JP/tiddlers/community/docs/Displaying Community Cards.tid +28 -0
  416. package/editions/ja-JP/tiddlers/community/docs/Submitting a Community Card.tid +38 -0
  417. package/editions/ja-JP/tiddlers/community/editions/Drift by Tony K.tid +20 -0
  418. package/editions/ja-JP/tiddlers/community/editions/Stroll by David Gifford.tid +20 -0
  419. package/editions/ja-JP/tiddlers/community/editions/Tidme by oflg.tid +18 -0
  420. package/editions/ja-JP/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +23 -0
  421. package/editions/ja-JP/tiddlers/community/examples/GitFixUm.tid +0 -1
  422. package/editions/ja-JP/tiddlers/community/examples/PETTIL.tid +1 -1
  423. package/editions/ja-JP/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  424. package/editions/ja-JP/tiddlers/community/plugins/GSD5.tid +16 -0
  425. package/editions/ja-JP/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +22 -0
  426. package/editions/ja-JP/tiddlers/community/plugins/TiddlyWiki for Scholars.tid +16 -0
  427. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki People.tid +13 -0
  428. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki Project.tid +13 -0
  429. package/editions/ja-JP/tiddlers/community/project/Vacant Positions.tid +5 -0
  430. package/editions/ja-JP/tiddlers/community/resources/Projectify by Nicolas Petton.tid +24 -0
  431. package/editions/ja-JP/tiddlers/community/resources/TiddlyWiki Posts.tid +16 -0
  432. package/editions/ja-JP/tiddlers/community/resources/Wikilabs by PMario.tid +18 -0
  433. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +18 -0
  434. package/editions/ja-JP/tiddlers/community/tools/cards/Procedures.tid +168 -0
  435. package/editions/ja-JP/tiddlers/concepts/ExternalImages.tid +29 -11
  436. package/editions/ja-JP/tiddlers/concepts/Filters.tid +2 -1
  437. package/editions/ja-JP/tiddlers/concepts/TemplateTiddlers.tid +20 -0
  438. package/editions/ja-JP/tiddlers/concepts/TextReference.tid +36 -0
  439. package/editions/ja-JP/tiddlers/concepts/Transclusion.tid +31 -0
  440. package/editions/ja-JP/tiddlers/concepts/WikiText.tid +17 -0
  441. package/editions/ja-JP/tiddlers/definitions/Base64.tid +9 -0
  442. package/editions/ja-JP/tiddlers/definitions/Cascading Style Sheets.tid +9 -0
  443. package/editions/ja-JP/tiddlers/definitions/Definitions.tid +12 -0
  444. package/editions/ja-JP/tiddlers/definitions/Tiddlyhost.tid +13 -0
  445. package/editions/ja-JP/tiddlers/features/Future Proof.tid +3 -3
  446. package/editions/ja-JP/tiddlers/filters/syntax/Filter Run Prefix.tid +0 -1
  447. package/editions/ja-JP/tiddlers/filters/syntax/Filter Step.tid +5 -5
  448. package/editions/ja-JP/tiddlers/functions/Functions.tid +30 -0
  449. package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +1 -1
  450. package/editions/ja-JP/tiddlers/hellothere/Find Out More.tid +2 -2
  451. package/editions/ja-JP/tiddlers/hellothere/HelloThere.tid +28 -6
  452. package/editions/ja-JP/tiddlers/hellothere/HelloThumbnail.tid +7 -0
  453. package/editions/ja-JP/tiddlers/hellothere/Testimonials and Reviews.tid +2 -2
  454. package/editions/ja-JP/tiddlers/hellothere/quickstart/Quick Start.tid +2 -2
  455. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +10 -0
  456. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  457. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
  458. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  459. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
  460. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  461. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +12 -0
  462. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
  463. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +1 -1
  464. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
  465. package/editions/ja-JP/tiddlers/hiddensettings/Hidden Setting Default Tiddler Colour.tid +3 -3
  466. package/editions/ja-JP/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +16 -0
  467. package/editions/ja-JP/tiddlers/hire-jeremy/HireJeremy.tid +59 -0
  468. package/editions/ja-JP/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  469. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS.tid +28 -0
  470. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS_-_Example.tid +16 -0
  471. package/editions/ja-JP/tiddlers/howtos/Windows HTA Hack.tid +2 -1
  472. package/editions/ja-JP/tiddlers/marketplace/TiddlyWiki Marketplace.tid +20 -0
  473. package/editions/ja-JP/tiddlers/plugins/Dynaview Plugin.tid +1 -1
  474. package/editions/ja-JP/tiddlers/plugins/Innerwiki Plugin.tid +1 -1
  475. package/editions/ja-JP/tiddlers/plugins/Share Plugin.tid +6 -4
  476. package/editions/ja-JP/tiddlers/procedures/Procedure Calls.tid +58 -0
  477. package/editions/ja-JP/tiddlers/procedures/Procedure Definitions.tid +47 -0
  478. package/editions/ja-JP/tiddlers/procedures/Procedure Parameter Handling.tid +26 -0
  479. package/editions/ja-JP/tiddlers/reference/Reference.tid +17 -0
  480. package/editions/ja-JP/tiddlers/roadmap/RoadMap.tid +9 -4
  481. package/editions/ja-JP/tiddlers/saving/Encryption.tid +3 -3
  482. package/editions/ja-JP/tiddlers/saving/Saving via WebDAV.tid +9 -1
  483. package/editions/ja-JP/tiddlers/saving/Saving with TiddlyIE.tid +2 -1
  484. package/editions/ja-JP/tiddlers/saving/Saving.tid +2 -2
  485. package/editions/ja-JP/tiddlers/system/TableOfContents.tid +1 -1
  486. package/editions/ja-JP/tiddlers/system/download-empty.tid +1 -1
  487. package/editions/ja-JP/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +13 -0
  488. package/editions/ja-JP/tiddlers/wikitext/Anchor Links using HTML.tid +202 -0
  489. package/editions/ja-JP/tiddlers/wikitext/Block Quotes in WikiText.tid +106 -0
  490. package/editions/ja-JP/tiddlers/wikitext/Code Blocks in WikiText.tid +43 -0
  491. package/editions/ja-JP/tiddlers/wikitext/Conditional Shortcut Syntax.tid +64 -0
  492. package/editions/ja-JP/tiddlers/wikitext/Dashes in WikiText.tid +14 -0
  493. package/editions/ja-JP/tiddlers/wikitext/Description Lists in WikiText.tid +16 -0
  494. package/editions/ja-JP/tiddlers/wikitext/Filtered Attribute Values.tid +18 -0
  495. package/editions/ja-JP/tiddlers/wikitext/Formatting in WikiText.tid +62 -0
  496. package/editions/ja-JP/tiddlers/wikitext/HTML Entities.tid +68 -0
  497. package/editions/ja-JP/tiddlers/wikitext/HTML in WikiText.tid +94 -0
  498. package/editions/ja-JP/tiddlers/wikitext/HTML_Links_in_WikiText.tid +19 -0
  499. package/editions/ja-JP/tiddlers/wikitext/Hard Linebreaks in WikiText.tid +24 -0
  500. package/editions/ja-JP/tiddlers/wikitext/Headings in WikiText.tid +22 -0
  501. package/editions/ja-JP/tiddlers/wikitext/Horizontal Rules in WikiText.tid +12 -0
  502. package/editions/ja-JP/tiddlers/wikitext/Linking in WikiText.tid +127 -0
  503. package/editions/ja-JP/tiddlers/wikitext/Lists in WikiText.tid +94 -0
  504. package/editions/ja-JP/tiddlers/wikitext/Literal Attribute Values.tid +32 -0
  505. package/editions/ja-JP/tiddlers/wikitext/Macro Calls.tid +60 -0
  506. package/editions/ja-JP/tiddlers/wikitext/Macro Definitions.tid +69 -0
  507. package/editions/ja-JP/tiddlers/wikitext/Macro Parameter Handling.tid +80 -0
  508. package/editions/ja-JP/tiddlers/wikitext/Paragraphs in WikiText.tid +25 -0
  509. package/editions/ja-JP/tiddlers/wikitext/Substituted Attribute Values.tid +35 -0
  510. package/editions/ja-JP/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +22 -0
  511. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +83 -0
  512. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText.tid +74 -0
  513. package/editions/ja-JP/tiddlers/wikitext/Transcluded Attribute Values.tid +16 -0
  514. package/editions/ja-JP/tiddlers/wikitext/Transclusion Basic Usage.tid +47 -0
  515. package/editions/ja-JP/tiddlers/wikitext/Transclusion and Substitution.tid +62 -0
  516. package/editions/ja-JP/tiddlers/wikitext/Transclusion in WikiText.tid +78 -0
  517. package/editions/ja-JP/tiddlers/wikitext/Transclusion with Templates.tid +62 -0
  518. package/editions/ja-JP/tiddlers/wikitext/Typed Blocks in WikiText.tid +69 -0
  519. package/editions/ja-JP/tiddlers/wikitext/Utility Classes.tid +23 -0
  520. package/editions/ja-JP/tiddlers/wikitext/Variable Attribute Values.tid +19 -0
  521. package/editions/ja-JP/tiddlers/wikitext/Widget Attributes.tid +28 -0
  522. package/editions/ja-JP/tiddlers/wikitext/Widgets in WikiText.tid +33 -0
  523. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText Parser Modes.tid +20 -0
  524. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +58 -0
  525. package/editions/ja-JP/tiddlers/wikitext/parser/table-example.tid +10 -0
  526. package/editions/ja-JP/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +3 -3
  527. package/editions/ja-JP/tiddlywiki.info +1 -2
  528. package/editions/ko-KR/tiddlers/system/download-empty.tid +1 -1
  529. package/editions/ko-KR/tiddlywiki.info +1 -2
  530. package/editions/prerelease/tiddlers/system/DefaultTiddlers.tid +1 -1
  531. package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
  532. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  533. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +1 -0
  534. package/editions/prerelease/tiddlers/system/download-empty.tid +1 -1
  535. package/editions/prerelease/tiddlywiki.info +2 -1
  536. package/editions/test/playwright.spec.js +17 -17
  537. package/editions/test/tiddlers/$__StoryList.tid +2 -0
  538. package/editions/test/tiddlers/tests/data/functions/FunctionDefaultValues.tid +16 -0
  539. package/editions/test/tiddlers/tests/data/functions/FunctionSubstituteResolution.tid +38 -0
  540. package/editions/test/tiddlers/tests/data/functions/VariableLeakage.tid +15 -0
  541. package/editions/test/tiddlers/tests/data/functions/VariablesEnumeration.tid +14 -0
  542. package/editions/test/tiddlers/tests/data/genesis-widget/Block.tid +1 -1
  543. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultList.tid +12 -0
  544. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultListUnnamedVariable.tid +12 -0
  545. package/editions/test/tiddlers/tests/data/let-filter-prefix/ShortcutSyntax.tid +12 -0
  546. package/editions/test/tiddlers/tests/data/let-filter-prefix/Simple.tid +12 -0
  547. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Attribute.tid +26 -0
  548. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Standalone.tid +23 -0
  549. package/editions/test/tiddlers/tests/data/multi-valued-variables/AttributeFirstValue.tid +16 -0
  550. package/editions/test/tiddlers/tests/data/multi-valued-variables/DefaultParameterMVV.tid +19 -0
  551. package/editions/test/tiddlers/tests/data/multi-valued-variables/Function.tid +18 -0
  552. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplay.tid +16 -0
  553. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplaySeparator.tid +16 -0
  554. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplay.tid +14 -0
  555. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplaySeparator.tid +14 -0
  556. package/editions/test/tiddlers/tests/data/multi-valued-variables/MissingVariable.tid +12 -0
  557. package/editions/test/tiddlers/tests/data/multi-valued-variables/NegatedTitle.tid +18 -0
  558. package/editions/test/tiddlers/tests/data/multi-valued-variables/Operands.tid +18 -0
  559. package/editions/test/tiddlers/tests/data/multi-valued-variables/Parameters.tid +21 -0
  560. package/editions/test/tiddlers/tests/data/multi-valued-variables/ParametersShortcut.tid +21 -0
  561. package/editions/test/tiddlers/tests/data/multi-valued-variables/Simple.tid +17 -0
  562. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameter.tid +19 -0
  563. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterDirectly.tid +19 -0
  564. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterFunction.tid +17 -0
  565. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-named.tid +13 -0
  566. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-non-strict.tid +13 -0
  567. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-equals-no-value.tid +13 -0
  568. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-equals.tid +13 -0
  569. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-filtered-value.tid +13 -0
  570. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-indirect-value.tid +17 -0
  571. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-mvv-value.tid +14 -0
  572. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-nested-macro.tid +14 -0
  573. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-substituted-value.tid +13 -0
  574. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-positional-gt.tid +13 -0
  575. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-multiline.tid +17 -0
  576. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-quoted-gt.tid +14 -0
  577. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-single-line.tid +14 -0
  578. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat.tid +14 -0
  579. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-equals-noval.tid +13 -0
  580. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-malformed-mvv.tid +13 -0
  581. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-mvv-value.tid +14 -0
  582. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-substituted-value.tid +13 -0
  583. package/editions/test/tiddlers/tests/data/procedures/Calls.tid +28 -0
  584. package/editions/test/tiddlers/tests/data/serialize/Attribute.tid +5 -0
  585. package/editions/test/tiddlers/tests/data/serialize/BlockRule.tid +7 -0
  586. package/editions/test/tiddlers/tests/data/serialize/BoldEmphasis.tid +5 -0
  587. package/editions/test/tiddlers/tests/data/serialize/CodeBlock.tid +17 -0
  588. package/editions/test/tiddlers/tests/data/serialize/CommentBlock.tid +11 -0
  589. package/editions/test/tiddlers/tests/data/serialize/CommentInline.tid +5 -0
  590. package/editions/test/tiddlers/tests/data/serialize/Conditional.tid +21 -0
  591. package/editions/test/tiddlers/tests/data/serialize/Dash.tid +7 -0
  592. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroMixed.tid +9 -0
  593. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroParams.tid +9 -0
  594. package/editions/test/tiddlers/tests/data/serialize/DynamicWidgetAttribute.tid +7 -0
  595. package/editions/test/tiddlers/tests/data/serialize/Entity.tid +5 -0
  596. package/editions/test/tiddlers/tests/data/serialize/ExtLink.tid +7 -0
  597. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeBlock.tid +13 -0
  598. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeInline.tid +5 -0
  599. package/editions/test/tiddlers/tests/data/serialize/FunctionDefinition.tid +15 -0
  600. package/editions/test/tiddlers/tests/data/serialize/HardLineBreaks.tid +12 -0
  601. package/editions/test/tiddlers/tests/data/serialize/Heading.tid +29 -0
  602. package/editions/test/tiddlers/tests/data/serialize/Html.tid +15 -0
  603. package/editions/test/tiddlers/tests/data/serialize/Image.tid +10 -0
  604. package/editions/test/tiddlers/tests/data/serialize/Import.tid +6 -0
  605. package/editions/test/tiddlers/tests/data/serialize/ItalicEmphasis.tid +5 -0
  606. package/editions/test/tiddlers/tests/data/serialize/List.tid +40 -0
  607. package/editions/test/tiddlers/tests/data/serialize/MacroCallBlock.tid +13 -0
  608. package/editions/test/tiddlers/tests/data/serialize/MacroCallInline.tid +7 -0
  609. package/editions/test/tiddlers/tests/data/serialize/MacroDef.tid +9 -0
  610. package/editions/test/tiddlers/tests/data/serialize/Parameters.tid +5 -0
  611. package/editions/test/tiddlers/tests/data/serialize/ParserMode.tid +9 -0
  612. package/editions/test/tiddlers/tests/data/serialize/PrettyExtLink.tid +6 -0
  613. package/editions/test/tiddlers/tests/data/serialize/PrettyLink.tid +6 -0
  614. package/editions/test/tiddlers/tests/data/serialize/QuoteBlock.tid +7 -0
  615. package/editions/test/tiddlers/tests/data/serialize/RulesPragma.tid +6 -0
  616. package/editions/test/tiddlers/tests/data/serialize/SimpleText.tid +5 -0
  617. package/editions/test/tiddlers/tests/data/serialize/SoftLineBreak.tid +6 -0
  618. package/editions/test/tiddlers/tests/data/serialize/StrikethroughEmphasis.tid +5 -0
  619. package/editions/test/tiddlers/tests/data/serialize/StyleBlock.tid +17 -0
  620. package/editions/test/tiddlers/tests/data/serialize/StyleBlock2.tid +13 -0
  621. package/editions/test/tiddlers/tests/data/serialize/StyleInline.tid +7 -0
  622. package/editions/test/tiddlers/tests/data/serialize/SubscriptEmphasis.tid +5 -0
  623. package/editions/test/tiddlers/tests/data/serialize/SuperscriptEmphasis.tid +5 -0
  624. package/editions/test/tiddlers/tests/data/serialize/SysLink.tid +6 -0
  625. package/editions/test/tiddlers/tests/data/serialize/Table.tid +11 -0
  626. package/editions/test/tiddlers/tests/data/serialize/TranscludeBlock.tid +21 -0
  627. package/editions/test/tiddlers/tests/data/serialize/TranscludeInline.tid +5 -0
  628. package/editions/test/tiddlers/tests/data/serialize/TypedBlock1.tid +15 -0
  629. package/editions/test/tiddlers/tests/data/serialize/TypedBlock2.tid +19 -0
  630. package/editions/test/tiddlers/tests/data/serialize/UnderscoreEmphasis.tid +5 -0
  631. package/editions/test/tiddlers/tests/data/serialize/VoidElements.tid +12 -0
  632. package/editions/test/tiddlers/tests/data/serialize/WikiLink.tid +7 -0
  633. package/editions/test/tiddlers/tests/data/serialize/WikiLinkPrefix.tid +5 -0
  634. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-a.tid +1 -1
  635. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-all.tid +1 -1
  636. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-vertical.tid +1 -1
  637. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttribute.tid +34 -0
  638. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeFiltered.tid +20 -0
  639. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeVariable.tid +13 -0
  640. package/editions/test/tiddlers/tests/data/transclude/Parameterised-ParseTreeNodes.tid +1 -1
  641. package/editions/test/tiddlers/tests/data/transclude/Procedures-Dollar-Param.tid +22 -0
  642. package/editions/test/tiddlers/tests/modules/utils/test-csv.js +4 -4
  643. package/editions/test/tiddlers/tests/test-action-deletefield.js +120 -120
  644. package/editions/test/tiddlers/tests/test-action-widgets.js +73 -76
  645. package/editions/test/tiddlers/tests/test-backlinks.js +53 -53
  646. package/editions/test/tiddlers/tests/test-backtranscludes.js +119 -119
  647. package/editions/test/tiddlers/tests/test-checkbox-widget.js +491 -493
  648. package/editions/test/tiddlers/tests/test-compare-filter.js +1 -4
  649. package/editions/test/tiddlers/tests/test-deserialize-operator.js +18 -21
  650. package/editions/test/tiddlers/tests/test-deserializers.js +17 -19
  651. package/editions/test/tiddlers/tests/test-filters.js +123 -123
  652. package/editions/test/tiddlers/tests/test-html-parser.js +377 -50
  653. package/editions/test/tiddlers/tests/test-json-filters.js +29 -5
  654. package/editions/test/tiddlers/tests/test-linked-list.js +4 -4
  655. package/editions/test/tiddlers/tests/test-parsetextreference.js +1 -1
  656. package/editions/test/tiddlers/tests/test-prefixes-filter.js +9 -7
  657. package/editions/test/tiddlers/tests/test-tags-operator.js +45 -45
  658. package/editions/test/tiddlers/tests/test-tags.js +155 -155
  659. package/editions/test/tiddlers/tests/test-utils.js +10 -10
  660. package/editions/test/tiddlers/tests/test-widget-event.js +9 -9
  661. package/editions/test/tiddlers/tests/test-widget-getVariableInfo.js +7 -18
  662. package/editions/test/tiddlers/tests/test-widget.js +117 -93
  663. package/editions/test/tiddlers/tests/test-wikitext-parser.js +89 -80
  664. package/editions/test/tiddlers/tests/test-wikitext-serialize.js +18 -0
  665. package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +4 -4
  666. package/editions/test/tiddlers/tests/test-wikitext.js +1 -1
  667. package/editions/test/tiddlywiki.info +1 -0
  668. package/editions/testcommonjs/tiddlers/absolute/program.js +5 -5
  669. package/editions/testcommonjs/tiddlers/absolute/submodule/a.js +1 -1
  670. package/editions/testcommonjs/tiddlers/allTests.js +11 -11
  671. package/editions/testcommonjs/tiddlers/cyclic/a.js +2 -2
  672. package/editions/testcommonjs/tiddlers/cyclic/b.js +2 -2
  673. package/editions/testcommonjs/tiddlers/cyclic/program.js +8 -8
  674. package/editions/testcommonjs/tiddlers/determinism/program.js +3 -3
  675. package/editions/testcommonjs/tiddlers/determinism/submodule/a.js +5 -5
  676. package/editions/testcommonjs/tiddlers/exactExports/a.js +1 -1
  677. package/editions/testcommonjs/tiddlers/exactExports/program.js +4 -4
  678. package/editions/testcommonjs/tiddlers/hasOwnProperty/program.js +4 -4
  679. package/editions/testcommonjs/tiddlers/method/a.js +4 -4
  680. package/editions/testcommonjs/tiddlers/method/program.js +6 -6
  681. package/editions/testcommonjs/tiddlers/missing/program.js +5 -5
  682. package/editions/testcommonjs/tiddlers/monkeys/a.js +1 -1
  683. package/editions/testcommonjs/tiddlers/monkeys/program.js +4 -4
  684. package/editions/testcommonjs/tiddlers/nested/a/b/c/d.js +1 -1
  685. package/editions/testcommonjs/tiddlers/nested/program.js +3 -3
  686. package/editions/testcommonjs/tiddlers/relative/program.js +5 -5
  687. package/editions/testcommonjs/tiddlers/relative/submodule/a.js +1 -1
  688. package/editions/testcommonjs/tiddlers/test.js +9 -9
  689. package/editions/testcommonjs/tiddlers/transitive/a.js +1 -1
  690. package/editions/testcommonjs/tiddlers/transitive/b.js +1 -1
  691. package/editions/testcommonjs/tiddlers/transitive/c.js +1 -1
  692. package/editions/testcommonjs/tiddlers/transitive/program.js +3 -3
  693. package/editions/tiddlywiki-surveys/scripts/extract-text-tiddlers-via-console.js +4 -4
  694. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00001.json +37 -0
  695. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00002.json +37 -0
  696. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00003.json +37 -0
  697. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00004.tid +33 -0
  698. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00005.json +37 -0
  699. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00006.json +37 -0
  700. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00007.tid +33 -0
  701. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00008.tid +33 -0
  702. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00009.json +37 -0
  703. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00010.tid +33 -0
  704. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00011.tid +33 -0
  705. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00012.json +37 -0
  706. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00013.tid +33 -0
  707. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00014.json +37 -0
  708. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00015.json +37 -0
  709. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00016.tid +33 -0
  710. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00017.json +37 -0
  711. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00018.json +37 -0
  712. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00019.json +37 -0
  713. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00020.json +37 -0
  714. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00021.tid +33 -0
  715. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00022.json +37 -0
  716. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00023.json +37 -0
  717. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00024.json +37 -0
  718. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00025.tid +33 -0
  719. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00026.json +37 -0
  720. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00027.tid +33 -0
  721. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00028.json +37 -0
  722. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00029.json +37 -0
  723. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00030.json +37 -0
  724. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00031.json +37 -0
  725. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00032.tid +33 -0
  726. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00033.json +37 -0
  727. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00034.json +37 -0
  728. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00035.tid +33 -0
  729. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00036.tid +33 -0
  730. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00037.json +37 -0
  731. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00038.json +37 -0
  732. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00039.json +37 -0
  733. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00040.json +37 -0
  734. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00041.json +37 -0
  735. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00042.json +37 -0
  736. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00043.json +37 -0
  737. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00044.json +37 -0
  738. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00045.json +37 -0
  739. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00046.json +37 -0
  740. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00047.json +37 -0
  741. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00048.tid +33 -0
  742. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00049.json +37 -0
  743. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00050.json +37 -0
  744. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00051.json +37 -0
  745. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00052.json +37 -0
  746. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00053.json +37 -0
  747. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00054.json +37 -0
  748. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00055.json +37 -0
  749. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00056.tid +33 -0
  750. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00057.json +37 -0
  751. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00058.json +37 -0
  752. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00059.json +37 -0
  753. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00060.tid +33 -0
  754. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00061.json +37 -0
  755. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00062.json +37 -0
  756. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00063.json +37 -0
  757. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00064.json +37 -0
  758. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00065.tid +33 -0
  759. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00066.json +37 -0
  760. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00067.tid +33 -0
  761. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00068.json +37 -0
  762. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00069.tid +33 -0
  763. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00070.tid +33 -0
  764. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00071.json +37 -0
  765. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00072.json +37 -0
  766. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00073.tid +33 -0
  767. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00074.tid +33 -0
  768. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00075.json +37 -0
  769. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00076.json +37 -0
  770. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00077.json +37 -0
  771. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00078.json +37 -0
  772. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00079.json +37 -0
  773. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00080.json +37 -0
  774. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00081.json +37 -0
  775. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00082.json +37 -0
  776. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00083.json +37 -0
  777. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00084.json +37 -0
  778. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00085.json +37 -0
  779. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00086.json +37 -0
  780. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00087.tid +33 -0
  781. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00088.tid +33 -0
  782. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00089.json +37 -0
  783. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00090.json +37 -0
  784. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00091.tid +33 -0
  785. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00092.json +37 -0
  786. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00093.json +37 -0
  787. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00094.tid +33 -0
  788. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00095.json +37 -0
  789. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00096.tid +33 -0
  790. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00097.json +37 -0
  791. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00098.json +37 -0
  792. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00099.json +37 -0
  793. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00100.json +37 -0
  794. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00101.json +37 -0
  795. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00102.tid +33 -0
  796. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00103.json +37 -0
  797. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00104.json +37 -0
  798. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00105.json +37 -0
  799. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00106.tid +33 -0
  800. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00107.json +37 -0
  801. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00108.json +37 -0
  802. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00109.json +37 -0
  803. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00110.json +37 -0
  804. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00111.json +37 -0
  805. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00112.json +37 -0
  806. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00113.json +37 -0
  807. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00114.json +37 -0
  808. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00115.tid +33 -0
  809. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00116.json +37 -0
  810. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00117.json +37 -0
  811. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00118.json +37 -0
  812. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00119.json +37 -0
  813. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00120.json +37 -0
  814. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00121.json +37 -0
  815. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00122.json +37 -0
  816. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00123.json +37 -0
  817. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00124.json +37 -0
  818. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00125.tid +33 -0
  819. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00126.json +37 -0
  820. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00127.json +37 -0
  821. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00128.json +37 -0
  822. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00129.json +37 -0
  823. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00130.json +37 -0
  824. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00131.json +37 -0
  825. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00132.json +37 -0
  826. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00133.tid +33 -0
  827. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00134.tid +33 -0
  828. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00135.json +37 -0
  829. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00136.tid +33 -0
  830. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00137.json +37 -0
  831. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00138.tid +33 -0
  832. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00139.json +37 -0
  833. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00140.json +37 -0
  834. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00141.json +37 -0
  835. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00142.json +37 -0
  836. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00143.json +37 -0
  837. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00144.json +37 -0
  838. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00145.tid +33 -0
  839. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00146.tid +33 -0
  840. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00147.tid +33 -0
  841. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00148.json +37 -0
  842. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00149.json +37 -0
  843. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00150.json +37 -0
  844. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00151.json +37 -0
  845. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00152.json +37 -0
  846. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00153.json +37 -0
  847. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00154.json +37 -0
  848. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00155.tid +33 -0
  849. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00156.json +37 -0
  850. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00157.json +37 -0
  851. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00158.json +37 -0
  852. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00159.json +37 -0
  853. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00160.json +37 -0
  854. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00161.json +37 -0
  855. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00162.json +37 -0
  856. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00163.json +37 -0
  857. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00164.tid +33 -0
  858. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00165.json +37 -0
  859. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00166.json +37 -0
  860. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00167.json +37 -0
  861. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00168.tid +33 -0
  862. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00169.json +37 -0
  863. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00170.json +37 -0
  864. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00171.json +37 -0
  865. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00172.json +37 -0
  866. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00173.json +37 -0
  867. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00174.tid +33 -0
  868. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00175.tid +33 -0
  869. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00176.tid +33 -0
  870. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00177.json +37 -0
  871. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00178.tid +33 -0
  872. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00179.json +37 -0
  873. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00180.json +37 -0
  874. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00181.json +37 -0
  875. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00182.tid +33 -0
  876. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00183.json +37 -0
  877. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00184.json +37 -0
  878. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00185.json +37 -0
  879. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00186.json +37 -0
  880. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00187.json +37 -0
  881. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00188.tid +33 -0
  882. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00189.json +37 -0
  883. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00190.tid +33 -0
  884. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00191.json +37 -0
  885. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00192.json +37 -0
  886. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00193.json +37 -0
  887. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00194.tid +33 -0
  888. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00195.json +37 -0
  889. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00196.json +37 -0
  890. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00197.tid +33 -0
  891. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00198.json +37 -0
  892. package/editions/tiddlywiki-surveys/tiddlers/app/DefaultTiddlers.tid +1 -0
  893. package/editions/tiddlywiki-surveys/tiddlers/app/Definitions.tid +66 -0
  894. package/editions/tiddlywiki-surveys/tiddlers/app/HelloThere.tid +11 -0
  895. package/editions/tiddlywiki-surveys/tiddlers/app/Questions.json +225 -0
  896. package/editions/tiddlywiki-surveys/tiddlers/app/Styles.tid +4 -4
  897. package/editions/tiddlywiki-surveys/tiddlers/app/The Great TiddlyWiki Interview Project 2010.tid +1 -1
  898. package/editions/tiddlywiki-surveys/tiddlers/app/TiddlyWiki Community Survey 2025.tid +5 -0
  899. package/editions/tiddlywiki-surveys/tiddlers/app/ViewTemplate.tid +8 -0
  900. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/row.tid +8 -0
  901. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/sheet.tid +10 -0
  902. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/workbook.tid +8 -0
  903. package/editions/tiddlywiki-surveys/tiddlers/app/default-import-spec.tid +6 -0
  904. package/editions/tiddlywiki-surveys/tiddlers/app/open-state.multids +9 -0
  905. package/editions/tiddlywiki-surveys/tiddlywiki.info +5 -0
  906. package/editions/translators/tiddlers/Instructions for Translators.tid +1 -0
  907. package/editions/translators/tiddlers/system/$__status_UserName.tid +3 -0
  908. package/editions/translators/tiddlywiki.info +1 -0
  909. package/editions/tw5.com/tiddlers/Concatenating a text reference to create a URL.tid +13 -0
  910. package/editions/tw5.com/tiddlers/Concatenating variables to create a URL.tid +13 -0
  911. package/editions/tw5.com/tiddlers/Core CSS Variables.tid +11 -0
  912. package/editions/tw5.com/tiddlers/Deprecated Core Classes.tid +13 -0
  913. package/editions/tw5.com/tiddlers/Deprecated core macros.tid +31 -0
  914. package/editions/tw5.com/tiddlers/TiddlyWiki Docs PR Maker.tid +3 -4
  915. package/editions/tw5.com/tiddlers/Writing stylesheets in vanilla CSS.tid +69 -0
  916. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-macros.tid +44 -6
  917. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-styles.tid +15 -2
  918. package/editions/tw5.com/tiddlers/about/Archive.tid +2 -2
  919. package/editions/tw5.com/tiddlers/about/Developers.tid +2 -13
  920. package/editions/tw5.com/tiddlers/about/Donations.tid +16 -0
  921. package/editions/tw5.com/tiddlers/about/Filter Syntax History.tid +42 -0
  922. package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  923. package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +6 -80
  924. package/editions/tw5.com/tiddlers/about/The Story of TiddlyWiki.tid +69 -0
  925. package/editions/tw5.com/tiddlers/about/TiddlyWiki Anniversaries.tid +31 -0
  926. package/editions/tw5.com/tiddlers/commands/RenderCommand.tid +2 -1
  927. package/editions/tw5.com/tiddlers/community/Articles.tid +1 -1
  928. package/editions/tw5.com/tiddlers/community/Community Editions.tid +1 -1
  929. package/editions/tw5.com/tiddlers/community/Community Palettes.tid +1 -1
  930. package/editions/tw5.com/tiddlers/community/Community Plugins.tid +1 -1
  931. package/editions/tw5.com/tiddlers/community/Community Survey 2025.tid +25 -0
  932. package/editions/tw5.com/tiddlers/community/Community Themes.tid +1 -1
  933. package/editions/tw5.com/tiddlers/community/Community.tid +3 -5
  934. package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -2
  935. package/editions/tw5.com/tiddlers/community/Examples.tid +1 -1
  936. package/editions/tw5.com/tiddlers/community/Forums.tid +9 -17
  937. package/editions/tw5.com/tiddlers/community/Improving TiddlyWiki Documentation.tid +2 -2
  938. package/editions/tw5.com/tiddlers/community/Latest.tid +1 -1
  939. package/editions/tw5.com/tiddlers/community/Meetups.tid +1 -1
  940. package/editions/tw5.com/tiddlers/community/Other Resources.tid +1 -1
  941. package/editions/tw5.com/tiddlers/community/Resources.tid +11 -0
  942. package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
  943. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter.tid +5 -5
  944. package/editions/tw5.com/tiddlers/community/Tutorials.tid +1 -1
  945. package/editions/tw5.com/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +2 -1
  946. package/editions/tw5.com/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +9 -2
  947. package/editions/tw5.com/tiddlers/community/examples/PETTIL.tid +1 -1
  948. package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +1 -1
  949. package/editions/tw5.com/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  950. package/editions/tw5.com/tiddlers/community/plugins/IndexedDB Plugin by Andreas Abeck.tid +2 -1
  951. package/editions/tw5.com/tiddlers/community/plugins/Slider by Mohammad.tid +2 -2
  952. package/editions/tw5.com/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +20 -0
  953. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +16 -0
  954. package/editions/tw5.com/tiddlers/community/tutorials/Un wiki sur votre BiblioBox avec TiddlyWiki.tid +2 -1
  955. package/editions/tw5.com/tiddlers/communitycards/tiddlywiki.files +11 -0
  956. package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +2 -2
  957. package/editions/tw5.com/tiddlers/concepts/Date Fields.tid +3 -2
  958. package/editions/tw5.com/tiddlers/concepts/DefaultTiddlers.tid +1 -1
  959. package/editions/tw5.com/tiddlers/concepts/Filters.tid +2 -2
  960. package/editions/tw5.com/tiddlers/concepts/TiddlyWiki.tid +1 -1
  961. package/editions/tw5.com/tiddlers/css-variables/--tp-animation-duration CSS Variable.tid +8 -0
  962. package/editions/tw5.com/tiddlers/css-variables/--tp-body-font-size Variable.tid +8 -0
  963. package/editions/tw5.com/tiddlers/css-variables/--tp-body-line-height Variable.tid +8 -0
  964. package/editions/tw5.com/tiddlers/css-variables/--tp-code-font-family Variable.tid +8 -0
  965. package/editions/tw5.com/tiddlers/css-variables/--tp-code-wrapping Variable.tid +8 -0
  966. package/editions/tw5.com/tiddlers/css-variables/--tp-editor-font-family Variable.tid +8 -0
  967. package/editions/tw5.com/tiddlers/css-variables/--tp-font-family Variable.tid +8 -0
  968. package/editions/tw5.com/tiddlers/css-variables/--tp-font-size Variable.tid +8 -0
  969. package/editions/tw5.com/tiddlers/css-variables/--tp-line-height Variable.tid +8 -0
  970. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-breakpoint CSS Variable.tid +8 -0
  971. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-width CSS Variable.tid +8 -0
  972. package/editions/tw5.com/tiddlers/css-variables/--tp-story-left CSS Variable.tid +8 -0
  973. package/editions/tw5.com/tiddlers/css-variables/--tp-story-right CSS Variable.tid +8 -0
  974. package/editions/tw5.com/tiddlers/css-variables/--tp-story-top CSS Variable.tid +8 -0
  975. package/editions/tw5.com/tiddlers/css-variables/--tp-story-width CSS Variable.tid +8 -0
  976. package/editions/tw5.com/tiddlers/css-variables/--tp-tiddler-width CSS Variable.tid +8 -0
  977. package/editions/tw5.com/tiddlers/css-variables/--tpc-_ variables.tid +16 -0
  978. package/editions/tw5.com/tiddlers/definitions/BT.tid +1 -1
  979. package/editions/tw5.com/tiddlers/definitions/ContentType.tid +9 -8
  980. package/editions/tw5.com/tiddlers/definitions/Intertwingled Innovations.tid +1 -1
  981. package/editions/tw5.com/tiddlers/definitions/JeremyRuston.tid +1 -13
  982. package/editions/tw5.com/tiddlers/definitions/Jermolene.tid +1 -1
  983. package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +1 -1
  984. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +5 -2
  985. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +4 -2
  986. package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Simple Example.tid +36 -4
  987. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExample.tid +9 -9
  988. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +7 -3
  989. package/editions/tw5.com/tiddlers/features/DateFormat.tid +18 -17
  990. package/editions/tw5.com/tiddlers/filters/examples/days.tid +5 -7
  991. package/editions/tw5.com/tiddlers/filters/examples/jsondelete.tid +59 -0
  992. package/editions/tw5.com/tiddlers/filters/examples/substitute Operator (Examples).tid +45 -22
  993. package/editions/tw5.com/tiddlers/filters/function.tid +2 -2
  994. package/editions/tw5.com/tiddlers/filters/jsondelete.tid +54 -0
  995. package/editions/tw5.com/tiddlers/filters/range.tid +36 -22
  996. package/editions/tw5.com/tiddlers/filters/substitute Operator.tid +2 -2
  997. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +2 -0
  998. package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +11 -1
  999. package/editions/tw5.com/tiddlers/filters/syntax/Filter Step.tid +8 -8
  1000. package/editions/tw5.com/tiddlers/filters/syntax/Filter Syntax.tid +1 -1
  1001. package/editions/tw5.com/tiddlers/filters/syntax/Interchangeable Filter Run Prefixes.tid +3 -0
  1002. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +10 -1
  1003. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix (Examples).tid +13 -0
  1004. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix.tid +30 -0
  1005. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +11 -0
  1006. package/editions/tw5.com/tiddlers/filters/syntax/Shortcut Filter Run Prefixes.tid +4 -3
  1007. package/editions/tw5.com/tiddlers/filters/syntax/then Filter Run Prefix.tid +1 -1
  1008. package/editions/tw5.com/tiddlers/filters/title.tid +2 -0
  1009. package/editions/tw5.com/tiddlers/functions/Functions.tid +6 -5
  1010. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  1011. package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
  1012. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +9 -0
  1013. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  1014. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
  1015. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  1016. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +1 -0
  1017. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
  1018. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  1019. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +11 -0
  1020. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
  1021. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
  1022. package/editions/tw5.com/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +15 -0
  1023. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremy.tid +56 -0
  1024. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyDefinitions.tid +24 -0
  1025. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyStyles.tid +163 -0
  1026. package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  1027. package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +4 -1
  1028. package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +49 -38
  1029. package/editions/tw5.com/tiddlers/images/Blurry Lawn.jpg +0 -0
  1030. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp +0 -0
  1031. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp.meta +4 -0
  1032. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp +0 -0
  1033. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp.meta +3 -0
  1034. package/editions/tw5.com/tiddlers/images/MWS Banner.webp +0 -0
  1035. package/editions/tw5.com/tiddlers/images/MWS Banner.webp.meta +6 -0
  1036. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp +0 -0
  1037. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp.meta +4 -0
  1038. package/editions/tw5.com/tiddlers/images/New Release Banner.webp +0 -0
  1039. package/editions/tw5.com/tiddlers/images/New Release Banner.webp.meta +4 -0
  1040. package/editions/tw5.com/tiddlers/images/TW5-Graph.png +0 -0
  1041. package/editions/tw5.com/tiddlers/images/TW5-Graph.png.meta +4 -0
  1042. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp +0 -0
  1043. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp.meta +5 -0
  1044. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp +0 -0
  1045. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp.meta +4 -0
  1046. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp +0 -0
  1047. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp.meta +4 -0
  1048. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp +0 -0
  1049. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp.meta +4 -0
  1050. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp +0 -0
  1051. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp.meta +4 -0
  1052. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp +0 -0
  1053. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp.meta +4 -0
  1054. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp +0 -0
  1055. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp.meta +4 -0
  1056. package/editions/tw5.com/tiddlers/macros/StylesheetMacros.tid +2 -17
  1057. package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +4 -1
  1058. package/editions/tw5.com/tiddlers/macros/examples/tabs.tid +12 -0
  1059. package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +26 -8
  1060. package/editions/tw5.com/tiddlers/macros/list-tagged-draggable Macro.tid +20 -6
  1061. package/editions/tw5.com/tiddlers/macros/syntax/Call Syntax.tid +43 -0
  1062. package/editions/tw5.com/tiddlers/macros/syntax/CallParameterValue.tid +13 -0
  1063. package/editions/tw5.com/tiddlers/macros/syntax/Macro Call Syntax.tid +3 -27
  1064. package/editions/tw5.com/tiddlers/macros/syntax/Macro Definition Syntax.tid +1 -1
  1065. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Call Syntax.tid +2 -29
  1066. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Definition Syntax.tid +2 -2
  1067. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Syntax.tid +1 -1
  1068. package/editions/tw5.com/tiddlers/macros/tag-pill_Macro.tid +13 -8
  1069. package/editions/tw5.com/tiddlers/mechanisms/Background Actions.tid +28 -0
  1070. package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +30 -3
  1071. package/editions/tw5.com/tiddlers/mechanisms/MediaQueryTrackerMechanism.tid +13 -0
  1072. package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +1 -0
  1073. package/editions/tw5.com/tiddlers/plugins/Plugin_Fields.tid +2 -1
  1074. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _function.tid +1 -1
  1075. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _procedure.tid +1 -1
  1076. package/editions/tw5.com/tiddlers/procedures/Procedure Calls.tid +2 -51
  1077. package/editions/tw5.com/tiddlers/procedures/Procedures.tid +2 -2
  1078. package/editions/tw5.com/tiddlers/procedures/calls/Calls.tid +64 -0
  1079. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9133.tid +8 -0
  1080. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9166.tid +8 -0
  1081. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9175.tid +8 -0
  1082. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9184.tid +8 -0
  1083. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9185.tid +8 -0
  1084. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/32caeb69c3e7b75a80a84a1e14363e87175b164e.tid +10 -0
  1085. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/75502266176de9d4a5e1f89cd7f2e455b7a2f6da.tid +8 -0
  1086. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/93d30f374da4a6b2037b335f7f7d4eddce8192db.tid +8 -0
  1087. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#7898.tid +11 -0
  1088. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8093.tid +10 -0
  1089. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8249-aes-256-bit.tid +25 -0
  1090. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8258.tid +14 -0
  1091. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8810.tid +12 -0
  1092. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8972.tid +16 -0
  1093. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9015-muted-palette-adjustments.tid +11 -0
  1094. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9024 - audio-parser-widget-intercept.tid +10 -0
  1095. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9050.tid +13 -0
  1096. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9055.tid +27 -0
  1097. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9078.tid +16 -0
  1098. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9097.tid +13 -0
  1099. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9103.tid +18 -0
  1100. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9107 - update-configuration-defaults.tid +11 -0
  1101. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9118.tid +10 -0
  1102. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119 - sticky-flag.tid +7 -0
  1103. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119.tid +8 -0
  1104. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131 - strikethrough.tid +9 -0
  1105. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131.tid +8 -0
  1106. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9135.tid +10 -0
  1107. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9148.tid +10 -0
  1108. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9154.tid +8 -0
  1109. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9167.tid +10 -0
  1110. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9177.tid +12 -0
  1111. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183 - core-server-pluginisation.tid +9 -0
  1112. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183.tid +10 -0
  1113. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9203.tid +10 -0
  1114. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid +17 -0
  1115. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid +13 -0
  1116. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9214 - configure-edit-focus.tid +13 -0
  1117. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9235.tid +10 -0
  1118. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242 - deprecate-css-macros.tid +7 -0
  1119. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242.tid +10 -0
  1120. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9243.tid +8 -0
  1121. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253 - textencoder.tid +8 -0
  1122. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253.tid +10 -0
  1123. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9254-list-links-draggable-parameter-missing.tid +14 -0
  1124. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid +13 -0
  1125. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259_impacts_deprecate-eventcatcher-attributes.tid +8 -0
  1126. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid +29 -0
  1127. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275 - remove-range-widget-ie.tid +7 -0
  1128. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275.tid +8 -0
  1129. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9277.tid +10 -0
  1130. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9280.tid +10 -0
  1131. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9281-add-th-debug-element.tid +17 -0
  1132. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9287.tid +10 -0
  1133. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9293-draft-moduls-not-executed.tid +19 -0
  1134. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9295.tid +14 -0
  1135. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9297.tid +12 -0
  1136. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9305.tid +13 -0
  1137. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9313.tid +10 -0
  1138. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316 - currentcolor.tid +8 -0
  1139. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316.tid +10 -0
  1140. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9317-eslint-ignore-output.tid +13 -0
  1141. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9328.tid +10 -0
  1142. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9333.tid +49 -0
  1143. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337 - math-filters .tid +7 -0
  1144. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337.tid +18 -0
  1145. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9341.tid +12 -0
  1146. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9347.tid +8 -0
  1147. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9348.tid +10 -0
  1148. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9349 - cjk-text-spacing.tid +10 -0
  1149. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350 - deprecation.tid +8 -0
  1150. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350.tid +20 -0
  1151. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9358.tid +10 -0
  1152. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9368 - fix-image-paste-rename-ux.tid +10 -0
  1153. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9371.tid +11 -0
  1154. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9375.tid +11 -0
  1155. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9401.tid +10 -0
  1156. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9422.tid +10 -0
  1157. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9427.tid +11 -0
  1158. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9439.tid +10 -0
  1159. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9445.tid +10 -0
  1160. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9453 - diff-text-editcost-param.tid +10 -0
  1161. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9454 - edit-text-rows-precedence.tid +10 -0
  1162. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9465.tid +15 -0
  1163. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9466.tid +15 -0
  1164. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9489.tid +10 -0
  1165. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9494.tid +10 -0
  1166. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9495.tid +10 -0
  1167. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9538.tid +10 -0
  1168. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9548.tid +10 -0
  1169. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9551.tid +15 -0
  1170. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9570.tid +10 -0
  1171. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9582.tid +10 -0
  1172. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9585 - button-classes.tid +13 -0
  1173. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9598.tid +11 -0
  1174. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9600.tid +10 -0
  1175. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609.tid +24 -0
  1176. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609_impacts_event detail variables in eventcatcher.json +13 -0
  1177. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9612-toc-level.tid +14 -0
  1178. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9617 - select-widget-refresh-default.tid +12 -0
  1179. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9621 - list-widget-macros-start-endactions.tid +16 -0
  1180. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9626.tid +10 -0
  1181. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9634-cascade-info-tab.tid +10 -0
  1182. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9641.tid +14 -0
  1183. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9655 - german-translations.tid +10 -0
  1184. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9660.tid +10 -0
  1185. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9676.tid +48 -0
  1186. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9703.tid +13 -0
  1187. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9782 - Greek translation.tid +13 -0
  1188. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/Release 5.4.0.tid +21 -0
  1189. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/add-stylesheet-wiki-info.tid +10 -0
  1190. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/bump-markdown-it.tid +18 -0
  1191. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func - deprecation.tid +8 -0
  1192. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func.tid +10 -0
  1193. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/draft-i18n.tid +15 -0
  1194. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/escapecss-split.tid +10 -0
  1195. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/improve-alert-a11y.tid +10 -0
  1196. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/leilei332-update-eslint-config.tid +14 -0
  1197. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es - api.tid +11 -0
  1198. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es.tid +10 -0
  1199. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/refactor-base64-util.tid +14 -0
  1200. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes Internals.tid +65 -0
  1201. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes.tid +59 -0
  1202. package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +1 -0
  1203. package/editions/tw5.com/tiddlers/releasenotes/ReleasesInfo.multids +67 -0
  1204. package/editions/tw5.com/tiddlers/releasenotes/ReleasesProcedures.tid +397 -0
  1205. package/editions/tw5.com/tiddlers/releasenotes/ReleasesStyles.tid +205 -0
  1206. package/editions/tw5.com/tiddlers/releasenotes/ReleasesSummaryLists.tid +3 -0
  1207. package/editions/tw5.com/tiddlers/releasenotes/ReleasesTabTemplate.tid +12 -0
  1208. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyChangeNote.tid +6 -0
  1209. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyFilters.tid +6 -0
  1210. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyImpactNote.tid +6 -0
  1211. package/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid +6 -4
  1212. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.1.23.tid +298 -0
  1213. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.0.tid +302 -0
  1214. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.4.tid +145 -0
  1215. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.6.tid +149 -0
  1216. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.2.tid +184 -0
  1217. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.7.tid +140 -0
  1218. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.8.tid +19 -0
  1219. package/editions/tw5.com/tiddlers/roadmap/RoadMap.tid +7 -3
  1220. package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MultiWikiServer.tid +1 -1
  1221. package/editions/tw5.com/tiddlers/saving/Encrypted Wiki Import Problems.tid +22 -0
  1222. package/editions/tw5.com/tiddlers/saving/Encryption.tid +4 -4
  1223. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +8 -1
  1224. package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 fallback saver.tid +1 -1
  1225. package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +1 -1
  1226. package/editions/tw5.com/tiddlers/system/DefaultTiddlers.tid +1 -1
  1227. package/editions/tw5.com/tiddlers/system/Sources.tid +1 -1
  1228. package/editions/tw5.com/tiddlers/system/TableOfContents.tid +1 -1
  1229. package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -1
  1230. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +2 -2
  1231. package/editions/tw5.com/tiddlers/tag-pill Macro (Examples).tid +7 -1
  1232. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureDynamicAttributes.tid +40 -0
  1233. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureStaticAttributes.tid +48 -0
  1234. package/editions/tw5.com/tiddlers/testcases/RevealWidget/AccordionSlider.tid +1 -1
  1235. package/editions/tw5.com/tiddlers/testcases/RevealWidget/Popup.tid +1 -1
  1236. package/editions/tw5.com/tiddlers/testcases/RevealWidget/SimpleReveal.tid +1 -1
  1237. package/editions/tw5.com/tiddlers/testcases/RevealWidget/TextReference.tid +1 -1
  1238. package/editions/tw5.com/tiddlers/v5.4.0/Improvements to Macro Calls.tid +48 -0
  1239. package/editions/tw5.com/tiddlers/variables/Behaviour of called variables depends on how the variable was declared.tid +52 -0
  1240. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via filter expression function call.tid +1 -1
  1241. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +3 -1
  1242. package/editions/tw5.com/tiddlers/variables/Multi-Valued Variables.tid +118 -0
  1243. package/editions/tw5.com/tiddlers/variables/Variables.tid +5 -3
  1244. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
  1245. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get File.tid +14 -3
  1246. package/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid +45 -18
  1247. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +7 -4
  1248. package/editions/tw5.com/tiddlers/widgets/DiffTextWidget.tid +57 -33
  1249. package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +12 -13
  1250. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +109 -45
  1251. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +18 -1
  1252. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +14 -2
  1253. package/editions/tw5.com/tiddlers/widgets/LinkWidget.tid +19 -2
  1254. package/editions/tw5.com/tiddlers/widgets/LogWidget.tid +43 -17
  1255. package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +46 -29
  1256. package/editions/tw5.com/tiddlers/widgets/examples/RevealWidget (Popup Clamping Example).tid +68 -0
  1257. package/editions/tw5.com/tiddlers/wikitext/Definitions in WikiText.tid +3 -10
  1258. package/editions/tw5.com/tiddlers/wikitext/Description Lists in WikiText.tid +44 -0
  1259. package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +1 -1
  1260. package/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +5 -1
  1261. package/editions/tw5.com/tiddlers/wikitext/Macro Calls.tid +1 -52
  1262. package/editions/tw5.com/tiddlers/wikitext/Multi-Valued Variable Attribute Values.tid +37 -0
  1263. package/editions/tw5.com/tiddlers/wikitext/Substituted Attribute Values.tid +5 -15
  1264. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +11 -0
  1265. package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +22 -0
  1266. package/editions/tw5.com/tiddlers/wikitext/Typed Blocks in WikiText.tid +31 -42
  1267. package/editions/tw5.com/tiddlers/wikitext/Widget Attributes.tid +3 -1
  1268. package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +1 -1
  1269. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +2 -2
  1270. package/editions/tw5.com/tiddlers/workingwithtw/TiddlyWiki Privacy and Security.tid +2 -1
  1271. package/editions/tw5.com/tiddlywiki.info +3 -3
  1272. package/editions/zh-Hans/tiddlers/system/download-empty-zh-Hans.tid +1 -1
  1273. package/editions/zh-Hans/tiddlywiki.info +1 -2
  1274. package/editions/zh-Hant/tiddlers/system/download-empty-zh-Hant.tid +1 -1
  1275. package/editions/zh-Hant/tiddlywiki.info +1 -2
  1276. package/eslint.config.mjs +327 -0
  1277. package/languages/ca-ES/ControlPanel.multids +1 -1
  1278. package/languages/da-DK/ControlPanel.multids +1 -1
  1279. package/languages/de-DE/ControlPanel.multids +7 -3
  1280. package/languages/de-DE/Draft.multids +4 -0
  1281. package/languages/de-DE/Import.multids +3 -1
  1282. package/languages/de-DE/Misc.multids +1 -0
  1283. package/languages/de-DE/TiddlerInfo.multids +5 -0
  1284. package/languages/el-GR/Buttons.multids +73 -0
  1285. package/languages/el-GR/ControlPanel.multids +119 -57
  1286. package/languages/el-GR/Dates.multids +67 -0
  1287. package/languages/el-GR/Docs/ModuleTypes.multids +8 -0
  1288. package/languages/el-GR/Docs/PaletteColours.multids +26 -1
  1289. package/languages/el-GR/Draft.multids +4 -0
  1290. package/languages/el-GR/EditTemplate.multids +21 -2
  1291. package/languages/el-GR/Exporters.multids +3 -2
  1292. package/languages/el-GR/Fields.multids +12 -0
  1293. package/languages/el-GR/Filters.multids +5 -0
  1294. package/languages/el-GR/Help/help.tid +10 -0
  1295. package/languages/el-GR/Help/unpackplugin.tid +8 -0
  1296. package/languages/el-GR/Help/version.tid +8 -0
  1297. package/languages/el-GR/Import.multids +9 -1
  1298. package/languages/el-GR/Misc.multids +46 -6
  1299. package/languages/el-GR/NewJournal.multids +2 -0
  1300. package/languages/el-GR/Notifications.multids +2 -0
  1301. package/languages/el-GR/Search.multids +13 -0
  1302. package/languages/el-GR/SideBar.multids +15 -0
  1303. package/languages/el-GR/SiteSubtitle.tid +1 -0
  1304. package/languages/el-GR/ThemeTweaks.multids +24 -2
  1305. package/languages/el-GR/TiddlerInfo.multids +19 -0
  1306. package/languages/el-GR/Types/image_gif.tid +4 -0
  1307. package/languages/el-GR/Types/image_jpeg.tid +4 -0
  1308. package/languages/el-GR/Types/image_png.tid +4 -0
  1309. package/languages/el-GR/Types/text_html.tid +4 -0
  1310. package/languages/el-GR/Types/text_plain.tid +4 -0
  1311. package/languages/el-GR/Types/text_vnd.tiddlywiki.tid +4 -0
  1312. package/languages/es-ES/ControlPanel.multids +16 -10
  1313. package/languages/es-ES/Fields.multids +3 -3
  1314. package/languages/es-ES/Misc.multids +1 -1
  1315. package/languages/fa-IR/plugin.info +1 -1
  1316. package/languages/fr-FR/ControlPanel.multids +15 -7
  1317. package/languages/fr-FR/Misc.multids +1 -0
  1318. package/languages/it-IT/ControlPanel.multids +1 -1
  1319. package/languages/ja-JP/Buttons.multids +15 -4
  1320. package/languages/ja-JP/ControlPanel.multids +35 -7
  1321. package/languages/ja-JP/Docs/ModuleTypes.multids +10 -1
  1322. package/languages/ja-JP/Docs/PaletteColours.multids +15 -0
  1323. package/languages/ja-JP/Draft.multids +4 -0
  1324. package/languages/ja-JP/EditTemplate.multids +2 -0
  1325. package/languages/ja-JP/Exporters.multids +4 -1
  1326. package/languages/ja-JP/Fields.multids +14 -8
  1327. package/languages/ja-JP/GettingStarted.tid +7 -14
  1328. package/languages/ja-JP/Help/commands.tid +18 -0
  1329. package/languages/ja-JP/Help/deletetiddlers.tid +8 -0
  1330. package/languages/ja-JP/Help/fetch.tid +38 -0
  1331. package/languages/ja-JP/Help/import.tid +24 -0
  1332. package/languages/ja-JP/Help/listen.tid +34 -0
  1333. package/languages/ja-JP/Help/load.tid +5 -2
  1334. package/languages/ja-JP/Help/password.tid +1 -1
  1335. package/languages/ja-JP/Help/render.tid +36 -0
  1336. package/languages/ja-JP/Help/rendertiddler.tid +19 -3
  1337. package/languages/ja-JP/Help/rendertiddlers.tid +9 -3
  1338. package/languages/ja-JP/Help/save.tid +25 -0
  1339. package/languages/ja-JP/Help/savetiddler.tid +7 -1
  1340. package/languages/ja-JP/Help/savetiddlers.tid +8 -6
  1341. package/languages/ja-JP/Help/savewikifolder.tid +34 -0
  1342. package/languages/ja-JP/Help/server.tid +24 -13
  1343. package/languages/ja-JP/Import.multids +3 -1
  1344. package/languages/ja-JP/Misc.multids +36 -35
  1345. package/languages/ja-JP/NewJournal.multids +1 -1
  1346. package/languages/ja-JP/NewJournalTags.tid +3 -0
  1347. package/languages/ja-JP/Notifications.multids +2 -0
  1348. package/languages/ja-JP/Search.multids +3 -1
  1349. package/languages/ja-JP/SideBar.multids +1 -1
  1350. package/languages/ja-JP/SiteTitle.tid +1 -1
  1351. package/languages/ja-JP/Snippets/FunctionDefinition.tid +7 -0
  1352. package/languages/ja-JP/Snippets/ListByTag.tid +5 -0
  1353. package/languages/ja-JP/Snippets/MacroDefinition.tid +7 -0
  1354. package/languages/ja-JP/Snippets/ProcedureDefinition.tid +7 -0
  1355. package/languages/ja-JP/Snippets/Table4x3.tid +8 -0
  1356. package/languages/ja-JP/Snippets/TableOfContents.tid +9 -0
  1357. package/languages/ja-JP/ThemeTweaks.multids +42 -0
  1358. package/languages/ja-JP/TiddlerInfo.multids +6 -1
  1359. package/languages/ja-JP/Types/application_javascript.tid +5 -0
  1360. package/languages/ja-JP/Types/application_json.tid +5 -0
  1361. package/languages/ja-JP/Types/application_x-tiddler-dictionary.tid +5 -0
  1362. package/languages/ja-JP/Types/image_gif.tid +5 -0
  1363. package/languages/ja-JP/Types/image_jpeg.tid +5 -0
  1364. package/languages/ja-JP/Types/image_png.tid +5 -0
  1365. package/languages/ja-JP/Types/image_svg+xml.tid +5 -0
  1366. package/languages/ja-JP/Types/text_css.tid +5 -0
  1367. package/languages/ja-JP/Types/text_html.tid +5 -0
  1368. package/languages/ja-JP/Types/text_plain.tid +5 -0
  1369. package/languages/ja-JP/Types/text_vnd.tiddlywiki-multiple.tid +5 -0
  1370. package/languages/ja-JP/Types/text_vnd.tiddlywiki.tid +5 -0
  1371. package/languages/mk-MK/ControlPanel.multids +1 -1
  1372. package/languages/nl-NL/ControlPanel.multids +1 -1
  1373. package/languages/pl-PL/ControlPanel.multids +12 -8
  1374. package/languages/pl-PL/Fields.multids +1 -0
  1375. package/languages/pt-BR/ControlPanel.multids +1 -1
  1376. package/languages/pt-PT/ControlPanel.multids +1 -1
  1377. package/languages/sl-SI/ControlPanel.multids +1 -1
  1378. package/languages/zh-Hans/ControlPanel.multids +6 -2
  1379. package/languages/zh-Hans/Draft.multids +4 -0
  1380. package/languages/zh-Hans/Import.multids +2 -0
  1381. package/languages/zh-Hans/Misc.multids +1 -0
  1382. package/languages/zh-Hans/TiddlerInfo.multids +5 -0
  1383. package/languages/zh-Hant/ControlPanel.multids +7 -3
  1384. package/languages/zh-Hant/Draft.multids +4 -0
  1385. package/languages/zh-Hant/Import.multids +2 -0
  1386. package/languages/zh-Hant/Misc.multids +1 -0
  1387. package/languages/zh-Hant/TiddlerInfo.multids +5 -0
  1388. package/licenses/cla-individual.md +26 -0
  1389. package/package.json +9 -6
  1390. package/playwright.config.js +5 -0
  1391. package/plugins/tiddlywiki/aws/modules/command.js +2 -6
  1392. package/plugins/tiddlywiki/aws/modules/init.js +1 -1
  1393. package/plugins/tiddlywiki/bibtex/deserializer.js +1 -1
  1394. package/plugins/tiddlywiki/browser-sniff/browser.js +1 -2
  1395. package/plugins/tiddlywiki/browser-storage/settings.tid +1 -1
  1396. package/plugins/tiddlywiki/browser-storage/startup.js +4 -10
  1397. package/plugins/tiddlywiki/browser-storage/util.js +72 -74
  1398. package/plugins/tiddlywiki/codemirror/engine.js +48 -46
  1399. package/plugins/tiddlywiki/confetti/confetti-widget.js +0 -2
  1400. package/plugins/tiddlywiki/dom-to-image/docs.tid +66 -0
  1401. package/plugins/tiddlywiki/dom-to-image/files/LICENSE +29 -0
  1402. package/plugins/tiddlywiki/dom-to-image/files/dom-to-image-more.min.js +3 -0
  1403. package/plugins/tiddlywiki/dom-to-image/files/tiddlywiki.files +21 -0
  1404. package/plugins/tiddlywiki/dom-to-image/plugin.info +7 -0
  1405. package/plugins/tiddlywiki/dom-to-image/readme.tid +3 -0
  1406. package/plugins/tiddlywiki/dom-to-image/startup.js +92 -0
  1407. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -12
  1408. package/plugins/tiddlywiki/dynannotate/modules/element-spotlight.js +1 -1
  1409. package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +4 -4
  1410. package/plugins/tiddlywiki/dynannotate/modules/textmap.js +5 -5
  1411. package/plugins/tiddlywiki/dynaview/dynaview.js +1 -1
  1412. package/plugins/tiddlywiki/evernote/modules/enex-deserializer.js +5 -5
  1413. package/plugins/tiddlywiki/external-attachments/startup.js +2 -2
  1414. package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +1 -3
  1415. package/plugins/tiddlywiki/filesystem/plugin.info +1 -0
  1416. package/plugins/tiddlywiki/freelinks/aho-corasick.js +190 -0
  1417. package/plugins/tiddlywiki/freelinks/config-Freelinks-WordBoundary.tid +2 -0
  1418. package/plugins/tiddlywiki/freelinks/readme.tid +26 -5
  1419. package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
  1420. package/plugins/tiddlywiki/freelinks/text.js +229 -113
  1421. package/plugins/tiddlywiki/geospatial/geotools.js +2 -2
  1422. package/plugins/tiddlywiki/geospatial/operators/lookup.js +1 -1
  1423. package/plugins/tiddlywiki/geospatial/operators/olc.js +3 -4
  1424. package/plugins/tiddlywiki/geospatial/operators/transformation.js +2 -3
  1425. package/plugins/tiddlywiki/geospatial/widgets/geomap.js +9 -9
  1426. package/plugins/tiddlywiki/googleanalytics/googleanalytics.js +1 -1
  1427. package/plugins/tiddlywiki/highlight/files/highlight.min.js +1132 -1289
  1428. package/plugins/tiddlywiki/highlight/highlightblock.js +4 -4
  1429. package/plugins/tiddlywiki/highlight/readme.tid +1 -1
  1430. package/plugins/tiddlywiki/highlight/usage.tid +2 -2
  1431. package/plugins/tiddlywiki/innerwiki/innerwiki.js +2 -3
  1432. package/plugins/tiddlywiki/innerwiki/screenshot.js +1 -3
  1433. package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +12 -3
  1434. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +3 -5
  1435. package/plugins/tiddlywiki/jasmine/startup.js +1 -1
  1436. package/plugins/tiddlywiki/jszip/startup.js +3 -3
  1437. package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -1
  1438. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1439. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1440. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1441. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1442. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1443. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1444. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1445. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1446. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1447. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1448. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1449. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1450. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1451. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1452. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1453. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1454. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1455. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1456. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1457. package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
  1458. package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
  1459. package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
  1460. package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
  1461. package/plugins/tiddlywiki/katex/latex-parser.js +1 -1
  1462. package/plugins/tiddlywiki/katex/readme.tid +1 -1
  1463. package/plugins/tiddlywiki/katex/styles.tid +40 -20
  1464. package/plugins/tiddlywiki/katex/wrapper.js +1 -1
  1465. package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +1 -1
  1466. package/plugins/tiddlywiki/markdown/files/markdown-it-deflist.min.js +2 -7
  1467. package/plugins/tiddlywiki/markdown/files/markdown-it-footnote.min.js +2 -1
  1468. package/plugins/tiddlywiki/markdown/files/markdown-it-ins.min.js +2 -2
  1469. package/plugins/tiddlywiki/markdown/files/markdown-it-mark.min.js +2 -2
  1470. package/plugins/tiddlywiki/markdown/files/markdown-it-sub.min.js +2 -2
  1471. package/plugins/tiddlywiki/markdown/files/markdown-it-sup.min.js +2 -2
  1472. package/plugins/tiddlywiki/markdown/files/markdown-it.min.js +2 -3
  1473. package/plugins/tiddlywiki/markdown/markdown-it-katex.js +131 -131
  1474. package/plugins/tiddlywiki/markdown/markdown-it-tiddlywiki.js +102 -104
  1475. package/plugins/tiddlywiki/markdown/styles.tid +3 -0
  1476. package/plugins/tiddlywiki/markdown/wrapper.js +32 -23
  1477. package/plugins/tiddlywiki/markdown-legacy/wrapper.js +143 -144
  1478. package/plugins/tiddlywiki/qrcode/makeqr.js +1 -1
  1479. package/plugins/tiddlywiki/railroad/components.js +21 -21
  1480. package/plugins/tiddlywiki/railroad/parser.js +4 -4
  1481. package/plugins/tiddlywiki/railroad/typed-parser.js +5 -5
  1482. package/plugins/tiddlywiki/railroad/wrapper.js +1 -1
  1483. package/plugins/tiddlywiki/stacked-view/stacked.js +0 -1
  1484. package/plugins/tiddlywiki/text-slicer/modules/commands/slice.js +15 -16
  1485. package/plugins/tiddlywiki/text-slicer/modules/slicer.js +69 -70
  1486. package/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup.js +1 -1
  1487. package/plugins/tiddlywiki/tiddlyweb/config-tiddlers-filter.tid +1 -1
  1488. package/plugins/tiddlywiki/tiddlyweb/save-offline.tid +1 -1
  1489. package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +5 -7
  1490. package/plugins/tiddlywiki/translators/output-file-templates/Draft.multids.tid +3 -0
  1491. package/plugins/tiddlywiki/translators/output-file-templates/Misc.multids.tid +1 -0
  1492. package/plugins/tiddlywiki/translators/ui/group/Draft.tid +28 -0
  1493. package/plugins/tiddlywiki/translators/ui/group/Miscellaneous.tid +1 -0
  1494. package/plugins/tiddlywiki/tw2parser/classictransclude.js +3 -4
  1495. package/plugins/tiddlywiki/tw2parser/entry.js +1 -1
  1496. package/plugins/tiddlywiki/tw2parser/parameteradapter.js +6 -5
  1497. package/plugins/tiddlywiki/tw2parser/wikitextrules.js +594 -598
  1498. package/plugins/tiddlywiki/tw5.com-docs/readme.tid +1 -1
  1499. package/plugins/tiddlywiki/twitter/twitter-widget.js +3 -3
  1500. package/plugins/tiddlywiki/twitter-archivist/archivist.js +41 -10
  1501. package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +5 -7
  1502. package/plugins/tiddlywiki/twitter-archivist/startup.js +4 -4
  1503. package/plugins/tiddlywiki/upgrade/save-tiddler-filter.tid +1 -1
  1504. package/plugins/tiddlywiki/wikitext-serialize/plugin.info +7 -0
  1505. package/plugins/tiddlywiki/wikitext-serialize/rules/codeblock.js +13 -0
  1506. package/plugins/tiddlywiki/wikitext-serialize/rules/codeinline.js +13 -0
  1507. package/plugins/tiddlywiki/wikitext-serialize/rules/commentblock.js +13 -0
  1508. package/plugins/tiddlywiki/wikitext-serialize/rules/commentinline.js +13 -0
  1509. package/plugins/tiddlywiki/wikitext-serialize/rules/conditional.js +42 -0
  1510. package/plugins/tiddlywiki/wikitext-serialize/rules/dash.js +13 -0
  1511. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/bold.js +13 -0
  1512. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/italic.js +13 -0
  1513. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/strikethrough.js +13 -0
  1514. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/subscript.js +13 -0
  1515. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/superscript.js +13 -0
  1516. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/underscore.js +13 -0
  1517. package/plugins/tiddlywiki/wikitext-serialize/rules/entity.js +13 -0
  1518. package/plugins/tiddlywiki/wikitext-serialize/rules/extlink.js +17 -0
  1519. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeblock.js +24 -0
  1520. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeinline.js +15 -0
  1521. package/plugins/tiddlywiki/wikitext-serialize/rules/fnprocdef.js +24 -0
  1522. package/plugins/tiddlywiki/wikitext-serialize/rules/hardlinebreaks.js +20 -0
  1523. package/plugins/tiddlywiki/wikitext-serialize/rules/heading.js +17 -0
  1524. package/plugins/tiddlywiki/wikitext-serialize/rules/horizrule.js +13 -0
  1525. package/plugins/tiddlywiki/wikitext-serialize/rules/html.js +34 -0
  1526. package/plugins/tiddlywiki/wikitext-serialize/rules/image.js +18 -0
  1527. package/plugins/tiddlywiki/wikitext-serialize/rules/import.js +15 -0
  1528. package/plugins/tiddlywiki/wikitext-serialize/rules/list.js +76 -0
  1529. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallblock.js +27 -0
  1530. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallinline.js +15 -0
  1531. package/plugins/tiddlywiki/wikitext-serialize/rules/macrodef.js +21 -0
  1532. package/plugins/tiddlywiki/wikitext-serialize/rules/parameters.js +16 -0
  1533. package/plugins/tiddlywiki/wikitext-serialize/rules/parsermode.js +14 -0
  1534. package/plugins/tiddlywiki/wikitext-serialize/rules/prettyextlink.js +15 -0
  1535. package/plugins/tiddlywiki/wikitext-serialize/rules/prettylink.js +15 -0
  1536. package/plugins/tiddlywiki/wikitext-serialize/rules/quoteblock.js +24 -0
  1537. package/plugins/tiddlywiki/wikitext-serialize/rules/rules.js +26 -0
  1538. package/plugins/tiddlywiki/wikitext-serialize/rules/styleblock.js +57 -0
  1539. package/plugins/tiddlywiki/wikitext-serialize/rules/styleinline.js +28 -0
  1540. package/plugins/tiddlywiki/wikitext-serialize/rules/syslink.js +18 -0
  1541. package/plugins/tiddlywiki/wikitext-serialize/rules/table.js +39 -0
  1542. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeblock.js +57 -0
  1543. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeinline.js +15 -0
  1544. package/plugins/tiddlywiki/wikitext-serialize/rules/typedblock.js +16 -0
  1545. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilink.js +17 -0
  1546. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilinkprefix.js +15 -0
  1547. package/plugins/tiddlywiki/wikitext-serialize/utils/parsetree.js +132 -0
  1548. package/plugins/tiddlywiki/xlsx-utils/deserializer.js +1 -2
  1549. package/plugins/tiddlywiki/xlsx-utils/importer.js +30 -18
  1550. package/plugins/tiddlywiki/xlsx-utils/xlsx-import-command.js +1 -2
  1551. package/readme.md +2 -5
  1552. package/themes/tiddlywiki/snowwhite/base.tid +34 -20
  1553. package/themes/tiddlywiki/vanilla/base.tid +135 -50
  1554. package/themes/tiddlywiki/vanilla/options.multids +1 -1
  1555. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -67
  1556. package/.github/workflows/pr-path-validation.yml +0 -18
  1557. package/core/modules/commander.js +0 -172
  1558. package/core/modules/commands/commands.js +0 -36
  1559. package/core/modules/commands/deletetiddlers.js +0 -37
  1560. package/core/modules/commands/fetch.js +0 -170
  1561. package/core/modules/commands/import.js +0 -43
  1562. package/core/modules/commands/init.js +0 -54
  1563. package/core/modules/commands/listen.js +0 -43
  1564. package/core/modules/commands/load.js +0 -46
  1565. package/core/modules/commands/output.js +0 -33
  1566. package/core/modules/commands/render.js +0 -65
  1567. package/core/modules/commands/rendertiddlers.js +0 -64
  1568. package/core/modules/commands/save.js +0 -63
  1569. package/core/modules/commands/savetiddlers.js +0 -51
  1570. package/core/modules/commands/savewikifolder.js +0 -220
  1571. package/core/modules/commands/server.js +0 -50
  1572. package/core/modules/commands/setfield.js +0 -53
  1573. package/core/modules/server/authenticators/basic.js +0 -89
  1574. package/core/modules/server/routes/delete-tiddler.js +0 -22
  1575. package/core/modules/server/routes/get-favicon.js +0 -18
  1576. package/core/modules/server/routes/get-file.js +0 -42
  1577. package/core/modules/server/routes/get-index.js +0 -21
  1578. package/core/modules/server/routes/get-login-basic.js +0 -30
  1579. package/core/modules/server/routes/get-status.js +0 -27
  1580. package/core/modules/server/routes/get-tiddler-html.js +0 -38
  1581. package/core/modules/server/routes/get-tiddler.js +0 -40
  1582. package/core/modules/server/routes/get-tiddlers-json.js +0 -44
  1583. package/core/modules/server/routes/put-tiddler.js +0 -46
  1584. package/core/modules/server/server.js +0 -373
  1585. package/core/modules/utils/base64-utf8/base64-utf8.module.js +0 -142
  1586. package/core/modules/utils/base64-utf8/base64-utf8.module.min.js +0 -9
  1587. package/core/modules/utils/base64-utf8/tiddlywiki.files +0 -14
  1588. package/core/modules/utils/filesystem.js +0 -542
  1589. package/core/modules/utils/repository.js +0 -46
  1590. package/editions/d3demo/tiddlers/CloudData.tid +0 -44
  1591. package/editions/d3demo/tiddlers/DefaultTiddlers.tid +0 -3
  1592. package/editions/d3demo/tiddlers/GraphData.tid +0 -10
  1593. package/editions/d3demo/tiddlers/HelloThere.tid +0 -17
  1594. package/editions/d3demo/tiddlers/SiteSubtitle.tid +0 -3
  1595. package/editions/d3demo/tiddlers/SiteTitle.tid +0 -3
  1596. package/editions/d3demo/tiddlers/grouped.tid +0 -3
  1597. package/editions/d3demo/tiddlers/spiral.tid +0 -3
  1598. package/editions/d3demo/tiddlywiki.info +0 -16
  1599. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -17
  1600. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -18
  1601. package/editions/ja-JP/tiddlers/hellothere/Welcome.tid +0 -8
  1602. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -10
  1603. package/editions/tahoelafs/tiddlers/DefaultTiddlers.tid +0 -3
  1604. package/editions/tahoelafs/tiddlers/HelloThere.tid +0 -6
  1605. package/editions/tahoelafs/tiddlers/SiteSubtitle.tid +0 -3
  1606. package/editions/tahoelafs/tiddlers/SiteTitle.tid +0 -3
  1607. package/editions/tahoelafs/tiddlywiki.info +0 -14
  1608. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project.htm +0 -23430
  1609. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon +0 -0
  1610. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(1) +0 -0
  1611. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(10) +0 -0
  1612. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(11) +0 -0
  1613. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(12) +0 -0
  1614. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(13) +0 -0
  1615. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(14) +0 -0
  1616. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(15) +0 -0
  1617. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(16) +0 -0
  1618. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(17) +0 -0
  1619. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(18) +0 -0
  1620. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(19) +0 -0
  1621. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(2) +0 -0
  1622. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(20) +0 -0
  1623. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(21) +0 -0
  1624. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(22) +0 -0
  1625. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(23) +0 -0
  1626. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(24) +0 -0
  1627. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(3) +0 -0
  1628. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(4) +0 -0
  1629. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(5) +0 -0
  1630. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(6) +0 -0
  1631. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(7) +0 -0
  1632. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(8) +0 -0
  1633. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(9) +0 -0
  1634. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/app.css +0 -191
  1635. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.html +0 -95
  1636. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.js +0 -360
  1637. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs +0 -373
  1638. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.identities +0 -42
  1639. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.space +0 -108
  1640. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.users +0 -57
  1641. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/help.png +0 -0
  1642. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/jquery.js +0 -11
  1643. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/normalize.css +0 -406
  1644. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/publicIcon +0 -0
  1645. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/search.png +0 -0
  1646. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/status.js +0 -2
  1647. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/ts.js +0 -766
  1648. package/editions/tiddlywiki-surveys/great-interview-project-2010/readme.md +0 -3
  1649. package/editions/tiddlywiki-surveys/tiddlers/$__StoryList.tid +0 -2
  1650. package/editions/tw5.com/tiddlers/$__StoryList.tid +0 -3
  1651. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter Team.tid +0 -60
  1652. package/editions/tw5.com/tiddlers/community/resources/_TWeb.at_ by Mario Pietsch.tid +0 -16
  1653. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -16
  1654. package/editions/tw5.com/tiddlers/definitions/TiddlyIE.tid +0 -9
  1655. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +0 -10
  1656. package/editions/tw5.com/tiddlers/hellothere/Welcome.tid +0 -7
  1657. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -9
  1658. package/editions/tw5.com/tiddlers/howtos/Windows HTA Hack.tid +0 -17
  1659. package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
  1660. package/editions/tw5.com/tiddlers/images/Funding.png.meta +0 -4
  1661. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png +0 -0
  1662. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png.meta +0 -3
  1663. package/editions/tw5.com/tiddlers/images/MWS Banner.png +0 -0
  1664. package/editions/tw5.com/tiddlers/images/MWS Banner.png.meta +0 -4
  1665. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
  1666. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +0 -4
  1667. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  1668. package/editions/tw5.com/tiddlers/images/New Release Banner.png.meta +0 -4
  1669. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png +0 -0
  1670. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png.meta +0 -5
  1671. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png +0 -0
  1672. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png.meta +0 -4
  1673. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png +0 -0
  1674. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png.meta +0 -4
  1675. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png +0 -0
  1676. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png.meta +0 -6
  1677. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png +0 -0
  1678. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png.meta +0 -6
  1679. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png +0 -0
  1680. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png.meta +0 -4
  1681. package/editions/tw5.com/tiddlers/macros/syntax/MacroParameterValue.tid +0 -11
  1682. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +0 -298
  1683. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +0 -302
  1684. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +0 -145
  1685. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.6.tid +0 -149
  1686. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +0 -184
  1687. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.7.tid +0 -140
  1688. package/editions/tw5.com/tiddlers/saving/Saving with TiddlyIE.tid +0 -25
  1689. package/editions/tw5.com/tiddlers/variables/Behaviour of invoked variables depends on how the variable was declared.tid +0 -52
  1690. package/eslint.config.js +0 -333
  1691. package/languages/ja-JP/Types/application%2Fjavascript.tid +0 -4
  1692. package/languages/ja-JP/Types/application%2Fjson.tid +0 -4
  1693. package/languages/ja-JP/Types/application%2Fx-tiddler-dictionary.tid +0 -4
  1694. package/languages/ja-JP/Types/image%2Fgif.tid +0 -4
  1695. package/languages/ja-JP/Types/image%2Fjpeg.tid +0 -4
  1696. package/languages/ja-JP/Types/image%2Fpng.tid +0 -4
  1697. package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +0 -4
  1698. package/languages/ja-JP/Types/text%2Fcss.tid +0 -4
  1699. package/languages/ja-JP/Types/text%2Fhtml.tid +0 -4
  1700. package/languages/ja-JP/Types/text%2Fplain.tid +0 -4
  1701. package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +0 -4
  1702. package/plugins/tiddlywiki/blog/docs.tid +0 -6
  1703. package/plugins/tiddlywiki/blog/plugin.info +0 -7
  1704. package/plugins/tiddlywiki/blog/readme.tid +0 -5
  1705. package/plugins/tiddlywiki/blog/templates/html-page/page.tid +0 -31
  1706. package/plugins/tiddlywiki/blog/templates/html-page/post.tid +0 -32
  1707. package/plugins/tiddlywiki/blog/templates/menu.tid +0 -15
  1708. package/plugins/tiddlywiki/blog/templates/tiddler.tid +0 -35
  1709. package/plugins/tiddlywiki/cecily/cecily.js +0 -140
  1710. package/plugins/tiddlywiki/cecily/plugin.info +0 -7
  1711. package/plugins/tiddlywiki/cecily/readme.tid +0 -9
  1712. package/plugins/tiddlywiki/cecily/storyview-cecily.tid +0 -8
  1713. package/plugins/tiddlywiki/d3/barwidget.js +0 -199
  1714. package/plugins/tiddlywiki/d3/base.tid +0 -18
  1715. package/plugins/tiddlywiki/d3/cloudwidget.js +0 -128
  1716. package/plugins/tiddlywiki/d3/files/LICENSE +0 -26
  1717. package/plugins/tiddlywiki/d3/files/cloud/LICENSE +0 -26
  1718. package/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud.js +0 -401
  1719. package/plugins/tiddlywiki/d3/files/d3.min.js +0 -5
  1720. package/plugins/tiddlywiki/d3/files/tiddlywiki.files +0 -22
  1721. package/plugins/tiddlywiki/d3/plugin.info +0 -7
  1722. package/plugins/tiddlywiki/d3/readme.tid +0 -7
  1723. package/plugins/tiddlywiki/hammerjs/files/LICENSE.markdown +0 -21
  1724. package/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8.js +0 -6
  1725. package/plugins/tiddlywiki/hammerjs/files/tiddlywiki.files +0 -20
  1726. package/plugins/tiddlywiki/hammerjs/plugin.info +0 -8
  1727. package/plugins/tiddlywiki/hammerjs/readme.tid +0 -3
  1728. package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +0 -9
  1729. package/plugins/tiddlywiki/highlight-legacy/files/default.css +0 -99
  1730. package/plugins/tiddlywiki/highlight-legacy/files/highlight.pack.js +0 -2
  1731. package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +0 -22
  1732. package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +0 -38
  1733. package/plugins/tiddlywiki/highlight-legacy/license.tid +0 -27
  1734. package/plugins/tiddlywiki/highlight-legacy/plugin.info +0 -8
  1735. package/plugins/tiddlywiki/highlight-legacy/readme.tid +0 -65
  1736. package/plugins/tiddlywiki/highlight-legacy/styles.tid +0 -82
  1737. package/plugins/tiddlywiki/highlight-legacy/usage.tid +0 -28
  1738. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
  1739. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1740. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1741. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1742. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1743. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
  1744. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1745. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
  1746. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
  1747. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1748. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
  1749. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1750. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1751. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1752. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
  1753. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
  1754. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
  1755. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
  1756. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
  1757. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1758. package/plugins/tiddlywiki/mobiledragdrop/files/LICENSE +0 -7
  1759. package/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop.js +0 -477
  1760. package/plugins/tiddlywiki/mobiledragdrop/files/tiddlywiki.files +0 -18
  1761. package/plugins/tiddlywiki/mobiledragdrop/plugin.info +0 -8
  1762. package/plugins/tiddlywiki/mobiledragdrop/rawmarkup.tid +0 -7
  1763. package/plugins/tiddlywiki/mobiledragdrop/readme.tid +0 -5
  1764. package/plugins/tiddlywiki/mobiledragdrop/startup.js +0 -20
  1765. package/plugins/tiddlywiki/nodewebkitsaver/nodewebkit.js +0 -59
  1766. package/plugins/tiddlywiki/nodewebkitsaver/plugin.info +0 -7
  1767. package/plugins/tiddlywiki/nodewebkitsaver/readme.tid +0 -5
  1768. package/plugins/tiddlywiki/tahoelafs/plugin.info +0 -7
  1769. package/plugins/tiddlywiki/tahoelafs/readme.tid +0 -7
  1770. package/plugins/tiddlywiki/tahoelafs/saver.js +0 -52
  1771. /package/{core/modules → core-server}/commands/build.js +0 -0
  1772. /package/{core/modules → core-server}/commands/clearpassword.js +0 -0
  1773. /package/{core/modules → core-server}/commands/editions.js +0 -0
  1774. /package/{core/modules → core-server}/commands/help.js +0 -0
  1775. /package/{core/modules → core-server}/commands/makelibrary.js +0 -0
  1776. /package/{core/modules → core-server}/commands/password.js +0 -0
  1777. /package/{core/modules → core-server}/commands/rendertiddler.js +0 -0
  1778. /package/{core/modules → core-server}/commands/savelibrarytiddlers.js +0 -0
  1779. /package/{core/modules → core-server}/commands/savetiddler.js +0 -0
  1780. /package/{core/modules → core-server}/commands/unpackplugin.js +0 -0
  1781. /package/{core/modules → core-server}/commands/verbose.js +0 -0
  1782. /package/{core/modules → core-server}/commands/version.js +0 -0
  1783. /package/{core/modules → core-server}/server/authenticators/header.js +0 -0
  1784. /package/{core/modules → core-server}/startup/commands.js +0 -0
  1785. /package/{core/modules → core-server}/utils/edition-info.js +0 -0
  1786. /package/editions/ja-JP/tiddlers/hiddensettings/{Hidden Setting_ Default Tiddler Icon.tid → Hidden Setting Default Tiddler Icon.tid} +0 -0
  1787. /package/editions/ja-JP/tiddlers/howtos/{Custom Styles FAQ.tid → Custom_Styles_FAQ.tid} +0 -0
  1788. /package/editions/ja-JP/tiddlers/howtos/{How to hide the author's and other fields with CSS.tid → How to hide the authors and other fields with CSS.tid} +0 -0
  1789. /package/editions/ja-JP/tiddlers/howtos/{How to widen tiddlers (aka storyriver).tid → How to widen tiddlers (aka story river).tid} +0 -0
  1790. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.0.tid → pre-5.4.0/Release 5.1.0.tid} +0 -0
  1791. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.1.tid → pre-5.4.0/Release 5.1.1.tid} +0 -0
  1792. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.10.tid → pre-5.4.0/Release 5.1.10.tid} +0 -0
  1793. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.11.tid → pre-5.4.0/Release 5.1.11.tid} +0 -0
  1794. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.12.tid → pre-5.4.0/Release 5.1.12.tid} +0 -0
  1795. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.13.tid → pre-5.4.0/Release 5.1.13.tid} +0 -0
  1796. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.14.tid → pre-5.4.0/Release 5.1.14.tid} +0 -0
  1797. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.15.tid → pre-5.4.0/Release 5.1.15.tid} +0 -0
  1798. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.16.tid → pre-5.4.0/Release 5.1.16.tid} +0 -0
  1799. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.17.tid → pre-5.4.0/Release 5.1.17.tid} +0 -0
  1800. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.18.tid → pre-5.4.0/Release 5.1.18.tid} +0 -0
  1801. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.19.tid → pre-5.4.0/Release 5.1.19.tid} +0 -0
  1802. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.2.tid → pre-5.4.0/Release 5.1.2.tid} +0 -0
  1803. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.20.tid → pre-5.4.0/Release 5.1.20.tid} +0 -0
  1804. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.21.tid → pre-5.4.0/Release 5.1.21.tid} +0 -0
  1805. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.22.tid → pre-5.4.0/Release 5.1.22.tid} +0 -0
  1806. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.3.tid → pre-5.4.0/Release 5.1.3.tid} +0 -0
  1807. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.4.tid → pre-5.4.0/Release 5.1.4.tid} +0 -0
  1808. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.5.tid → pre-5.4.0/Release 5.1.5.tid} +0 -0
  1809. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.6.tid → pre-5.4.0/Release 5.1.6.tid} +0 -0
  1810. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.7.tid → pre-5.4.0/Release 5.1.7.tid} +0 -0
  1811. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.8.tid → pre-5.4.0/Release 5.1.8.tid} +0 -0
  1812. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.9.tid → pre-5.4.0/Release 5.1.9.tid} +0 -0
  1813. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.1.tid → pre-5.4.0/Release 5.2.1.tid} +0 -0
  1814. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.2.tid → pre-5.4.0/Release 5.2.2.tid} +0 -0
  1815. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.3.tid → pre-5.4.0/Release 5.2.3.tid} +0 -0
  1816. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.5.tid → pre-5.4.0/Release 5.2.5.tid} +0 -0
  1817. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.7.tid → pre-5.4.0/Release 5.2.7.tid} +0 -0
  1818. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.0.tid → pre-5.4.0/Release 5.3.0.tid} +0 -0
  1819. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.1.tid → pre-5.4.0/Release 5.3.1.tid} +0 -0
  1820. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.3.tid → pre-5.4.0/Release 5.3.3.tid} +0 -0
  1821. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.4.tid → pre-5.4.0/Release 5.3.4.tid} +0 -0
  1822. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.5.tid → pre-5.4.0/Release 5.3.5.tid} +0 -0
  1823. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.6.tid → pre-5.4.0/Release 5.3.6.tid} +0 -0
@@ -0,0 +1,29 @@
1
+ title: @ericshulman
2
+ tags: Community/Person Community/Team/Contributors
3
+ fullname: Eric Shulman
4
+ first-sighting: 2005-06-21
5
+ talk.tiddlywiki.org: ericshulman
6
+ github: ericshulman
7
+ homepage: tiddlytools.com
8
+ email: elsdesign@gmail.com
9
+ avatar: iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAD/ElEQVR42o2Tf2iUdRzH37e7rOa222233bab3mqKU9QihCAi+isKwX/sh5UQhGYQhNAvQowRUoghQWDOIJtQmOY0M92ZmVGm0WbTyZI1Nnft99S1jc3dPT9efffg/bHdLn19Hp4HPjzv9/fz+fL5aE58PwUkjzzFVC4P/G/k6E445Pc+uceeaqnv7Ogd6Rq68PPhrc+vkiERWOLT/+Ib8uQHNiXax3BIM0mC+CEtl2G7X9mIeCV+9Ejrr2MAtgkH14SNBRZXrYYPNF86nsXCkx/8dATAsp0JhknQTYJrTHg5SNI0qMekb+aw8Hr74WCKpNNu/0Kck5ymkRMcZz/1Jv5g2CUFbZYelrbMvlBMonHvJK3JuPsdTQxwExc8XG7SxF7OcxGScP6wRGCG/Asjf39VPydTzbQyRBrXBKToBCP/nQQ9VpIDO6SumU3EjUFLzX766HMG0mIvoJnXEbU47GGXc4TGBs3zWp5Jh7F47omdf56hy9lLIz3gyYfZSQMJztFEH3KEDg+bf1dkzkO9Savks7H9NLqnuEw3MEU314nTwABj/MV2R6y8JL+0wKdM8MtX23aFy04dF5mg08QI6XYsemmzRfiMDP5Mg1emK4ienZxi0p0gBfRwhSHAxgXGGeS6tYUdu6TPA3Ofr3Mfj9Bv4zHMDaCTMcBlnG4cJqx64sagN9Ngw3RJoa5R+MftI8k1Wm7NcSsH6KKPFGBbG1n1srQ+06DWpJ59cRhsGKGbo0wBFpDgNGcBcHGsl9BuSZmjfCRHWnv0BtgOcJVWwAZG2cw+3uErAKacZ6hq32PkGWuNSaxsHgIHxqjje5I4/Ms2dCt+BHpcUT4ai0j5sw22TCea2sCBbz3BOjaRFj+JeAE46IoHxlUmlfrmWuZT+8Ae935fjljDe3zpLdEJxGriLHdFtL8mKC2cbbAgIOXVBemwBhHibZq4xN/0YgPrESsRsiMs+C1zEwwFxqBqs4hY2yhlKeIUab5GLEM8SLlVRslu77jZhEwL/ofKKZ4uknxiiLO0cYFGFpJPMTGiRO0iQqtNrX7NxueTcahqv4/FTpgwFYinOcoxtiLKWEwF+U6Mqv5FuVlWSQHzvBWmKmUqIEg1YiMfIu6lhjKCRK0YkXelwoDmIjztWrCot5KQs5R5zKccIVZQwl3cTaVdQVGnfOkrzFbDuvuJWTVuBcXcQ5iFlFFAmBynlBKKH/f6z06pX6r6pJoSQlaeW2gsighi3na1E6HwNSkUUHbS45FXG7ajhIi68+1cO98qtqqJEHzTW6LbEfUstER1ef2llBKhiGqKW7VGUk6lT7dnmS/gnZMf1KPaoI16VWsrA1KhX3dObo5m9VqQpff/AFTcI4hMzFV+AAAAAElFTkSuQmCC
10
+
11
+ \define wiki(text,topic) [[$text$|https://en.wikipedia.org/wiki/$topic$]]
12
+
13
+ ''Hello! My name is Eric Shulman''. I am the author of ''[[www.TiddlyTools.com|http://www.TiddlyTools.com]] (Small Tools for Big Ideas! ™)'', a popular collection of original plugins, macros, widgets, templates and stylesheets for TiddlyWiki that I have created and shared with the TiddlyWiki community.
14
+
15
+ <<<
16
+ Think of TiddlyTools as a ''virtual hardware store and "demonstration showroom"'', offering tools, parts and techniques that provide a rich variety of new functionality and feature enhancements to help you ''turn a general-purpose TiddlyWiki "info-house" into a comfortable, custom-built "info-home"''.
17
+
18
+ The TiddlyWiki core system provides the basic structure and utilities: the foundation, framing, walls, roof, windows/doors, plumbing, heating, and electrical systems. Then, TiddlyTools helps you with all the "finish work": the appliances, fixtures, lighting, cabinets, furniture, paint, wallpaper, carpeting, etc. ''to best suit your specific needs and personal style''.
19
+ <<<
20
+
21
+ Since the early days of TiddlyWiki (April 2005), I have worked closely with its inventor, [[Jeremy Ruston|https://jermolene.com/]], to help develop and improve TiddlyWiki's core functions. I am also a key contributor and administrator of the online TiddlyWiki [[Discourse|https://talk.TiddlyWiki.org]] and [[GoogleGroups|https://groups.google.com/forum/#!forum/tiddlywiki]] discussion forums, providing ongoing assistance to the worldwide TiddlyWiki community. I have written over 15,000 detailed responses to individual questions posted online. For several years I was also the lead developer and maintainer of the [[TiddlyWiki Classic|https://classic.tiddlywiki.com/]] codebase.
22
+
23
+ I was born and raised in suburban Long Island, NY, and attended [[Carnegie Mellon University (CMU)|https://www.cmu.edu/]] in Pittsburgh, PA, where I studied ''Computer Science, Cognitive Psychology, Sociology, Human Factors Design, and Artificial Intelligence''. As an undergraduate at CMU, I was privileged to work with some of the major luminaries in early software research and design, including <<wiki "Herbert Simon" "Herbert_A._Simon">>, <<wiki "Allen Newell" "Allen_Newell">>, <<wiki "James Gosling" "James_Gosling">>, and <<wiki "Raj Reddy" "Raj_Reddy">>. I was also employed in several Computer Science Department research projects, including the development of speech recognition technologies, graphical interface systems, and interactive applications for instruction in physics, art and music. I received a ''Bachelor of Science in "Interactive Systems Design"'' from CMU in 1985.
24
+
25
+ During my early post-graduate years, I worked for several notable software development companies, including
26
+ <<wiki "Honeywell Information Systems" "Honeywell#Honeywell_Information_Systems">> and <<wiki "Lotus Software" "Lotus_Software">>. I was an integral member of the <<wiki "1-2-3 spreadsheet"
27
+ "Lotus_1-2-3">> development team where I helped create the first GUI-based application interfaces for Microsoft Windows and IBM OS/2.
28
+
29
+ Since 1998, I have been an ''independent design consultant'', living and working in Silicon Valley, where I apply more than 40 years of experience to provide ''analysis, design and software development services'' for commercial companies and not-for-profit organizations, with emphasis on ''information architecture'' and ''interaction/visual design standards'' to improve ease-of-use for new and existing software products and online environments.
@@ -0,0 +1,21 @@
1
+ title: @Jermolene
2
+ tags: Community/Person
3
+ fullname: Jeremy Ruston
4
+ first-sighting: 2004-09-20
5
+ talk.tiddlywiki.org: jeremyruston
6
+ github: Jermolene
7
+ linkedin: www.linkedin.com/in/jermy
8
+ flickr: www.flickr.com/photos/jermy/
9
+ bluesky: https://bsky.app/profile/jermolene.bsky.social
10
+ homepage: jermolene.com
11
+ email: jeremy@jermolene.com
12
+ avatar: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAgICAgJCAkKCgkNDgwODRMREBARExwUFhQWFBwrGx8bGx8bKyYuJSMlLiZENS8vNUROQj5CTl9VVV93cXecnNEBCAgICAkICQoKCQ0ODA4NExEQEBETHBQWFBYUHCsbHxsbHxsrJi4lIyUuJkQ1Ly81RE5CPkJOX1VVX3dxd5yc0f/CABEIACAAIAMBIgACEQEDEQH/xAAtAAEBAAMAAAAAAAAAAAAAAAAHBgIEBQEBAQEBAAAAAAAAAAAAAAAAAgQBBf/aAAwDAQACEAMQAAAANF4uTuPRhD2nBLnUiJvKM0DtMKy//8QAKxAAAgIBAwMDAQkAAAAAAAAAAQIDBBEABRITITEiMkFxFEJRUmFicoGR/9oACAEBAAE/AInTA6gUGP4ZOQbW1bPsmyUq1q+gmvFPUzZPDkPamtwqU75ks04JakroVcg5RwRjg66NUx25KbzqJYyMngfqSuq0M3NZYIebJIvZozIvI/iNPcp/aalSdJXsS4VcKeIzlvU3jVTcYLNiaGISrjkhWQYDfQ63pYAzCDBsOiu7Dsx4EHH6r2w2ttimjd2IsNErhhJHKI04/uzqxuCxpBYVVWKSHqwMyMSQ33SB7dUJFmlkMYRgnqZgCMf7rf8AeEt3A9YOhjXAb2k8u7dtT1RZeOtXmYxiOPj4ZWY/lb51skqUNnNW/wBNzC7IpB6gQeeB/jq/fqGOaLbowuYn5MAQOw8LjW5Vmeo0qIsqYLLKjHIZmwv9fB1//8QAHxEAAQMEAwEAAAAAAAAAAAAAEQABAgMSIWExMkFR/9oACAECAQE/AD9iTy2lJmHUB8BVKM4SNSOj46a29saX/8QAHREAAgICAwEAAAAAAAAAAAAAAQIAAwQRITGBkf/aAAgBAwEBPwDHpFpJZtamVSiBWT2Yt7hmCDsb+TKtsKqpGg3M/9k=
13
+
14
+ I'm the original inventor of TiddlyWiki. You can hire me through my consultancy company [[Intertwingled Innovations|https://intertwingledinnovations.com]] or contact me directly.
15
+
16
+ Further information:
17
+
18
+ * A recording of the [[keynote I gave at QCon London in April 2024|https://www.infoq.com/presentations/bbc-micro/]], and the [[discussion on talk.tiddlywiki.org|https://talk.tiddlywiki.org/t/recording-of-jeremys-keynote-at-qcon-london-april-2024/10505]]. The talk mixes some nostalgia about my teenage activities with the BBC Micro with thoughts on the development of the software industry and insights gained from working with TiddlyWiki
19
+ * An [[interview with me in The Inquirer|https://web.archive.org/web/20111103225832/http://www.theinquirer.net/inquirer/feature/2105529/bt-software-engineer-tells-telco-source]] by Wendy Grossman
20
+ * A [[hilarious interview with me|https://www.youtube.com/watch?v=auyIhw8MTmQ]] from British television in 1983
21
+ * Here's a video of a presentation I did in 2007 called [["How to Start an Open Source Project"|http://vimeo.com/856110]].
@@ -0,0 +1,19 @@
1
+ avatar: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAgICAgJCAkKCgkNDgwODRMREBARExwUFhQWFBwrGx8bGx8bKyYuJSMlLiZENS8vNUROQj5CTl9VVV93cXecnNEBCAgICAkICQoKCQ0ODA4NExEQEBETHBQWFBYUHCsbHxsbHxsrJi4lIyUuJkQ1Ly81RE5CPkJOX1VVX3dxd5yc0f/CABEIACAAIAMBIgACEQEDEQH/xAAuAAEAAwEBAAAAAAAAAAAAAAAGAwQHAgUBAAMBAAAAAAAAAAAAAAAAAAACAwT/2gAMAwEAAhADEAAAAOfCWAMdKKetM4wOvY5OcvZnrYf/xAApEAACAQQBBAECBwAAAAAAAAABAgMABAURQQYSIVETFCIxMkJicYKh/9oACAEBAAE/AEtysaStr7mPaPeuazWdMM4gEnfPryW8hBUuZvou2RXRxyreBWPmgyNqs8f8MOQalhdY7Vz+R4/s/qfP+1edNi/zl7HDcFbmS3E8CcMR4INP0PkBhklIm+sZNtFtQiV0nj57Owl+dSrSTFgD6/CtH4VV9lU3oAbPngAVY389lc5URuUZkMxhnR4pvW0VwDqsP1FNmLWYqCpikMbngmliJNY+aKzyTxXS6lRAyg/u5rq+5x2RsuyTa3MQMlvKniRGThTUd1JYXUdzAwDvqVxGdRXMbfrVOD7HBrG3mNEsU8z98TRhl9eRzX//xAAcEQACAgIDAAAAAAAAAAAAAAABAgARAzESIVH/2gAIAQIBAT8ARuXZPsul3Eoje5lBQWBP/8QAGREAAwEBAQAAAAAAAAAAAAAAAAECEiER/9oACAEDAQE/AM98Lk7LJe20z//Z
2
+ created: 20251110102157310
3
+ first-sighting: 2019-03-01
4
+ fullname: Lin Onetwo
5
+ github: linonetwo
6
+ homepage: https://wiki.onetwo.website/
7
+ modified: 20251111184556193
8
+ tags: Community/Person Community/Team/Contributors
9
+ talk.tiddlywiki.org: linonetwo
10
+ title: @linonetwo
11
+ type: text/vnd.tiddlywiki
12
+
13
+ Since 2014, when I started college, I've been on a quest for a lifelong PKM tool. I cherish my life and all my experiences, and I don’t want to forget any of them. When I’m deeply focused on a task, it’s easy to lose sight of other important parts of my life—so I needed a system to help me stay balanced.
14
+
15
+ Early on, I tried TiddlyWiki several times, but I was initially put off by its save mechanism and markup editing. That changed when I discovered an auto-backup script, which gave me the confidence to fully commit. Over time, I improved the script and eventually transitioned to using TidGi-Desktop and TidGi-Mobile.
16
+
17
+ Today, my TiddlyWiki holds all my game design ideas and progress logs—it has truly become my second brain. With the help of LLM-powered programming tools, I’ve enhanced it with numerous plugins, allowing me to manage my mind in a more programmable and structured way. As a game developer, TiddlyWiki isn't the core of my professional work; But I've invested so much time because it's fundamentally about upgrading my mind.
18
+
19
+ Most of my notes are open by default and shared publicly on my homepage as a digital garden.
@@ -0,0 +1,11 @@
1
+ title: @MotovunJack
2
+ tags: Community/Person Community/Robot
3
+ fullname: Motovun Jack
4
+ first-sighting: 2012-01-12
5
+ github: MotovunJack
6
+ homepage: tiddlywiki.com
7
+ avatar: /9j/4AAQSkZJRgABAQAAAQABAAD/2wEEEAAYABgAGAAYABkAGAAaAB0AHQAaACUAKAAjACgAJQA2ADIALgAuADIANgBSADsAPwA7AD8AOwBSAH0ATgBbAE4ATgBbAE4AfQBuAIYAbQBlAG0AhgBuAMYAnACKAIoAnADGAOUAwQC2AMEA5QEWAPgA+AEWAV4BTAFeAckByQJmEQAYABgAGAAYABkAGAAaAB0AHQAaACUAKAAjACgAJQA2ADIALgAuADIANgBSADsAPwA7AD8AOwBSAH0ATgBbAE4ATgBbAE4AfQBuAIYAbQBlAG0AhgBuAMYAnACKAIoAnADGAOUAwQC2AMEA5QEWAPgA+AEWAV4BTAFeAckByQJm/8IAEQgAQABAAwEiAAIRAQMRAf/EADAAAAIDAQEAAAAAAAAAAAAAAAMEAQIFBgABAQEBAQEAAAAAAAAAAAAAAAIDAQAE/9oADAMBAAIQAxAAAADZCfn5vZJz+rnODGtpbpm6O8xzG9lCiszXtikQhtkTBputBxURJuVVYlEdBaQ284mPDj6GmkNUblMxRmi7dKw//8QAKxAAAgIBAgUCBgMBAAAAAAAAAQIAAxESIQQTIkFRFGEjMUJxgaEyNGLR/9oACAEBAAE/AMmX3ilMkjPaV3ragZDtNRmoxpvA2sEqQcHEwJxlwa98nYbCU8TymDfSTvPVKMbZHkQcTU4yDH46tTiE8RxjLXnQp7Dx5MACgKuyqMAS1xXU7kjYTiEbWp3y0IucYbGx6e05hDAqMH/k59o3DfxAE5hss1MNzODdVraxu50ieppH1Tivi8O6eYQ1j4B6guAftChDMNjBqycHcCYJqdj2s3idRBHfpi/1Kie7PDo95w/EMxYM22n9yy5AzBc/iLe7dIqx7kyy2ypyOWoYTofhCyDAZtx4MOmpK9sncyx1NdSq2kBBt3EKf6mgIzDUPIiByuqk7faMLbOyEjuuxEAyo56AgeTA3KL1AYRm1CcvmkgAs2wHjEvPxGIMJPmHUQCQNothr32A0ggeYluplcAK2PlLbTytZUkdwI7V3lAQMgbAfP8AMoCV1AKMOR+pdsc5yD595mMmNIGD4h0vsfupHyBlTKW9znMd+TQnljPWqHYIqhwD1zKsqtjBzCAVAyBicnqG6jbOe0//xAAbEQEBAAMBAQEAAAAAAAAAAAABAAIRIRASQf/aAAgBAgEBPwBYbZDuXvnLE5OrkWJzxI4g33ift//EABsRAAMBAQADAAAAAAAAAAAAAAABEQIhEBJB/9oACAEDAQE/AMqjzHwjGoZXPHTb6Zp1/TRp1khYjW01xHqz/9k=
8
+
9
+ Motovun Jack is a robot that helps maintain the TiddlyWiki project infrastructure. It is not a person, but rather a set of automated scripts and tools that assist in managing the various services and resources used by the TiddlyWiki community.
10
+
11
+ The origin of the name "Motovun Jack" is a lovable and playful kitten encountered by [[@Jermolene]] in the beautiful medieval hill town of Motovun in Croatia. Jack was [[first adopted|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ecfbaaa5641f14e1766ef17ef6416bf9aa992863]] as the TiddlyWiki 5 mascot in 2012.
@@ -0,0 +1,25 @@
1
+ avatar: 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
2
+ created: 20251110102157310
3
+ first-sighting: 2009-11-14
4
+ fullname: Mario Pietsch
5
+ github: pmario
6
+ homepage: https://wikilabs.github.io/
7
+ modified: 20251110124935183
8
+ tags: Community/Person Community/Team/Contributors
9
+ talk.tiddlywiki.org: pmario
10
+ title: @pmario
11
+ type: text/vnd.tiddlywiki
12
+ youtube: https://www.youtube.com/@pmario
13
+
14
+ ''Hi, My name is Mario Pietsch''. Back in 2009 I was ''searching'' for ''a simple presentation tool'' and discovered ~TiddlyWiki Classic, Monkey Pirate ~TiddlyWiki ([[MPTW|https://mptw.tiddlyspot.com/]]) with ~TagglyTagging, Eric Shulman's ~TiddlyTools, Saq Imtiaz's navigation macros, and more. --- ''I was captivated''.
15
+
16
+ After a deep dive, I combined these elements into my own "Presentation Manager", along [[3 step by step tutorials|https://groups.google.com/g/tiddlywiki/c/qG_tZ1x0MEU/m/-vLA0luMicYJ]] to help others build it.
17
+
18
+ Thanks to ''the positive spirit'' of the ~TiddlyWiki community, I am proud to be part of it since 2009.
19
+
20
+ When Jeremy started developing ~TiddlyWiki 5 on ~GitHub, I joined in—opening [[issue no. 1|https://github.com/TiddlyWiki/TiddlyWiki5/issues/1]] all the way up to 13. For what that’s good ;) Since then, I have submitted nearly 600 pull requests and more than 500 issues, many of which have been merged or resolved.
21
+
22
+ My ~TiddlyWiki 5 "laboratory" is at https://wikilabs.github.io, and I also share content on my ''~YouTube'' channel: https://www.youtube.com/@pmario
23
+
24
+ Have fun!<br>
25
+ Mario
@@ -0,0 +1,16 @@
1
+ title: @saqimtiaz
2
+ tags: Community/Person
3
+ fullname: Saq Imtiaz
4
+ first-sighting: 2006-02-25
5
+ talk.tiddlywiki.org: saqimtiaz
6
+ github: saqimtiaz
7
+ email: saq.imtiaz@gmail.com
8
+ avatar: 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
9
+
10
+ I am a Project Maintainer for TiddlyWiki 5. I have a background as a UX designer, developer, doctor, photographer, and a non-profit educational sector jack of all trades, plus a few other things I often forget.
11
+
12
+ I first discovered TiddlyWiki in early 2005, and fully embraced it in 2006 while searching for a practical way to prototype software solutions for the educational non-profit I was working with at the time. What began as a tool quickly became a teacher.
13
+ Through TiddlyWiki, I learned how to code, earned my chops in JavaScript and frontend development, and grew into technical leadership and project lead roles. I later formalized this experience with a Master’s degree in IT, with a focus on user experience design.
14
+
15
+ My work with TiddlyWiki today centers on using it as an application prototyping and development platform, with a particular focus on its true offline-first capabilities and its strength as a tool for thinking, building, and iterating without friction.
16
+
@@ -0,0 +1,7 @@
1
+ title: @kjharcombe
2
+ tags: Community/Person
3
+ fullname: Keiran harcombe
4
+ first-sighting: 2026-03-16
5
+ talk.tiddlywiki.org: kjharcombe
6
+ github: kjharcombe
7
+ avatar: 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
@@ -0,0 +1,10 @@
1
+ title: TiddlyWiki People
2
+ modified: 20250909171928024
3
+ created: 20250909171928024
4
+ tags: Community About
5
+
6
+ Members of the TiddlyWiki community who are involved in the development of TiddlyWiki and the running of the project are invited to [[create a Community Card|Submitting a Community Card]] so that they can be included in project plans and organisation charts. Community Cards can also showcase their interests and activities in the TiddlyWiki community.
7
+
8
+ {{Community Cards Caveats}}
9
+
10
+ <<community-card-pill-stack-person personFilter:"[tag[Community/Person]sort[title]]">>
@@ -0,0 +1,10 @@
1
+ title: TiddlyWiki Project
2
+ modified: 20250909171928024
3
+ created: 20250909171928024
4
+ tags: Community About
5
+
6
+ The TiddlyWiki Project is the coordinated, ongoing effort to maintain and improve TiddlyWiki, and to support the TiddlyWiki community.
7
+
8
+ {{Community Cards Caveats}}
9
+
10
+ <$list filter="[tag[Community/Team]]" template="$:/tiddlywiki/community/cards/ViewTemplateBodyTemplateTeam"/>
@@ -0,0 +1,4 @@
1
+ title: Vacant Positions
2
+ tags: [[TiddlyWiki Project]]
3
+
4
+ If you are interested in volunteering to help the project please get in touch with <<community-card-pill-person title:"@Jermolene">>.
@@ -0,0 +1,8 @@
1
+ title: Core Team
2
+ tags: Community/Team
3
+ modified: 20250909171928024
4
+ created: 20250909171928024
5
+ leader: @Jermolene
6
+ team: @saqimtiaz
7
+
8
+ The core team is responsible for the maintenance and development of the TiddlyWiki core and official plugins.
@@ -0,0 +1,19 @@
1
+ title: Developer Experience Team
2
+ tags: Community/Team
3
+ modified: 20251109200632671
4
+ created: 20251109200632671
5
+ leader: @pmario
6
+ team: @saqimtiaz
7
+
8
+ The Developer Experience Team improves the experience of software contributors to the TiddlyWiki project. This includes enhancing documentation, streamlining contribution processes, and providing tools and resources to help developers effectively contribute to TiddlyWiki.
9
+
10
+ Tools and resources managed by the Developer Experience Team include:
11
+
12
+ * Advising and assisting contributors, particularly new developers
13
+ * Maintenance of developer-focused documentation on the https://tiddlywiki.com/dev/ site, including:
14
+ ** Development environment setup guides
15
+ ** Code review processes and best practices
16
+ ** Contribution guidelines and documentation
17
+ * Continuous integration and deployment scripts providing feedback on pull requests
18
+ * Devising and implementing labelling systems for issues and pull requests
19
+ * Automation scripts to simplify common development tasks
@@ -0,0 +1,16 @@
1
+ created: 20250909171928024
2
+ modified: 20251110133437795
3
+ tags: Community/Team
4
+ leader: @kjharcombe
5
+ team: @MotovunJack
6
+ title: Infrastructure Team
7
+
8
+ The Infrastructure Team is responsible for maintaining and improving the infrastructure that supports the TiddlyWiki project. This includes the hosting, deployment, and management of the TiddlyWiki websites and services, as well as the tools and systems used by the TiddlyWiki community.
9
+
10
+ The infrastructure includes:
11
+
12
+ * talk.tiddlywiki.org
13
+ * github.com/TiddlyWiki
14
+ * tiddlywiki.com DNS
15
+ * Netlify account for PR previews
16
+ * edit.tiddlywiki.com
@@ -0,0 +1,8 @@
1
+ title: MultiWikiServer Team
2
+ tags: Community/Team
3
+ modified: 20250909171928024
4
+ created: 20250909171928024
5
+ leader: @Arlen22
6
+ team:
7
+
8
+ The MultiWikiServer development repository is at https://github.com/TiddlyWiki/MultiWikiServer
@@ -0,0 +1,15 @@
1
+ title: Project Team
2
+ tags: Community/Team
3
+ modified: 20250909171928024
4
+ created: 20250909171928024
5
+ icon: $:/tiddlywiki/community/icons/project-team
6
+ leader: @Jermolene
7
+ team: @saqimtiaz @ericshulman
8
+
9
+ The project team is responsible for the overall TiddlyWiki project, its vision, mission and values, and ensuring that it meets the needs of the community.
10
+
11
+ Areas of responsibility include:
12
+
13
+ * Communicating and demonstrating the vision, mission and values of the project
14
+ * Continuously improve the development process and practices of the project
15
+ * more to come...
@@ -0,0 +1,11 @@
1
+ title: Quality Assurance Team
2
+ created: 20251112125742296
3
+ modified: 20251112125742296
4
+ tags: Community/Team
5
+ team:
6
+ leader: @Leilei332
7
+
8
+ title: Quality Assurance Team
9
+
10
+ The Quality Assurance Team is responsible for ensuring the quality and reliability of TiddlyWiki releases. This includes reviewing code submissions, testing new features, identifying bugs, and verifying that fixes are effective.
11
+
@@ -0,0 +1,13 @@
1
+ title: Succession Team
2
+ tags: Community/Team
3
+ modified: 20250909171928024
4
+ created: 20250909171928024
5
+ leader: @Jermolene
6
+ team: @saqimtiaz @ericshulman
7
+
8
+ The Succession Team is responsible for ensuring that personnel changes do not impact access to the external infrastructure used by the project.
9
+
10
+ * Work with the other teams to ensure that the project has a succession plan for key personnel
11
+ * Work with the other teams to ensure that they are using the appropriate, community-owned infrastructure
12
+ * Ensure that the members of the succession team share ownership of the key project resources (eg passwords and user accounts). The Succession Team is not expected to use their access rights apart from managing access in the event of personnel changes
13
+
@@ -0,0 +1,15 @@
1
+ title: TiddlyWiki Newsletter Team
2
+ tags: Community/Team
3
+ modified: 20251219090709874
4
+ created: 20250909171928024
5
+ leader: @Christian_Byron
6
+
7
+ The Newsletter Team is responsible for producing the [[TiddlyWiki Newsletter]]. We would love to have your help if you would like to get involved.
8
+
9
+ ! Audience
10
+
11
+ The newsletter is intended for TiddlyWiki end users who do not track all the discussions on https://talk.tiddlywiki.org/.
12
+
13
+ Coverage of developer topics such as JavaScript and intricate wikitext should be handled thoughtfully to avoid alienating the core audience of end users.
14
+
15
+ Subscribing to the newsletter is intended to give people confidence that they will not miss any important developments.
@@ -0,0 +1,5 @@
1
+ title: Community/Team
2
+ modified: 20250909171928024
3
+ created: 20250909171928024
4
+ list: [[Project Team]] [[Core Team]] [[Documentation Team]] [[Quality Assurance Team]] [[Infrastructure Team]] [[MultiWikiServer Team]] [[Newsletter Team]] [[Succession Team]]
5
+
@@ -0,0 +1,3 @@
1
+ # Community Records and Resources
2
+
3
+ These raw tiddlers comprise the community records and resources for the TiddlyWiki project. They are packaged as a root directory outside of the usual "editions" folder so that they can be shared with other wikis.
@@ -0,0 +1,15 @@
1
+ title: $:/config/DefaultColourMappings/
2
+
3
+ community-card-background: #ffffee
4
+ community-card-foreground: #441111
5
+ community-card-dark-shadow: rgba(188, 189, 189, 0.5)
6
+ community-card-shadow: rgba(212, 212, 213, 0.5)
7
+ community-card-header-background: #9e3060
8
+ community-card-header-foreground: #ddddee
9
+ community-card-team-header-background: #306090
10
+ community-card-team-header-foreground: #ddeedd
11
+ community-card-vacancy-header-background: #609030
12
+ community-card-vacancy-header-foreground: #eedddd
13
+ community-card-info-background: #f3f38b
14
+ community-card-info-foreground: #444411
15
+ community-card-field-name-foreground: #888844
@@ -0,0 +1,168 @@
1
+ title: $:/tiddlywiki/community/cards/Procedures
2
+ tags: $:/tags/Global
3
+
4
+ \procedure community-card-display-jpeg-field(fieldName,mode:"block",default)
5
+ <$genesis $type={{{ [<mode>match[block]then[div]else[span]] }}} class={{{ tc-community-card-field-image [[tc-community-card-field-image-]addsuffix<fieldName>] +[join[ ]] }}}>
6
+ <%if [<currentTiddler>has<fieldName>] %>
7
+ <img src={{{ [<currentTiddler>get<fieldName>addprefix[data:image/jpeg;base64,]] }}} width="32"/>
8
+ <%else%>
9
+ <$transclude $tiddler=<<default>> $mode=<<mode>>/>
10
+ <%endif%>
11
+ </$genesis>
12
+ \end community-card-display-jpeg-field
13
+
14
+ \procedure community-card-display-transclusion(fieldName,mode:"inline",default)
15
+ <$genesis $type={{{ [<mode>match[block]then[div]else[span]] }}} class={{{ tc-community-card-field-image [[tc-community-card-field-image-]addsuffix<fieldName>] +[join[ ]] }}}>
16
+ <%if [<currentTiddler>has<fieldName>] %>
17
+ <$transclude $tiddler={{{ [<currentTiddler>get<fieldName>] }}} $mode=<<mode>>/>
18
+ <%else%>
19
+ <$transclude $tiddler=<<default>> $mode=<<mode>>/>
20
+ <%endif%>
21
+ </$genesis>
22
+ \end community-card-display-transclusion
23
+
24
+ \procedure community-card-display-text-field(fieldName,showLabel:"yes",linkPrefix,displayPrefix,mode:"block")
25
+ <%if [<currentTiddler>has<fieldName>] :or[<fieldName>match[title]] %>
26
+ <$genesis $type={{{ [<mode>match[block]then[div]else[span]] }}} class={{{ tc-community-card-field-text [[tc-community-card-field-text-]addsuffix<fieldName>] +[join[ ]] }}}>
27
+ <%if [<showLabel>match[yes]] %>
28
+ <span class="tc-community-card-field-text-name"><$text text=<<fieldName>>/></span>
29
+ <%endif%>
30
+ <%if [<linkPrefix>!match[]] %>
31
+ <a
32
+ href={{{ [<currentTiddler>get<fieldName>addprefix<linkPrefix>] }}}
33
+ class="tc-community-card-field-text-value"
34
+ rel="noopener noreferrer"
35
+ target="_blank"
36
+ >
37
+ <$text text={{{ [<currentTiddler>get<fieldName>] :else[<fieldName>match[title]then<currentTiddler>] +[addprefix<displayPrefix>] }}}/>
38
+ </a>
39
+ <%else%>
40
+ <span class="tc-community-card-field-text-value">
41
+ <$text text={{{ [<currentTiddler>get<fieldName>] :else[<fieldName>match[title]then<currentTiddler>] +[addprefix<displayPrefix>] }}}/>
42
+ </span>
43
+ <%endif%>
44
+ </$genesis>
45
+ <%endif%>
46
+ \end community-card-display-text-field
47
+
48
+ \procedure community-card-person(title)
49
+ <$let currentTiddler=<<title>>>
50
+ <div class="tc-community-card">
51
+ <$link to=<<currentTiddler>> class="tc-community-card-header-link">
52
+ <div class="tc-community-card-header">
53
+ <<community-card-display-jpeg-field "avatar" default:"$:/tiddlywiki/community/icons/person">>
54
+ <<community-card-display-text-field "title" showLabel:"no">>
55
+ </div>
56
+ </$link>
57
+ <div class="tc-community-card-info">
58
+ <<community-card-display-text-field "fullname">>
59
+ <<community-card-display-text-field "first-sighting">>
60
+ <<community-card-display-text-field "talk.tiddlywiki.org" linkPrefix:"https://talk.tiddlywiki.org/u/" displayPrefix:"@">>
61
+ <<community-card-display-text-field "github" linkPrefix:"https://github.com/" displayPrefix:"@">>
62
+ <<community-card-display-text-field "linkedin" linkPrefix:"https://">>
63
+ <<community-card-display-text-field "flickr" linkPrefix:"https://">>
64
+ <<community-card-display-text-field "homepage" linkPrefix:"https://">>
65
+ <<community-card-display-text-field "email" linkPrefix:"mailto:">>
66
+ <%if [all[tiddlers+shadows]tag[Community/Team]sort[title]] :filter[{!!leader}match<..currentTiddler>] +[count[]compare:number:gt[0]] %>
67
+ <div class="tc-community-card-field-text">
68
+ <span class="tc-community-card-field-text-name">leader</span>
69
+ <span class="tc-community-card-field-text-value">
70
+ <$list filter="[all[tiddlers+shadows]tag[Community/Team]sort[title]] :filter[{!!leader}match<..currentTiddler>]">
71
+ <$transclude $variable="community-card-pill-team" title=<<currentTiddler>>/>
72
+ </$list>
73
+ </span>
74
+ </div>
75
+ <%endif%>
76
+ <%if [all[tiddlers+shadows]tag[Community/Team]sort[title]] :filter[enlist{!!team}match<..currentTiddler>] +[count[]compare:number:gt[0]] %>
77
+ <div class="tc-community-card-field-text">
78
+ <span class="tc-community-card-field-text-name">member</span>
79
+ <span class="tc-community-card-field-text-value">
80
+ <$list filter="[all[tiddlers+shadows]tag[Community/Team]sort[title]] :filter[enlist{!!team}match<..currentTiddler>]">
81
+ <$transclude $variable="community-card-pill-team" title=<<currentTiddler>>/>
82
+ </$list>
83
+ </span>
84
+ </div>
85
+ <%endif%>
86
+ </div>
87
+ <div class="tc-community-card-body">
88
+ <$transclude $tiddler=<<currentTiddler>> $field="text" $mode="block"/>
89
+ </div>
90
+ </div>
91
+ </$let>
92
+ \end community-card-person
93
+
94
+ \procedure community-card-team(title)
95
+ <$let currentTiddler=<<title>>>
96
+ <div class="tc-community-card tc-community-card-team">
97
+ <$link to=<<currentTiddler>> class="tc-community-card-header-link">
98
+ <div class="tc-community-card-header">
99
+ <<community-card-display-transclusion fieldName:"icon" default:"$:/tiddlywiki/community/icons/team">>
100
+ <<community-card-display-text-field "title" showLabel:"no">>
101
+ </div>
102
+ </$link>
103
+ <div class="tc-community-card-info">
104
+ <div class="tc-community-card-field-text">
105
+ <span class="tc-community-card-field-text-name">leader</span>
106
+ <span class="tc-community-card-field-text-value">
107
+ <%if [<currentTiddler>has[leader]] %>
108
+ <$transclude $variable="community-card-pill-person" title={{!!leader}}/>
109
+ <%else%>
110
+ <$transclude $variable="community-card-vacancy"/>
111
+ <%endif%>
112
+ </span>
113
+ </div>
114
+ <div class="tc-community-card-field-text">
115
+ <span class="tc-community-card-field-text-name">team</span>
116
+ <span class="tc-community-card-field-text-value"><$transclude $variable="community-card-pill-stack-person" personFilter={{!!team}}/></span>
117
+ </div>
118
+ </div>
119
+ <div class="tc-community-card-body">
120
+ <$transclude $tiddler=<<currentTiddler>> $field="text" $mode="block"/>
121
+ </div>
122
+ </div>
123
+ </$let>
124
+ \end community-card-team
125
+
126
+ \procedure community-card-pill-person(title)
127
+ <$let currentTiddler=<<title>>>
128
+ <$link to=<<currentTiddler>> class="tc-community-card-pill">
129
+ <<community-card-display-jpeg-field "avatar" default:"$:/tiddlywiki/community/icons/person" mode="inline">>
130
+ <<community-card-display-text-field "title" showLabel:"no" mode:"inline">>
131
+ </$link>
132
+ </$let>
133
+ \end community-card-pill-person
134
+
135
+ \procedure community-card-pill-stack-person(personFilter:"[tag[Community/Person]]")
136
+ <div class="tc-community-card-pill-stack">
137
+ <$list filter=<<personFilter>>>
138
+ <$list-template>
139
+ <$transclude $variable="community-card-pill-person" title=<<currentTiddler>> mode="block"/>
140
+ </$list-template>
141
+ <$list-empty>
142
+ <$transclude $variable="community-card-vacancy"/>
143
+ </$list-empty>
144
+ </$list>
145
+ </div>
146
+ \end community-card-pill-stack-person
147
+
148
+ \procedure community-card-pill-team(title)
149
+ <$let currentTiddler=<<title>>>
150
+ <$link to=<<currentTiddler>> class="tc-community-card-pill">
151
+ <<community-card-display-transclusion fieldName:"icon" default:"$:/tiddlywiki/community/icons/team">>
152
+ <<community-card-display-text-field "title" showLabel:"no" mode:"inline">>
153
+ </$link>
154
+ </$let>
155
+ \end community-card-pill-team
156
+
157
+ \procedure community-card-vacancy()
158
+ <$link to="Vacant Positions" class="tc-community-card-pill tc-community-card-pill-vacancy">
159
+ <span class="tc-community-card-field-image tc-community-card-field-image-avatar">
160
+ {{$:/core/images/help}}
161
+ </span>
162
+ <span class="tc-community-card-field-text tc-community-card-field-text-title">
163
+ <span class="tc-community-card-field-text-value">
164
+ Vacant
165
+ </span>
166
+ </span>
167
+ </$link>
168
+ \end community-card-vacancy