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,184 @@
1
+ caption: 5.3.2
2
+ created: 20231213080637781
3
+ description: Conditional Shortcut Syntax, ListWidget Improvements
4
+ modified: 20231213080637781
5
+ released: 20231213080637781
6
+ tags: ReleaseNotes
7
+ title: Release 5.3.2
8
+ type: text/vnd.tiddlywiki
9
+
10
+ //[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.3.1...v5.3.2]]//
11
+
12
+ <<.banner-credits
13
+ credit:"""Congratulations to [[catter-fly|https://talk.tiddlywiki.org/u/catter-fly]] for their winning design for the banner for this release (here is the [[competition thread|https://talk.tiddlywiki.org/t/banner-image-competition-for-v5-3-2/8569]]).
14
+ """
15
+ url:"https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/51862f812851afda0ed3540f8463f51def0d4f9a/editions/tw5.com/tiddlers/images/New%20Release%20Banner.png"
16
+ >>
17
+ ! Major Improvements
18
+
19
+ !! Conditional Shortcut Syntax
20
+
21
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7710">> a new [[shortcut syntax|Conditional Shortcut Syntax]] for concisely expressing if-then-else logic. This is the first of a new type of wikitext syntax based on tokens delimited with `<%` and `%>`. We plan to introduce other structures using the same format such as a "case" statement.
22
+
23
+ These new token-based shortcuts allow a richer structure and expressivity than existing features such as widgets or pragmas. For example:
24
+
25
+ ```
26
+ <%if [<animal>match[Elephant]] %>
27
+ It is an elephant
28
+ <%elseif [<animal>match[Giraffe]] %>
29
+ It is a giraffe
30
+ <%else%>
31
+ It is completely unknown
32
+ <%endif%>
33
+ ```
34
+
35
+ Behind the scenes, the conditional shortcut syntax is rendered as the equivalent [[ListWidgets|ListWidget]].
36
+
37
+ !! Explicit Templates for the ListWidget
38
+
39
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7784">> support for `<$list-template>` and `<$list-empty>` as immediate children of the <<.wid "ListWidget">> widget to specify the list item template and/or the empty template.
40
+
41
+ This new feature is designed to replace a common pattern of using the `emptyMessage` attribute of the ListWidget to render complex wikitext that thus has to be quoted. Working with wikitext within quotes is awkward and error prone. The new structure can be somewhat faster because it allows the empty message to be parsed in advanced of rendering.
42
+
43
+ For example:
44
+
45
+ ```
46
+ <$list filter=<<filter>>>
47
+ <$list-template>
48
+ <$text text=<<currentTiddler>>/>
49
+ </$list-template>
50
+ <$list-empty>
51
+ None!
52
+ </$list-empty>
53
+ </$list>
54
+ ```
55
+
56
+ Note that the <<.attr "emptyMessage">> and <<.attr "template">> attributes take precedence if they are present.
57
+
58
+ !! Joiners for the ListWidget
59
+
60
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7694">> a <<.attr "join">> attribute to the <<.wid "ListWidget">> widget to insert a short piece of text between list items. This is both easier to use and faster than using the <<.attr "counter">> attribute for the same purpose. So if your list looked like this:
61
+
62
+ ```
63
+ <$list filter=<<filter>> counter="counter" variable="item">
64
+ <$text text=<<item>>/><$list filter="[<counter-last>match[no]]" variable="ignore"><$text text=", "/></$list>
65
+ </$list>
66
+ ```
67
+
68
+ You can replace it with:
69
+
70
+ ```
71
+ <$list filter=<<filter>> variable="item" join=", "><$text text=<<item>>/></$list>
72
+ ```
73
+
74
+ If the joiner text that you need is long and awkward to write in an attribute, you can use the new `<$list-join>` widget. Like `<$list-template>` and `<$list-empty>`, it must be an immediate child of the <<.wid "ListWidget">>:
75
+
76
+ ```
77
+ <$list filter=<<filter>> variable="item"><$text text=<<item>>/><$list-join>, and <em>also</em> let's not forget </$list-join></$list>
78
+ ```
79
+
80
+ !! jsonset operator
81
+
82
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7742">> [[jsonset Operator]] for setting values within JSON objects
83
+
84
+ !! QR Code Reader
85
+
86
+ <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7746">> QR Code plugin to be able to read QR codes and a number of other bar code formats
87
+
88
+ ! Translation improvements
89
+
90
+ Improvements to the following translations:
91
+
92
+ * Chinese
93
+ * Polish
94
+ * Spanish
95
+
96
+ ! Plugin Improvements
97
+
98
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/1be8f0a9336952d4745d2bd4f2327e353580a272">> Comments Plugin to use predefined palette colours
99
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7785">> Evernote Importer Plugin to support images and other attachments
100
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7790">> `$floating` attribute to Dynannotate Plugin to support popups that do not disappear when another part of the screen is clicked. Instead they have to dismissed manually
101
+
102
+ ! Widget Improvements
103
+
104
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7734">> ImageWidget encoding for more image types
105
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7634">> ImageWidget to add a "usemap" attribute
106
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7649">> the ScrollableWidget to allow the scroll position to be bound to a tiddler, so that changes to the tiddler affect the scroll position, and vice versa
107
+
108
+ ! Usability Improvements
109
+
110
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7747">> editor preview button to automatically focus the editor
111
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7764">> file type names in the export menu
112
+
113
+ ! Hackability Improvements
114
+
115
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7769">> all the relevant core widgets to allow arbitrary `data-*` attributes and `style.*` attributes to be applied to the generated DOM nodes. This is useful for passing data to the EventCatcherWidget
116
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7849">> [[jsonextract Operator]], [[jsonget Operator]], [[jsonset Operator]] and [[jsontype Operator]] to allow negative indexes into arrays to be counted from the end of the array
117
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7690">> the default page layout to better support CSS grid and flexbox layouts
118
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7787">> the editor to use grid layout, simplifying customisation
119
+
120
+ ! Bug Fixes
121
+
122
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7758">> ordering of Vanilla stylesheets
123
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/fa9bfa07a095548eb2f8339b0b1b816d2e6794ef">> missing closing tag in tag-pill-inner macro
124
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7732">> invalid "type" attribute from textarea elements generated by the EditTextWidget
125
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7749">> editor "type" dropdown state tiddlers
126
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7712">> handling of "counter-last" variable when appending items with the ListWidget
127
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6088">> upgrade download link in Firefox
128
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7698">> refreshing of transcluded functions
129
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7789">> resizing of height of textareas in control panel
130
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7683">> [[encodebase64 Operator]] and [[decodebase64 Operator]] to work properly with binary data
131
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7708">> [[WidgetMessage: tm-open-window]] when opening an existing window to bring it to the front and focus it
132
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7809">> behaviour of [[last Operator]] when zero items selected
133
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7806">> incorrectly setting focus on field name input field when deleting field using the delete field button
134
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7802">> [[Table-of-Contents Macros]] to not show expander icon for a sublist that has all children excluded
135
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7794">> overflow of [[CodeMirror Plugin]] editor within grid container
136
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7835">> wikitest parser removing whitespace when parsing pragmas
137
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7842">> tooltip for editor add field button
138
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7844">> plain text parser being susceptible to the CodeBlockWidget being redefined
139
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7855">> pragmas not working within the action string of several core macros
140
+
141
+ ! Node.js Improvements
142
+
143
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7843">> a significant flaw in the synchronisation algorithm used by the client-server configuration. The flaw could lead to tiddlers temporarily disappearing from the browser
144
+
145
+ ! Performance Improvements
146
+
147
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7702">> performance of predefined patterns with [[all Operator]]
148
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7671">> favicon format to PNG
149
+
150
+ ! Developer Improvements
151
+
152
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7751">> global hook handling to support removing hooks
153
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7539">> some useful npm scripts to `package.json`
154
+
155
+ ! Infrastructure Improvements
156
+
157
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7820">> Continuous Integration tests to use Playwright to run our browser-based tests
158
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7737">> an automatic build of the external core TiddlyWiki at https://tiddlywiki.com/empty-external-core.html
159
+
160
+ ! Acknowledgements
161
+
162
+ [[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:
163
+
164
+ <<.contributors """
165
+ AnthonyMuscio
166
+ BramChen
167
+ BuckarooBanzay
168
+ BurningTreeC
169
+ CrossEye
170
+ EvidentlyCube
171
+ Gk0Wk
172
+ joebordes
173
+ kookma
174
+ linonetwo
175
+ mateuszwilczek
176
+ oflg
177
+ pille1842
178
+ pmario
179
+ rmunn
180
+ saqimtiaz
181
+ simonbaird
182
+ T1mL3arn
183
+ yaisog
184
+ """>>
@@ -0,0 +1,140 @@
1
+ caption: 5.3.7
2
+ created: 20250707115023707
3
+ description: $:/ControlPanel Wiki Information Tab, Updated [[CodeMirror Plugin]]s to v5.65.19, Support AVIF Images and Bug Fixes
4
+ modified: 20250707165341181
5
+ released: 20250707115023707
6
+ tags: ReleaseNotes
7
+ title: Release 5.3.7
8
+ type: text/vnd.tiddlywiki
9
+
10
+ //[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.3.6...master]]//
11
+
12
+ This is a minor bug fix release before introducing the major changes planned for v5.4.0. The changes planned for that release do involve some minor breaks in backwards compatibility so this release is intended to be a stable point for users before they upgrade.
13
+
14
+ ! New Features
15
+
16
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9130">> The new ~TiddlyWiki Surveys edition at https://tiddlywiki.com/surveys.html is a home for surveys and interviews with the TiddlyWiki community. There will be a new 2025 survey soon, but in the meantime you can read the results of the Great Viral ~TiddlyWiki Interview Project from 2010.
17
+
18
+ <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9099">>The new Wiki Information tab in the control panel provides a convenient way to view and copy key configuration information about your wiki. This is useful for debugging and support purposes. Find it in $:/ControlPanel under the "Info" tab.
19
+
20
+ ! Translation improvements
21
+
22
+ * Chinese
23
+ * French
24
+ * German
25
+ * Greek
26
+ * Japanese
27
+
28
+ ! Plugin Improvements
29
+
30
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9114">> [[CodeMirror Plugin]] to ~CodeMirror version to 5.65.19
31
+
32
+ ! Widget Improvements
33
+
34
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8816">> 'disabled' attribute to SelectWidget and BrowseWidget
35
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8819">> 'tabindex' attribute to BrowseWidget, RangeWidget, CheckboxWidget and RadioWidget
36
+
37
+ ! Usability Improvements
38
+
39
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8783">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/commit/028c80782d105beb90f5d58a7f22e865c7e8c6f4">>) [[Hidden Setting: Default Type for Missing Tiddlers]]
40
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8837">> [[incorrect|https://localizejs.com/articles/why-using-flag-icons-can-confuse-your-users/]] use of national flags to represent languages
41
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8078">> vertical spacing of sidebar "Tools" tab when displayed in the story river, and add some utility CSS classes
42
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9102">> control panel setting to specify the default tiddler info tab
43
+
44
+ ! Palette Improvements
45
+
46
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8661">> DiffTextWidget colours to several core palettes
47
+ * <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8807">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8911">>) Flexoki palette with additional colours
48
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9007">> Vanilla palette with resolvable #RRGGBB values
49
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9053">> test case palette entries to the remaining core palettes
50
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9020">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9020">>) ~SolarizedLight and ~SolarizedDark palettes to improve readability of stability badges and the download button
51
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9016">> Nord palette to improve accessibility and make the editor border visible
52
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9009">> ~ContrastDark palette to improve accessibility
53
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9018">> ~SolarFlare palette, fix plugin button hover and sidebar icon hover
54
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9017">> Rocker palette, make toolbar buttons visible, sidebar tabs adjusted
55
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9014">> ~GruvboxDark palette, improve accessibility contrast, add network activity
56
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9013">> ~DesertSand palette, fix some errors, make values resolvable
57
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9012">> ~DarkPhotos palette, make colours resolvable
58
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9011">> Cupertino dark palette
59
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9010">> ~ContrastLight palette, slightly improved contrast
60
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9008">> Blanca palette with resolvable values, add missing indices, slight colour adjustments
61
+
62
+ ! Hackability Improvements
63
+
64
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8768">> several macros such as [[colour-picker Macro]], [[dumpvariables Macro]], [[image-picker Macro]], [[translink Macro]], [[tree Macro]] and [[list-links-draggable Macro]] to use the newer syntax
65
+ * <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8780">> rendered plain text template to support more languages
66
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8821">> the editor link dropdown to use newer syntax
67
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8911">> support for images in AVIF format
68
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9076">> a CSS class to the import table
69
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9098">> a CSS class to help style links in modals
70
+
71
+ ! Bug Fixes
72
+
73
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8800">> problem with overwriting shadow tiddlers from plugins that do not have a `plugin-priority` field
74
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8831">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8835">>) problem with switching language not correctly updating the `lang` attribute of the root `<html>` element
75
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8842">> bug with refreshing ExternalImages with a `_canonical_uri` field
76
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8882">> [[unusedtitle Macro]] to trim whitespace from the generated title
77
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8898">> file extensions and MIME types for font files
78
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8903">> bug where the wiki would be marked as dirty when a shadow tiddler is changed
79
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8895">> unnecessary refresh with GenesisWidget
80
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/d4bc3fcd998902c17cd6bcefdc8d380e5c224458">> [[WidgetMessage: tm-http-request]] to pass custom variables to the progress actions
81
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8930">> FillWidget to no longer display its content
82
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8921">> inconsistent whitespace in page toolbar "More" dropdown
83
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8931">> RSOD with [[contains Operator]] if created field is accessed
84
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8881">> incorrect .html file extension of exported tiddlers on Android
85
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8951">> Arabic text using sans-serif font by adding "system-ui" to default font family
86
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8955">> refresh problem with "save" button
87
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8721">> [[list-tagged-draggable Macro]] to use the "caption" field if available
88
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8959">> problem with missing expandable arrow in [[toc-selective-expandable|Table-of-Contents Macros]]
89
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/5930">> the default value does not work for the CheckboxWidget if it is bound to an index in a data tiddler
90
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8970">> [[median Operator]] to order values as numbers, not strings
91
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8958">> red screen of embarrassment error with moduleproperty filter operator
92
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8946">> red screen of embarrassment when using a [[startup action|StartupActions]] with the [[now Macro]]
93
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9026">> some download file types not being specified
94
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9032">> configuration filter in $:/AdvancedSearch "Standard" tab
95
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9025">> stringification of derived fields for [[tiddlywiki.files Files]]
96
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8739">> broken tag pill styling in edit mode after v5.3.3
97
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/9105">> adding external themes to the [[Highlight Plugin]]
98
+
99
+ ! Node.js Improvements
100
+
101
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8789">> incorrect redirect when combining a custom [[path-prefix|WebServer Parameter: path-prefix]] with manual HTTP Basic Authentication via the [[/login-basic|WebServer API: Force Basic Authentication Login]] endpoint
102
+ * <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/55dbce10f461c41240d2c6ee5a49bd6ed0edc15b">> crash loading large files
103
+
104
+ ! Performance Improvements
105
+
106
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/issues/8952">> plugin editions to use the external core
107
+
108
+ ! Developer Improvements
109
+
110
+ * <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/8978">> Widget.prototype.addEventListener not overwriting old listeners
111
+ * <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7596">> configurations for [[dprint|https://dprint.dev/]] and [[eslint|https://eslint.org/]] (partially reverted in [[#8987|https://github.com/TiddlyWiki/TiddlyWiki5/pull/8987]])
112
+
113
+ ! Acknowledgements
114
+
115
+ [[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:
116
+
117
+ <<.contributors """
118
+ bobjtls
119
+ DesignThinkerer
120
+ flibbles
121
+ galenhuntington
122
+ hoelzro
123
+ IchijikuIchigo
124
+ jbaldus
125
+ jeremyredhead
126
+ jrbntt
127
+ jryans
128
+ kookma
129
+ Leilei332
130
+ linonetwo
131
+ matthewsalmon
132
+ michaeljmcd
133
+ opn
134
+ pmario
135
+ Rhys-T
136
+ saqimtiaz
137
+ well-noted
138
+ xcazin
139
+ yaisog
140
+ """>>
@@ -0,0 +1,19 @@
1
+ caption: 5.3.8
2
+ created: 20250807084952911
3
+ description: Bugfix release for 5.3.7
4
+ modified: 20250807100514203
5
+ released: 20250807084952911
6
+ tags: ReleaseNotes
7
+ title: Release 5.3.8
8
+ type: text/vnd.tiddlywiki
9
+
10
+ \define release-introduction()
11
+ This is a bug fix release for TiddlyWiki [[Release 5.3.7]] that fixes problems introduced in that release.
12
+ \end release-introduction
13
+
14
+ \define banner-credit-user-name() Christian Byron
15
+ \define banner-credit-user-link() https://talk.tiddlywiki.org/u/Christian_Byron
16
+ \define banner-credit-discussion-link() https://talk.tiddlywiki.org/t/planning-a-v5-3-8-bug-fix-release/12963
17
+ \define banner-credit-permalink() https://raw.githubusercontent.com/TiddlyWiki/TiddlyWiki5/e8a7bbf14e078d83ab6ba55a80cb8d9ba5290303/editions/tw5.com/tiddlers/images/New%20Release%20Banner.png
18
+
19
+ <<releasenote 5.3.8>>
@@ -1,10 +1,14 @@
1
1
  created: 20130823203800000
2
- modified: 2020051619421803
2
+ modified: 20260220093010752
3
3
  tags: About
4
4
  title: RoadMap
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- TiddlyWiki 5 is now a mature, stable project that is relied upon by many people. Simultaneously, it is rapidly evolving in many directions thanks to the broad community of developers and users. This paradoxical situation is possible because the project strictly maintains backwards compatibility, adding new features alongside the existing ones.
7
+ TiddlyWiki was first released in 2013, 9 years after the original [[TiddlyWiki Classic]]. Since then there have been 41 releases, making TiddlyWiki steadily more flexible and reliable. We have ambitious plans for the future as well: v5.4.x, v5.5.x, and eventually TWXX.
8
8
 
9
- There is no formal roadmap, but quite a few areas that have yet to be fully implemented, such as search and replace, and rich text editing. Current work can be found on ~GitHub at https://github.com/TiddlyWiki/TiddlyWiki5/
9
+ Our version numbering follows the form v5.x.0. ~TiddlyWiki is currently on v<<version>>, and so we are currently working towards v5.4.0.
10
10
 
11
+ There is a detailed project plan on GitHub, but the major milestones are planned as follows:
12
+
13
+ * TiddlyWiki v5.4.0 will be followed by further v5.4.x releases to fix bugs and incrementally improve features. If there are significant backwards compatibility concerns then those improvements will be pushed into v5.5.0, the next release to make minor backwards comatibility tweaks.
14
+ * We'll go on to make v5.6.0, v5.7.0 etc releases until we're ready to release the next major redesign, that is not compromised by backwards compatibility. We are calling this release ~TiddlyWiki XX ("~TiddlyWiki Twenty", or TWXX).
@@ -3,7 +3,7 @@ tags: Definitions
3
3
  modified: 20241105133737778
4
4
  created: 20241105133737778
5
5
 
6
- <span class="tc-float-right tc-bordered-image">[img width=200 [MWS Banner.png]]</span>
6
+ <span class="tc-float-right tc-bordered-image">[img width=200 [MWS Banner]]</span>
7
7
  ~MultiWikiServer is a new development that drastically improves ~TiddlyWiki's capabilities when running as a server under Node.js. It brings ~TiddlyWiki up to par with common web-based tools like ~WordPress or ~MediaWiki by supporting multiple wikis and multiple users at the same time.
8
8
 
9
9
  Planned features include:
@@ -0,0 +1,22 @@
1
+ created: 20250617180651017
2
+ modified: 20250617183155928
3
+ tags: Encryption
4
+ title: Encrypted Wiki Import Problems
5
+ type: text/vnd.tiddlywiki
6
+
7
+ There have been some problems with ''importing encrypted'' TWs ''into'' version v5.2.0 and v5.2.1.
8
+
9
+ While encrypting and decrypting single file wikis with v5.2.0 and v5.2.1 works as intended. There are some problems if encrypted wikis are ''imported'', if those wikis have been ''encrypted with any other version''.
10
+
11
+ So if you import a wiki that was been encrypted with eg: TW v5.1.23 into v5.2.0 or v5.2.1 the v5.1.23 wiki could not be decrypted by v5.2.0 or v5.2.1.
12
+
13
+ !! Upgrading
14
+
15
+ * ''Importing'' encrypted wikis from any v5.1.x, v5.2.x and v5.3.x ''into the latest'' TW versions ''works as expected''
16
+ * The ''only target'' TW versions that can cause ''importing problems'' are ''v5.2.0'' and ''v5.2.1''
17
+
18
+ !! Downgrading
19
+
20
+ * Importing an encrypted v5.''3''.x into v5.''2''.x and v5.''3''.x ''works'' as expected
21
+ ** ''Except'' v5.2.0 and v5.2.1
22
+ * Importing an encrypted v5.''3''.x to v5.''1''.x ''does not work''
@@ -1,10 +1,10 @@
1
1
  created: 20130825160900000
2
- modified: 20241106165307259
2
+ modified: 20250617140259415
3
3
  tags: Features [[Working with TiddlyWiki]]
4
4
  title: Encryption
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- When used as a single HTML file, TiddlyWiki5 allows content to be encrypted with AES 128 bit encryption in CCM mode using the [[Stanford JavaScript Crypto Library]].
7
+ When used as a single HTML file, TiddlyWiki5 allows content to be encrypted with AES 256 bit encryption in CCM mode using the [[Stanford JavaScript Crypto Library]].
8
8
 
9
9
  # Switch to the ''Tools'' tab in the sidebar and look for the button with a padlock icon
10
10
  # If the button is labelled <<.icon $:/core/images/unlocked-padlock>> ''set password'' then the current wiki is not encrypted. Clicking the button will prompt for a password that will be used to encrypt subsequent saves
@@ -14,5 +14,5 @@ When used as a single HTML file, TiddlyWiki5 allows content to be encrypted with
14
14
 
15
15
  Note that TiddlyWiki has two other unrelated features concerned with passwords/encryption:
16
16
 
17
- * The ability to set a password when saving to TiddlySpot. This is done in the "Saving" tab of ''control panel'' <<.icon $:/core/images/options-button>>.
18
- * The ability to use standard HTTP basic authentication with the [[Node.js|TiddlyWiki on Node.js]] server configuration. This is done on the command line with the ServerCommand. Combined with SSL, this gives the same level of transit encryption as you'd get with online services like Google or Dropbox, but there is no encryption of data on disk
17
+ * The ability to set a password when saving to [[Tiddlyhost]]. This is done in the "Saving" tab of ''control panel'' <<.icon $:/core/images/options-button>>.
18
+ * The ability to use standard HTTP basic authentication with the [[Node.js|TiddlyWiki on Node.js]] server configuration. This is done on the command line with the ListenCommand. Combined with SSL, this gives the same level of transit encryption as you'd get with online services like Google or Dropbox, but there is no encryption of data on disk
@@ -4,7 +4,7 @@ created: 20160216191710789
4
4
  delivery: Protocol
5
5
  description: Standard web protocol available on products such as Sharepoint
6
6
  method: save
7
- modified: 20220615155048712
7
+ modified: 20260102081028704
8
8
  tags: Android Chrome Firefox [[Internet Explorer]] Linux Mac Opera PHP Safari Saving Windows iOS Edge
9
9
  title: Saving via WebDAV
10
10
  type: text/vnd.tiddlywiki
@@ -19,6 +19,9 @@ Lightweight, portable and easy to use solutions
19
19
 
20
20
  * [[rclone|https://rclone.org/commands/rclone_serve_webdav/]]
21
21
  ** Running it can be as simple as: <br/>`rclone serve webdav some_directory_containing_tiddlywiki_files`
22
+ * [[copyparty|https://github.com/9001/copyparty]]
23
+ ** Copyparty comes with a ~WebDAV server. Simply run `copyparty -v .::rwd:c,daw` to serve the current folder and visit [[http://[::1]:3923/]] to use TiddlyWiki
24
+ ** Note that you need to grant read, write and delete permission and add `daw` volflag to allow copyparty to overwrite existing files.
22
25
  * [[micromata dave - the simple webdav server|https://github.com/micromata/dave]]
23
26
  * [[dav-server|https://github.com/edrex/dav-server]] is a quick way to serve up a folder of HTML ~TiddlyWikis.
24
27
  * [[hacdias webdav server|https://github.com/hacdias/webdav/]]
@@ -44,6 +47,10 @@ Lightweight, portable and easy to use solutions
44
47
 
45
48
  * RCX is an open source file manager for Android based on //rclone//. It is available on both //F-Droid// and //Google Play//. Thanks to its integrated WebDAV server, it lets you edit the wikis that you keep in your pocket. You can share them with other devices on the local network too.
46
49
 
50
+ !! iOS
51
+
52
+ * There are no native apps that can serve a ~WebDAV server, but you can use rclone or copyparty on [[iSH Shell|https://apps.apple.com/cn/app/ish-shell/id1436902243]] or copyparty on [[a-Shell|https://apps.apple.com/cn/app/a-shell/id1473805438]].
53
+
47
54
  !! Servers
48
55
 
49
56
  Many [[NAS|https://en.wikipedia.org/wiki/NAS]] or [[Subversion|https://en.wikipedia.org/wiki/Apache_Subversion]] servers support ~WebDAV out of the box. Setting up your own server might take some effort though:
@@ -1,7 +1,7 @@
1
1
  created: 20131129092604900
2
2
  modified: 20200507202835577
3
3
  tags:
4
- title: Saving with the HTML5 saver
4
+ title: Saving with the HTML5 fallback saver
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
7
  See [[Saving with the HTML5 saver]]
@@ -12,7 +12,7 @@ https://github.com/TiddlyWiki/TiddlyWiki5/edit/tiddlywiki-com/editions/tw5.com/t
12
12
  <$list filter="[[$:/config/OriginalTiddlerPaths]getindex<draft-of>]" variable="target" >
13
13
  <div class="tc-improvement-banner">
14
14
  {{$:/core/images/star-filled}} Can you help us improve this documentation? [[Find out how|Improving TiddlyWiki Documentation]] to
15
- <a href={{{ [<draft-of>encodeuricomponent[]addprefix[https://saqimtiaz.github.io/tw5-docs-pr-maker/#]] }}} class="tc-tiddlylink-external" target="_blank" rel="noopener noreferrer">edit this tiddler in Docs PR Maker</a>
15
+ <a href={{{ [<draft-of>encodeuricomponent[]addprefix[https://edit.tiddlywiki.com/#]] }}} class="tc-tiddlylink-external" target="_blank" rel="noopener noreferrer">edit this tiddler in Docs PR Maker</a>
16
16
  or
17
17
  <a href={{{ [<target>addprefix<base-github>] }}} class="tc-tiddlylink-external" target="_blank" rel="noopener noreferrer">edit it directly on ~GitHub</a>
18
18
  </div>
@@ -9,4 +9,4 @@ HelloThere
9
9
  [[TiddlyWiki on the Web]]
10
10
  [[Testimonials and Reviews]]
11
11
  GettingStarted
12
- Community
12
+ Community
@@ -37,7 +37,7 @@ title: $:/editions/tw5.com/TiddlerInfo/Sources
37
37
  \end
38
38
 
39
39
  \procedure make-pr-maker-link()
40
- <a href={{{ [<currentTiddler>encodeuricomponent[]addprefix[https://saqimtiaz.github.io/tw5-docs-pr-maker/#]] }}}
40
+ <a href={{{ [<currentTiddler>encodeuricomponent[]addprefix[https://edit.tiddlywiki.com/#]] }}}
41
41
  class="tc-tiddlylink-external"
42
42
  target="_blank"
43
43
  rel="noopener noreferrer"
@@ -1,6 +1,6 @@
1
1
  caption: {{$:/language/SideBar/Contents/Caption}}
2
2
  created: 20140809114010378
3
- list: HelloThere [[Quick Start]] Learning [[Working with TiddlyWiki]] [[Customise TiddlyWiki]] Features Filters Languages Editions Plugins Platforms Reference Community About
3
+ list: Welcome HelloThere [[Quick Start]] Learning [[Working with TiddlyWiki]] [[Customise TiddlyWiki]] Features Filters Languages Editions Plugins Platforms Reference Community About
4
4
  list-before:
5
5
  modified: 20230322150307580
6
6
  tags: $:/tags/SideBar
@@ -2,7 +2,7 @@ title: $:/editions/tw5.com/download-empty
2
2
  code-body: yes
3
3
 
4
4
  \procedure saveTiddlerFilter()
5
- [[$:/core]] [[$:/isEncrypted]] [[$:/themes/tiddlywiki/snowwhite]] [[$:/themes/tiddlywiki/vanilla]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]]
5
+ [[$:/core]] [[$:/isEncrypted]] [[$:/themes/tiddlywiki/snowwhite]] [[$:/themes/tiddlywiki/vanilla]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] -[has[plugin-type]field:platform[server]] +[sort[title]]
6
6
  \end
7
7
 
8
8
  \procedure savingEmpty() yes
@@ -1,7 +1,7 @@
1
1
  caption: $:/tags/ClassFilters/TiddlerTemplate
2
2
  created: 20221020035738692
3
- description: marks filters evaluated to dynamically add classes to the page template.
4
- modified: 20230326153057521
3
+ description: marks filters evaluated to dynamically add classes to the tiddler template.
4
+ modified: 20250608225016149
5
5
  tags: SystemTags
6
6
  title: SystemTag: $:/tags/ClassFilters/TiddlerTemplate
7
7
  type: text/vnd.tiddlywiki
@@ -1,5 +1,5 @@
1
1
  created: 20230803034230294
2
- modified: 20230803043848449
2
+ modified: 20260114112240512
3
3
  tags: [[Macro Examples]] [[tag-pill Macro]]
4
4
  title: tag-pill Macro (Examples)
5
5
 
@@ -12,3 +12,9 @@ This example displays the [[Definitions]] tag as an unclickable, but still-style
12
12
  <$transclude $variable=".example" n="2" eg="""<<tag-pill Definitions element-tag:"big" element-attributes:"inert">>"""/>
13
13
 
14
14
 
15
+ <$transclude $variable=".example" n="3" eg="""\procedure tag-actions()
16
+ <$action-confirm $message="test"/>
17
+ \end
18
+
19
+ <$transclude $variable="tag-pill" tag="asdf" element-tag="$button" actions=<<tag-actions>>/>
20
+ """>>
@@ -0,0 +1,40 @@
1
+ created: 20260301005951330
2
+ description: Procedure calls with dynamic attributes
3
+ modified: 20260301013907635
4
+ tags: $:/tags/wiki-test-spec
5
+ title: TestCases/Calls/ProcedureDynamicAttributes
6
+ type: text/vnd.tiddlywiki-multiple
7
+
8
+ title: Narrative
9
+
10
+ New-style equals sign named parameters support dynamic values
11
+ +
12
+ title: Output
13
+
14
+ \function f(a) foo [<a>] :and[join[ ]]
15
+ \procedure p(a1) <$text text=<<a1>>/>
16
+
17
+ <$let v="foo 1" v2="foo 3">
18
+ <<p a1=<<v>>>> -
19
+ <<p a1=<<f 2>>>> -
20
+ <<p a1=`$(v2)$`>> -
21
+ <<p a1={{my tiddler}}>> -
22
+ <<p a1={{my tiddler!!myfield}}>> -
23
+ <<p a1={{{ foo 6 :and[join[ ]] }}}>>
24
+ </$let>
25
+ +
26
+ title: my tiddler
27
+ myfield: foo 5
28
+
29
+ foo 4
30
+ +
31
+ title: ExpectedResult
32
+
33
+ <p>
34
+ foo 1 -
35
+ foo 2 -
36
+ foo 3 -
37
+ foo 4 -
38
+ foo 5 -
39
+ foo 6
40
+ </p>