tiddlywiki 5.3.8 → 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 (1597) 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 +2 -2
  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 +1 -0
  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/stylesheets/custom-properties.tid +30 -0
  239. package/core/templates/external-js/save-all-external-js.tid +1 -1
  240. package/core/templates/external-js/save-offline-external-js.tid +1 -1
  241. package/core/templates/external-js/tiddlywiki5-external-js.html.tid +8 -6
  242. package/core/templates/save-all.tid +1 -1
  243. package/core/templates/save-empty.tid +1 -1
  244. package/core/templates/save-lazy-all.tid +1 -1
  245. package/core/templates/save-lazy-images.tid +1 -1
  246. package/core/ui/AdvancedSearch/Filter.tid +23 -17
  247. package/core/ui/AdvancedSearch/Shadows.tid +9 -3
  248. package/core/ui/AdvancedSearch/Standard.tid +13 -7
  249. package/core/ui/AdvancedSearch/System.tid +9 -3
  250. package/core/ui/AlertTemplate.tid +3 -3
  251. package/core/ui/ControlPanel/Basics.tid +1 -0
  252. package/core/ui/EditTemplate/body-editor.tid +1 -1
  253. package/core/ui/EditTemplate/body-toolbar-button.tid +4 -2
  254. package/core/ui/EditTemplate/fields.tid +163 -139
  255. package/core/ui/EditTemplate/title.tid +5 -1
  256. package/core/ui/EditTemplate/type.tid +17 -2
  257. package/core/ui/Filters/StoryList.tid +1 -1
  258. package/core/ui/ImportListing.tid +35 -15
  259. package/core/ui/LayoutSwitcher.tid +18 -19
  260. package/core/ui/PageStylesheet.tid +2 -0
  261. package/core/ui/PageTemplate/alerts.tid +2 -2
  262. package/core/ui/SideBar/Open.tid +1 -1
  263. package/core/ui/SideBarSegments/search.tid +11 -5
  264. package/core/ui/TiddlerInfo/Advanced/CascadeInfo.tid +43 -0
  265. package/core/ui/TiddlerInfo.tid +1 -1
  266. package/core/ui/ViewTemplate/title.tid +7 -3
  267. package/core/ui/WikiInformation.tid +3 -0
  268. package/core/wiki/config/MediaQueryTrackers/DarkLightPreferred.tid +5 -0
  269. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  270. package/core/wiki/config/TiddlerInfoMode.tid +1 -1
  271. package/core/wiki/languageswitcher.tid +12 -12
  272. package/core/wiki/macros/CSS-property.tid +39 -0
  273. package/core/wiki/macros/CSS.tid +0 -50
  274. package/core/wiki/macros/deprecated.tid +43 -0
  275. package/core/wiki/macros/keyboard-driven-input.tid +16 -10
  276. package/core/wiki/macros/list.tid +58 -43
  277. package/core/wiki/macros/tabs.tid +4 -3
  278. package/core/wiki/macros/tag-picker.tid +3 -2
  279. package/core/wiki/macros/toc.tid +32 -5
  280. package/core/wiki/minifocuseditswitcher.tid +8 -0
  281. package/core/wiki/tags/TiddlerInfoAdvanced.tid +1 -1
  282. package/core/wiki/themeswitcher.tid +10 -9
  283. package/core/wiki/viewswitcher.tid +5 -4
  284. package/core-server/commander.js +176 -0
  285. package/core-server/commands/commands.js +36 -0
  286. package/core-server/commands/deletetiddlers.js +36 -0
  287. package/core-server/commands/fetch.js +170 -0
  288. package/core-server/commands/import.js +42 -0
  289. package/core-server/commands/init.js +53 -0
  290. package/core-server/commands/listen.js +42 -0
  291. package/core-server/commands/load.js +44 -0
  292. package/core-server/commands/output.js +32 -0
  293. package/core-server/commands/render.js +63 -0
  294. package/core-server/commands/rendertiddlers.js +62 -0
  295. package/core-server/commands/save.js +62 -0
  296. package/core-server/commands/savetiddlers.js +49 -0
  297. package/core-server/commands/savewikifolder.js +221 -0
  298. package/core-server/commands/server.js +49 -0
  299. package/core-server/commands/setfield.js +50 -0
  300. package/core-server/filesystem.js +541 -0
  301. package/core-server/plugin.info +11 -0
  302. package/core-server/readme.tid +7 -0
  303. package/core-server/server/authenticators/basic.js +87 -0
  304. package/core-server/server/routes/delete-tiddler.js +26 -0
  305. package/core-server/server/routes/get-favicon.js +22 -0
  306. package/core-server/server/routes/get-file.js +73 -0
  307. package/core-server/server/routes/get-index.js +25 -0
  308. package/core-server/server/routes/get-login-basic.js +34 -0
  309. package/core-server/server/routes/get-status.js +31 -0
  310. package/core-server/server/routes/get-tiddler-html.js +42 -0
  311. package/core-server/server/routes/get-tiddler.js +44 -0
  312. package/core-server/server/routes/get-tiddlers-json.js +48 -0
  313. package/core-server/server/routes/put-tiddler.js +50 -0
  314. package/core-server/server/server.js +393 -0
  315. package/core-server/utils/base64.js +30 -0
  316. package/core-server/utils/escapecss.js +95 -0
  317. package/core-server/utils/repository.js +45 -0
  318. package/editions/de-AT/tiddlers/external/tiddlywiki.files +2 -2
  319. package/editions/de-AT/tiddlers/system/$__editions_de-AT-DE_download-empty.tid +1 -1
  320. package/editions/de-AT/tiddlywiki.info +1 -2
  321. package/editions/de-DE/tiddlywiki.info +1 -2
  322. package/editions/dev/tiddlers/$__StoryList.tid +3 -0
  323. package/editions/dev/tiddlers/How to Create a Custom Cascade Entry.tid +127 -0
  324. package/editions/dev/tiddlers/build/Releasing a new version of TiddlyWiki.tid +1 -0
  325. package/editions/dev/tiddlers/from Heigele and Jurke/RootWidget and Rendering Startup.tid +5 -1
  326. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +1 -1
  327. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +1 -1
  328. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +1 -1
  329. package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +1 -1
  330. package/editions/empty/tiddlywiki.info +1 -2
  331. package/editions/es-ES/tiddlers/system/download-empty.tid +1 -1
  332. package/editions/es-ES/tiddlywiki.info +1 -2
  333. package/editions/fr-FR/tiddlers/$__editions_tw5.com_railroad_macro-parameter-value.tid +3 -1
  334. package/editions/fr-FR/tiddlers/Macro_Call_Syntax.tid +1 -1
  335. package/editions/fr-FR/tiddlers/Macro_Definition_Syntax.tid +1 -1
  336. package/editions/fr-FR/tiddlers/ReleaseTemplate.tid +1 -0
  337. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +17 -0
  338. package/editions/fr-FR/tiddlers/system/download-empty.tid +1 -1
  339. package/editions/fr-FR/tiddlywiki.info +1 -2
  340. package/editions/ja-JP/tiddlers/Concatenating a text reference to create a URL.tid +15 -0
  341. package/editions/ja-JP/tiddlers/Concatenating variables to create a URL.tid +15 -0
  342. package/editions/ja-JP/tiddlers/TiddlyWiki Docs PR Maker.tid +4 -5
  343. package/editions/ja-JP/tiddlers/Welcome.tid +10 -0
  344. package/editions/ja-JP/tiddlers/_TiddlyStudy_ by Kebi.tid +28 -0
  345. package/editions/ja-JP/tiddlers/_tw_shared/doc-utilities/wikitext-macros.tid +91 -0
  346. package/editions/ja-JP/tiddlers/about/Archive.tid +3 -3
  347. package/editions/ja-JP/tiddlers/about/Developers.tid +3 -21
  348. package/editions/ja-JP/tiddlers/about/Donations.tid +17 -0
  349. package/editions/ja-JP/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  350. package/editions/ja-JP/tiddlers/about/History of TiddlyWiki.tid +7 -81
  351. package/editions/ja-JP/tiddlers/about/The Story of TiddlyWiki.tid +71 -0
  352. package/editions/ja-JP/tiddlers/about/TiddlyWiki Anniversaries.tid +33 -0
  353. package/editions/ja-JP/tiddlers/commands/BuildCommand.tid +13 -0
  354. package/editions/ja-JP/tiddlers/commands/ClearPasswordCommand.tid +6 -0
  355. package/editions/ja-JP/tiddlers/commands/Commands.tid +17 -0
  356. package/editions/ja-JP/tiddlers/commands/CommandsCommand.tid +10 -0
  357. package/editions/ja-JP/tiddlers/commands/DeleteTiddlersCommand.tid +9 -0
  358. package/editions/ja-JP/tiddlers/commands/EditionsCommand.tid +10 -0
  359. package/editions/ja-JP/tiddlers/commands/FetchCommand.tid +10 -0
  360. package/editions/ja-JP/tiddlers/commands/HelpCommand.tid +10 -0
  361. package/editions/ja-JP/tiddlers/commands/ImportCommand.tid +10 -0
  362. package/editions/ja-JP/tiddlers/commands/InitCommand.tid +14 -0
  363. package/editions/ja-JP/tiddlers/commands/ListenCommand.tid +12 -0
  364. package/editions/ja-JP/tiddlers/commands/LoadCommand.tid +10 -0
  365. package/editions/ja-JP/tiddlers/commands/MakeLibraryCommand.tid +12 -0
  366. package/editions/ja-JP/tiddlers/commands/OutputCommand.tid +10 -0
  367. package/editions/ja-JP/tiddlers/commands/PasswordCommand.tid +6 -0
  368. package/editions/ja-JP/tiddlers/commands/RenderCommand.tid +18 -0
  369. package/editions/ja-JP/tiddlers/commands/RenderTiddlerCommand.tid +9 -0
  370. package/editions/ja-JP/tiddlers/commands/RenderTiddlersCommand.tid +9 -0
  371. package/editions/ja-JP/tiddlers/commands/SaveCommand.tid +10 -0
  372. package/editions/ja-JP/tiddlers/commands/SaveTiddlerCommand.tid +10 -0
  373. package/editions/ja-JP/tiddlers/commands/SaveTiddlersCommand.tid +10 -0
  374. package/editions/ja-JP/tiddlers/commands/SaveWikiFolderCommand.tid +9 -0
  375. package/editions/ja-JP/tiddlers/commands/ServerCommand.tid +16 -0
  376. package/editions/ja-JP/tiddlers/commands/SetFieldCommand.tid +9 -0
  377. package/editions/ja-JP/tiddlers/commands/UnpackPluginCommand.tid +10 -0
  378. package/editions/ja-JP/tiddlers/commands/VerboseCommand.tid +6 -0
  379. package/editions/ja-JP/tiddlers/commands/VersionCommand.tid +6 -0
  380. package/editions/ja-JP/tiddlers/community/Articles.tid +3 -3
  381. package/editions/ja-JP/tiddlers/community/Community Editions.tid +2 -2
  382. package/editions/ja-JP/tiddlers/community/Community Links Aggregator.tid +13 -0
  383. package/editions/ja-JP/tiddlers/community/Community Palettes.tid +2 -2
  384. package/editions/ja-JP/tiddlers/community/Community Plugins.tid +2 -2
  385. package/editions/ja-JP/tiddlers/community/Community Themes.tid +2 -2
  386. package/editions/ja-JP/tiddlers/community/Community.tid +4 -6
  387. package/editions/ja-JP/tiddlers/community/Examples.tid +3 -3
  388. package/editions/ja-JP/tiddlers/community/Forums.tid +9 -18
  389. package/editions/ja-JP/tiddlers/community/Improving TiddlyWiki Documentation.tid +55 -0
  390. package/editions/ja-JP/tiddlers/community/Latest.tid +2 -2
  391. package/editions/ja-JP/tiddlers/community/Meetups.tid +2 -2
  392. package/editions/ja-JP/tiddlers/community/Other Resources.tid +2 -2
  393. package/editions/ja-JP/tiddlers/community/Resources.tid +13 -0
  394. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2016.tid +17 -0
  395. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2017.tid +13 -0
  396. package/editions/ja-JP/tiddlers/community/TiddlyWiki Hangouts.tid +1 -1
  397. package/editions/ja-JP/tiddlers/community/TiddlyWiki Newsletter.tid +12 -0
  398. package/editions/ja-JP/tiddlers/community/TiddlyWiki on the Web.tid +3 -3
  399. package/editions/ja-JP/tiddlers/community/Translate TiddlyWiki into your language.tid +18 -0
  400. package/editions/ja-JP/tiddlers/community/Tutorials.tid +2 -2
  401. package/editions/ja-JP/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +21 -0
  402. package/editions/ja-JP/tiddlers/community/articles/_Notizen mit TiddlyWiki systemubergreifend nutzen_ by Michael Sonntag.tid +19 -0
  403. package/editions/ja-JP/tiddlers/community/articles/_Setting Up a Personal TiddlyWiki Server on OS X_ by Kris Johnson.tid +24 -0
  404. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki 5 im Betatest_ by besim.tid +17 -0
  405. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki_ by Sander de Boer.tid +17 -0
  406. package/editions/ja-JP/tiddlers/community/docs/Community Cards Caveats.tid +7 -0
  407. package/editions/ja-JP/tiddlers/community/docs/Community Cards.tid +13 -0
  408. package/editions/ja-JP/tiddlers/community/docs/Displaying Community Cards.tid +28 -0
  409. package/editions/ja-JP/tiddlers/community/docs/Submitting a Community Card.tid +38 -0
  410. package/editions/ja-JP/tiddlers/community/editions/Drift by Tony K.tid +20 -0
  411. package/editions/ja-JP/tiddlers/community/editions/Stroll by David Gifford.tid +20 -0
  412. package/editions/ja-JP/tiddlers/community/editions/Tidme by oflg.tid +18 -0
  413. package/editions/ja-JP/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +23 -0
  414. package/editions/ja-JP/tiddlers/community/examples/GitFixUm.tid +0 -1
  415. package/editions/ja-JP/tiddlers/community/examples/PETTIL.tid +1 -1
  416. package/editions/ja-JP/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  417. package/editions/ja-JP/tiddlers/community/plugins/GSD5.tid +16 -0
  418. package/editions/ja-JP/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +22 -0
  419. package/editions/ja-JP/tiddlers/community/plugins/TiddlyWiki for Scholars.tid +16 -0
  420. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki People.tid +13 -0
  421. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki Project.tid +13 -0
  422. package/editions/ja-JP/tiddlers/community/project/Vacant Positions.tid +5 -0
  423. package/editions/ja-JP/tiddlers/community/resources/Projectify by Nicolas Petton.tid +24 -0
  424. package/editions/ja-JP/tiddlers/community/resources/TiddlyWiki Posts.tid +16 -0
  425. package/editions/ja-JP/tiddlers/community/resources/Wikilabs by PMario.tid +18 -0
  426. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +18 -0
  427. package/editions/ja-JP/tiddlers/community/tools/cards/Procedures.tid +168 -0
  428. package/editions/ja-JP/tiddlers/concepts/ExternalImages.tid +29 -11
  429. package/editions/ja-JP/tiddlers/concepts/Filters.tid +2 -1
  430. package/editions/ja-JP/tiddlers/concepts/TemplateTiddlers.tid +20 -0
  431. package/editions/ja-JP/tiddlers/concepts/TextReference.tid +36 -0
  432. package/editions/ja-JP/tiddlers/concepts/Transclusion.tid +31 -0
  433. package/editions/ja-JP/tiddlers/concepts/WikiText.tid +17 -0
  434. package/editions/ja-JP/tiddlers/definitions/Base64.tid +9 -0
  435. package/editions/ja-JP/tiddlers/definitions/Cascading Style Sheets.tid +9 -0
  436. package/editions/ja-JP/tiddlers/definitions/Definitions.tid +12 -0
  437. package/editions/ja-JP/tiddlers/definitions/Tiddlyhost.tid +13 -0
  438. package/editions/ja-JP/tiddlers/features/Future Proof.tid +3 -3
  439. package/editions/ja-JP/tiddlers/filters/syntax/Filter Run Prefix.tid +0 -1
  440. package/editions/ja-JP/tiddlers/filters/syntax/Filter Step.tid +5 -5
  441. package/editions/ja-JP/tiddlers/functions/Functions.tid +30 -0
  442. package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +1 -1
  443. package/editions/ja-JP/tiddlers/hellothere/Find Out More.tid +2 -2
  444. package/editions/ja-JP/tiddlers/hellothere/HelloThere.tid +28 -6
  445. package/editions/ja-JP/tiddlers/hellothere/HelloThumbnail.tid +7 -0
  446. package/editions/ja-JP/tiddlers/hellothere/Testimonials and Reviews.tid +2 -2
  447. package/editions/ja-JP/tiddlers/hellothere/quickstart/Quick Start.tid +2 -2
  448. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +10 -0
  449. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  450. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
  451. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  452. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
  453. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  454. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +12 -0
  455. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
  456. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +1 -1
  457. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
  458. package/editions/ja-JP/tiddlers/hiddensettings/Hidden Setting Default Tiddler Colour.tid +3 -3
  459. package/editions/ja-JP/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +16 -0
  460. package/editions/ja-JP/tiddlers/hire-jeremy/HireJeremy.tid +59 -0
  461. package/editions/ja-JP/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  462. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS.tid +28 -0
  463. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS_-_Example.tid +16 -0
  464. package/editions/ja-JP/tiddlers/howtos/Windows HTA Hack.tid +2 -1
  465. package/editions/ja-JP/tiddlers/marketplace/TiddlyWiki Marketplace.tid +20 -0
  466. package/editions/ja-JP/tiddlers/plugins/Dynaview Plugin.tid +1 -1
  467. package/editions/ja-JP/tiddlers/plugins/Innerwiki Plugin.tid +1 -1
  468. package/editions/ja-JP/tiddlers/plugins/Share Plugin.tid +6 -4
  469. package/editions/ja-JP/tiddlers/procedures/Procedure Calls.tid +58 -0
  470. package/editions/ja-JP/tiddlers/procedures/Procedure Definitions.tid +47 -0
  471. package/editions/ja-JP/tiddlers/procedures/Procedure Parameter Handling.tid +26 -0
  472. package/editions/ja-JP/tiddlers/reference/Reference.tid +17 -0
  473. package/editions/ja-JP/tiddlers/roadmap/RoadMap.tid +9 -4
  474. package/editions/ja-JP/tiddlers/saving/Encryption.tid +3 -3
  475. package/editions/ja-JP/tiddlers/saving/Saving via WebDAV.tid +9 -1
  476. package/editions/ja-JP/tiddlers/saving/Saving with TiddlyIE.tid +2 -1
  477. package/editions/ja-JP/tiddlers/saving/Saving.tid +2 -2
  478. package/editions/ja-JP/tiddlers/system/TableOfContents.tid +1 -1
  479. package/editions/ja-JP/tiddlers/system/download-empty.tid +1 -1
  480. package/editions/ja-JP/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +13 -0
  481. package/editions/ja-JP/tiddlers/wikitext/Anchor Links using HTML.tid +202 -0
  482. package/editions/ja-JP/tiddlers/wikitext/Block Quotes in WikiText.tid +106 -0
  483. package/editions/ja-JP/tiddlers/wikitext/Code Blocks in WikiText.tid +43 -0
  484. package/editions/ja-JP/tiddlers/wikitext/Conditional Shortcut Syntax.tid +64 -0
  485. package/editions/ja-JP/tiddlers/wikitext/Dashes in WikiText.tid +14 -0
  486. package/editions/ja-JP/tiddlers/wikitext/Description Lists in WikiText.tid +16 -0
  487. package/editions/ja-JP/tiddlers/wikitext/Filtered Attribute Values.tid +18 -0
  488. package/editions/ja-JP/tiddlers/wikitext/Formatting in WikiText.tid +62 -0
  489. package/editions/ja-JP/tiddlers/wikitext/HTML Entities.tid +68 -0
  490. package/editions/ja-JP/tiddlers/wikitext/HTML in WikiText.tid +94 -0
  491. package/editions/ja-JP/tiddlers/wikitext/HTML_Links_in_WikiText.tid +19 -0
  492. package/editions/ja-JP/tiddlers/wikitext/Hard Linebreaks in WikiText.tid +24 -0
  493. package/editions/ja-JP/tiddlers/wikitext/Headings in WikiText.tid +22 -0
  494. package/editions/ja-JP/tiddlers/wikitext/Horizontal Rules in WikiText.tid +12 -0
  495. package/editions/ja-JP/tiddlers/wikitext/Linking in WikiText.tid +127 -0
  496. package/editions/ja-JP/tiddlers/wikitext/Lists in WikiText.tid +94 -0
  497. package/editions/ja-JP/tiddlers/wikitext/Literal Attribute Values.tid +32 -0
  498. package/editions/ja-JP/tiddlers/wikitext/Macro Calls.tid +60 -0
  499. package/editions/ja-JP/tiddlers/wikitext/Macro Definitions.tid +69 -0
  500. package/editions/ja-JP/tiddlers/wikitext/Macro Parameter Handling.tid +80 -0
  501. package/editions/ja-JP/tiddlers/wikitext/Paragraphs in WikiText.tid +25 -0
  502. package/editions/ja-JP/tiddlers/wikitext/Substituted Attribute Values.tid +35 -0
  503. package/editions/ja-JP/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +22 -0
  504. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +83 -0
  505. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText.tid +74 -0
  506. package/editions/ja-JP/tiddlers/wikitext/Transcluded Attribute Values.tid +16 -0
  507. package/editions/ja-JP/tiddlers/wikitext/Transclusion Basic Usage.tid +47 -0
  508. package/editions/ja-JP/tiddlers/wikitext/Transclusion and Substitution.tid +62 -0
  509. package/editions/ja-JP/tiddlers/wikitext/Transclusion in WikiText.tid +78 -0
  510. package/editions/ja-JP/tiddlers/wikitext/Transclusion with Templates.tid +62 -0
  511. package/editions/ja-JP/tiddlers/wikitext/Typed Blocks in WikiText.tid +69 -0
  512. package/editions/ja-JP/tiddlers/wikitext/Utility Classes.tid +23 -0
  513. package/editions/ja-JP/tiddlers/wikitext/Variable Attribute Values.tid +19 -0
  514. package/editions/ja-JP/tiddlers/wikitext/Widget Attributes.tid +28 -0
  515. package/editions/ja-JP/tiddlers/wikitext/Widgets in WikiText.tid +33 -0
  516. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText Parser Modes.tid +20 -0
  517. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +58 -0
  518. package/editions/ja-JP/tiddlers/wikitext/parser/table-example.tid +10 -0
  519. package/editions/ja-JP/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +3 -3
  520. package/editions/ja-JP/tiddlywiki.info +1 -2
  521. package/editions/ko-KR/tiddlers/system/download-empty.tid +1 -1
  522. package/editions/ko-KR/tiddlywiki.info +1 -2
  523. package/editions/prerelease/tiddlers/system/DefaultTiddlers.tid +1 -1
  524. package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
  525. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  526. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +1 -0
  527. package/editions/prerelease/tiddlers/system/download-empty.tid +1 -1
  528. package/editions/prerelease/tiddlywiki.info +2 -1
  529. package/editions/test/playwright.spec.js +17 -17
  530. package/editions/test/tiddlers/$__StoryList.tid +2 -0
  531. package/editions/test/tiddlers/tests/data/functions/FunctionDefaultValues.tid +16 -0
  532. package/editions/test/tiddlers/tests/data/functions/FunctionSubstituteResolution.tid +38 -0
  533. package/editions/test/tiddlers/tests/data/functions/VariableLeakage.tid +15 -0
  534. package/editions/test/tiddlers/tests/data/functions/VariablesEnumeration.tid +14 -0
  535. package/editions/test/tiddlers/tests/data/genesis-widget/Block.tid +1 -1
  536. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultList.tid +12 -0
  537. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultListUnnamedVariable.tid +12 -0
  538. package/editions/test/tiddlers/tests/data/let-filter-prefix/ShortcutSyntax.tid +12 -0
  539. package/editions/test/tiddlers/tests/data/let-filter-prefix/Simple.tid +12 -0
  540. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Attribute.tid +26 -0
  541. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Standalone.tid +23 -0
  542. package/editions/test/tiddlers/tests/data/multi-valued-variables/AttributeFirstValue.tid +16 -0
  543. package/editions/test/tiddlers/tests/data/multi-valued-variables/DefaultParameterMVV.tid +19 -0
  544. package/editions/test/tiddlers/tests/data/multi-valued-variables/Function.tid +18 -0
  545. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplay.tid +16 -0
  546. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplaySeparator.tid +16 -0
  547. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplay.tid +14 -0
  548. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplaySeparator.tid +14 -0
  549. package/editions/test/tiddlers/tests/data/multi-valued-variables/MissingVariable.tid +12 -0
  550. package/editions/test/tiddlers/tests/data/multi-valued-variables/NegatedTitle.tid +18 -0
  551. package/editions/test/tiddlers/tests/data/multi-valued-variables/Operands.tid +18 -0
  552. package/editions/test/tiddlers/tests/data/multi-valued-variables/Parameters.tid +21 -0
  553. package/editions/test/tiddlers/tests/data/multi-valued-variables/ParametersShortcut.tid +21 -0
  554. package/editions/test/tiddlers/tests/data/multi-valued-variables/Simple.tid +17 -0
  555. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameter.tid +19 -0
  556. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterDirectly.tid +19 -0
  557. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterFunction.tid +17 -0
  558. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-named.tid +13 -0
  559. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-non-strict.tid +13 -0
  560. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-equals-no-value.tid +13 -0
  561. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-equals.tid +13 -0
  562. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-filtered-value.tid +13 -0
  563. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-indirect-value.tid +17 -0
  564. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-mvv-value.tid +14 -0
  565. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-nested-macro.tid +14 -0
  566. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-substituted-value.tid +13 -0
  567. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-positional-gt.tid +13 -0
  568. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-multiline.tid +17 -0
  569. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-quoted-gt.tid +14 -0
  570. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-single-line.tid +14 -0
  571. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat.tid +14 -0
  572. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-equals-noval.tid +13 -0
  573. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-malformed-mvv.tid +13 -0
  574. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-mvv-value.tid +14 -0
  575. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-substituted-value.tid +13 -0
  576. package/editions/test/tiddlers/tests/data/procedures/Calls.tid +28 -0
  577. package/editions/test/tiddlers/tests/data/serialize/Attribute.tid +5 -0
  578. package/editions/test/tiddlers/tests/data/serialize/BlockRule.tid +7 -0
  579. package/editions/test/tiddlers/tests/data/serialize/BoldEmphasis.tid +5 -0
  580. package/editions/test/tiddlers/tests/data/serialize/CodeBlock.tid +17 -0
  581. package/editions/test/tiddlers/tests/data/serialize/CommentBlock.tid +11 -0
  582. package/editions/test/tiddlers/tests/data/serialize/CommentInline.tid +5 -0
  583. package/editions/test/tiddlers/tests/data/serialize/Conditional.tid +21 -0
  584. package/editions/test/tiddlers/tests/data/serialize/Dash.tid +7 -0
  585. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroMixed.tid +9 -0
  586. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroParams.tid +9 -0
  587. package/editions/test/tiddlers/tests/data/serialize/DynamicWidgetAttribute.tid +7 -0
  588. package/editions/test/tiddlers/tests/data/serialize/Entity.tid +5 -0
  589. package/editions/test/tiddlers/tests/data/serialize/ExtLink.tid +7 -0
  590. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeBlock.tid +13 -0
  591. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeInline.tid +5 -0
  592. package/editions/test/tiddlers/tests/data/serialize/FunctionDefinition.tid +15 -0
  593. package/editions/test/tiddlers/tests/data/serialize/HardLineBreaks.tid +12 -0
  594. package/editions/test/tiddlers/tests/data/serialize/Heading.tid +29 -0
  595. package/editions/test/tiddlers/tests/data/serialize/Html.tid +15 -0
  596. package/editions/test/tiddlers/tests/data/serialize/Image.tid +10 -0
  597. package/editions/test/tiddlers/tests/data/serialize/Import.tid +6 -0
  598. package/editions/test/tiddlers/tests/data/serialize/ItalicEmphasis.tid +5 -0
  599. package/editions/test/tiddlers/tests/data/serialize/List.tid +40 -0
  600. package/editions/test/tiddlers/tests/data/serialize/MacroCallBlock.tid +13 -0
  601. package/editions/test/tiddlers/tests/data/serialize/MacroCallInline.tid +7 -0
  602. package/editions/test/tiddlers/tests/data/serialize/MacroDef.tid +9 -0
  603. package/editions/test/tiddlers/tests/data/serialize/Parameters.tid +5 -0
  604. package/editions/test/tiddlers/tests/data/serialize/ParserMode.tid +9 -0
  605. package/editions/test/tiddlers/tests/data/serialize/PrettyExtLink.tid +6 -0
  606. package/editions/test/tiddlers/tests/data/serialize/PrettyLink.tid +6 -0
  607. package/editions/test/tiddlers/tests/data/serialize/QuoteBlock.tid +7 -0
  608. package/editions/test/tiddlers/tests/data/serialize/RulesPragma.tid +6 -0
  609. package/editions/test/tiddlers/tests/data/serialize/SimpleText.tid +5 -0
  610. package/editions/test/tiddlers/tests/data/serialize/SoftLineBreak.tid +6 -0
  611. package/editions/test/tiddlers/tests/data/serialize/StrikethroughEmphasis.tid +5 -0
  612. package/editions/test/tiddlers/tests/data/serialize/StyleBlock.tid +17 -0
  613. package/editions/test/tiddlers/tests/data/serialize/StyleBlock2.tid +13 -0
  614. package/editions/test/tiddlers/tests/data/serialize/StyleInline.tid +7 -0
  615. package/editions/test/tiddlers/tests/data/serialize/SubscriptEmphasis.tid +5 -0
  616. package/editions/test/tiddlers/tests/data/serialize/SuperscriptEmphasis.tid +5 -0
  617. package/editions/test/tiddlers/tests/data/serialize/SysLink.tid +6 -0
  618. package/editions/test/tiddlers/tests/data/serialize/Table.tid +11 -0
  619. package/editions/test/tiddlers/tests/data/serialize/TranscludeBlock.tid +21 -0
  620. package/editions/test/tiddlers/tests/data/serialize/TranscludeInline.tid +5 -0
  621. package/editions/test/tiddlers/tests/data/serialize/TypedBlock1.tid +15 -0
  622. package/editions/test/tiddlers/tests/data/serialize/TypedBlock2.tid +19 -0
  623. package/editions/test/tiddlers/tests/data/serialize/UnderscoreEmphasis.tid +5 -0
  624. package/editions/test/tiddlers/tests/data/serialize/VoidElements.tid +12 -0
  625. package/editions/test/tiddlers/tests/data/serialize/WikiLink.tid +7 -0
  626. package/editions/test/tiddlers/tests/data/serialize/WikiLinkPrefix.tid +5 -0
  627. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-a.tid +1 -1
  628. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-all.tid +1 -1
  629. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-vertical.tid +1 -1
  630. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttribute.tid +34 -0
  631. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeFiltered.tid +20 -0
  632. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeVariable.tid +13 -0
  633. package/editions/test/tiddlers/tests/data/transclude/Parameterised-ParseTreeNodes.tid +1 -1
  634. package/editions/test/tiddlers/tests/data/transclude/Procedures-Dollar-Param.tid +22 -0
  635. package/editions/test/tiddlers/tests/modules/utils/test-csv.js +4 -4
  636. package/editions/test/tiddlers/tests/test-action-deletefield.js +120 -120
  637. package/editions/test/tiddlers/tests/test-action-widgets.js +73 -76
  638. package/editions/test/tiddlers/tests/test-backlinks.js +53 -53
  639. package/editions/test/tiddlers/tests/test-backtranscludes.js +119 -119
  640. package/editions/test/tiddlers/tests/test-checkbox-widget.js +491 -493
  641. package/editions/test/tiddlers/tests/test-compare-filter.js +1 -4
  642. package/editions/test/tiddlers/tests/test-deserialize-operator.js +18 -21
  643. package/editions/test/tiddlers/tests/test-deserializers.js +17 -19
  644. package/editions/test/tiddlers/tests/test-filters.js +123 -123
  645. package/editions/test/tiddlers/tests/test-html-parser.js +377 -50
  646. package/editions/test/tiddlers/tests/test-json-filters.js +29 -5
  647. package/editions/test/tiddlers/tests/test-linked-list.js +4 -4
  648. package/editions/test/tiddlers/tests/test-parsetextreference.js +1 -1
  649. package/editions/test/tiddlers/tests/test-prefixes-filter.js +9 -7
  650. package/editions/test/tiddlers/tests/test-tags-operator.js +45 -45
  651. package/editions/test/tiddlers/tests/test-tags.js +155 -155
  652. package/editions/test/tiddlers/tests/test-utils.js +10 -10
  653. package/editions/test/tiddlers/tests/test-widget-event.js +9 -9
  654. package/editions/test/tiddlers/tests/test-widget-getVariableInfo.js +7 -18
  655. package/editions/test/tiddlers/tests/test-widget.js +117 -93
  656. package/editions/test/tiddlers/tests/test-wikitext-parser.js +89 -80
  657. package/editions/test/tiddlers/tests/test-wikitext-serialize.js +18 -0
  658. package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +4 -4
  659. package/editions/test/tiddlers/tests/test-wikitext.js +1 -1
  660. package/editions/test/tiddlywiki.info +1 -0
  661. package/editions/testcommonjs/tiddlers/absolute/program.js +5 -5
  662. package/editions/testcommonjs/tiddlers/absolute/submodule/a.js +1 -1
  663. package/editions/testcommonjs/tiddlers/allTests.js +11 -11
  664. package/editions/testcommonjs/tiddlers/cyclic/a.js +2 -2
  665. package/editions/testcommonjs/tiddlers/cyclic/b.js +2 -2
  666. package/editions/testcommonjs/tiddlers/cyclic/program.js +8 -8
  667. package/editions/testcommonjs/tiddlers/determinism/program.js +3 -3
  668. package/editions/testcommonjs/tiddlers/determinism/submodule/a.js +5 -5
  669. package/editions/testcommonjs/tiddlers/exactExports/a.js +1 -1
  670. package/editions/testcommonjs/tiddlers/exactExports/program.js +4 -4
  671. package/editions/testcommonjs/tiddlers/hasOwnProperty/program.js +4 -4
  672. package/editions/testcommonjs/tiddlers/method/a.js +4 -4
  673. package/editions/testcommonjs/tiddlers/method/program.js +6 -6
  674. package/editions/testcommonjs/tiddlers/missing/program.js +5 -5
  675. package/editions/testcommonjs/tiddlers/monkeys/a.js +1 -1
  676. package/editions/testcommonjs/tiddlers/monkeys/program.js +4 -4
  677. package/editions/testcommonjs/tiddlers/nested/a/b/c/d.js +1 -1
  678. package/editions/testcommonjs/tiddlers/nested/program.js +3 -3
  679. package/editions/testcommonjs/tiddlers/relative/program.js +5 -5
  680. package/editions/testcommonjs/tiddlers/relative/submodule/a.js +1 -1
  681. package/editions/testcommonjs/tiddlers/test.js +9 -9
  682. package/editions/testcommonjs/tiddlers/transitive/a.js +1 -1
  683. package/editions/testcommonjs/tiddlers/transitive/b.js +1 -1
  684. package/editions/testcommonjs/tiddlers/transitive/c.js +1 -1
  685. package/editions/testcommonjs/tiddlers/transitive/program.js +3 -3
  686. package/editions/tiddlywiki-surveys/scripts/extract-text-tiddlers-via-console.js +4 -4
  687. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00189.json +37 -0
  688. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00190.tid +33 -0
  689. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00191.json +37 -0
  690. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00192.json +37 -0
  691. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00193.json +37 -0
  692. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00194.tid +33 -0
  693. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00195.json +37 -0
  694. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00196.json +37 -0
  695. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00197.tid +33 -0
  696. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00198.json +37 -0
  697. package/editions/translators/tiddlers/Instructions for Translators.tid +1 -0
  698. package/editions/translators/tiddlers/system/$__status_UserName.tid +3 -0
  699. package/editions/translators/tiddlywiki.info +1 -0
  700. package/editions/tw5.com/tiddlers/Concatenating a text reference to create a URL.tid +13 -0
  701. package/editions/tw5.com/tiddlers/Concatenating variables to create a URL.tid +13 -0
  702. package/editions/tw5.com/tiddlers/Core CSS Variables.tid +11 -0
  703. package/editions/tw5.com/tiddlers/Deprecated Core Classes.tid +13 -0
  704. package/editions/tw5.com/tiddlers/Deprecated core macros.tid +31 -0
  705. package/editions/tw5.com/tiddlers/TiddlyWiki Docs PR Maker.tid +3 -4
  706. package/editions/tw5.com/tiddlers/Writing stylesheets in vanilla CSS.tid +69 -0
  707. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-macros.tid +44 -7
  708. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-styles.tid +15 -2
  709. package/editions/tw5.com/tiddlers/about/Archive.tid +2 -2
  710. package/editions/tw5.com/tiddlers/about/Developers.tid +2 -13
  711. package/editions/tw5.com/tiddlers/about/Donations.tid +16 -0
  712. package/editions/tw5.com/tiddlers/about/Filter Syntax History.tid +15 -15
  713. package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  714. package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +6 -6
  715. package/editions/tw5.com/tiddlers/commands/RenderCommand.tid +2 -1
  716. package/editions/tw5.com/tiddlers/community/Articles.tid +1 -1
  717. package/editions/tw5.com/tiddlers/community/Community Editions.tid +1 -1
  718. package/editions/tw5.com/tiddlers/community/Community Palettes.tid +1 -1
  719. package/editions/tw5.com/tiddlers/community/Community Plugins.tid +1 -1
  720. package/editions/tw5.com/tiddlers/community/Community Survey 2025.tid +6 -14
  721. package/editions/tw5.com/tiddlers/community/Community Themes.tid +1 -1
  722. package/editions/tw5.com/tiddlers/community/Community.tid +3 -5
  723. package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -2
  724. package/editions/tw5.com/tiddlers/community/Examples.tid +1 -1
  725. package/editions/tw5.com/tiddlers/community/Forums.tid +9 -17
  726. package/editions/tw5.com/tiddlers/community/Improving TiddlyWiki Documentation.tid +2 -2
  727. package/editions/tw5.com/tiddlers/community/Latest.tid +1 -1
  728. package/editions/tw5.com/tiddlers/community/Meetups.tid +1 -1
  729. package/editions/tw5.com/tiddlers/community/Other Resources.tid +1 -1
  730. package/editions/tw5.com/tiddlers/community/Resources.tid +11 -0
  731. package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
  732. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter.tid +5 -5
  733. package/editions/tw5.com/tiddlers/community/Tutorials.tid +1 -1
  734. package/editions/tw5.com/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +2 -1
  735. package/editions/tw5.com/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +9 -2
  736. package/editions/tw5.com/tiddlers/community/examples/PETTIL.tid +1 -1
  737. package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +1 -1
  738. package/editions/tw5.com/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  739. package/editions/tw5.com/tiddlers/community/plugins/IndexedDB Plugin by Andreas Abeck.tid +2 -1
  740. package/editions/tw5.com/tiddlers/community/plugins/Slider by Mohammad.tid +2 -2
  741. package/editions/tw5.com/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +20 -0
  742. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +16 -0
  743. package/editions/tw5.com/tiddlers/community/tutorials/Un wiki sur votre BiblioBox avec TiddlyWiki.tid +2 -1
  744. package/editions/tw5.com/tiddlers/communitycards/tiddlywiki.files +11 -0
  745. package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +2 -2
  746. package/editions/tw5.com/tiddlers/concepts/Date Fields.tid +3 -2
  747. package/editions/tw5.com/tiddlers/concepts/DefaultTiddlers.tid +1 -1
  748. package/editions/tw5.com/tiddlers/concepts/Filters.tid +1 -1
  749. package/editions/tw5.com/tiddlers/concepts/TiddlyWiki.tid +1 -1
  750. package/editions/tw5.com/tiddlers/css-variables/--tp-animation-duration CSS Variable.tid +8 -0
  751. package/editions/tw5.com/tiddlers/css-variables/--tp-body-font-size Variable.tid +8 -0
  752. package/editions/tw5.com/tiddlers/css-variables/--tp-body-line-height Variable.tid +8 -0
  753. package/editions/tw5.com/tiddlers/css-variables/--tp-code-font-family Variable.tid +8 -0
  754. package/editions/tw5.com/tiddlers/css-variables/--tp-code-wrapping Variable.tid +8 -0
  755. package/editions/tw5.com/tiddlers/css-variables/--tp-editor-font-family Variable.tid +8 -0
  756. package/editions/tw5.com/tiddlers/css-variables/--tp-font-family Variable.tid +8 -0
  757. package/editions/tw5.com/tiddlers/css-variables/--tp-font-size Variable.tid +8 -0
  758. package/editions/tw5.com/tiddlers/css-variables/--tp-line-height Variable.tid +8 -0
  759. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-breakpoint CSS Variable.tid +8 -0
  760. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-width CSS Variable.tid +8 -0
  761. package/editions/tw5.com/tiddlers/css-variables/--tp-story-left CSS Variable.tid +8 -0
  762. package/editions/tw5.com/tiddlers/css-variables/--tp-story-right CSS Variable.tid +8 -0
  763. package/editions/tw5.com/tiddlers/css-variables/--tp-story-top CSS Variable.tid +8 -0
  764. package/editions/tw5.com/tiddlers/css-variables/--tp-story-width CSS Variable.tid +8 -0
  765. package/editions/tw5.com/tiddlers/css-variables/--tp-tiddler-width CSS Variable.tid +8 -0
  766. package/editions/tw5.com/tiddlers/css-variables/--tpc-_ variables.tid +16 -0
  767. package/editions/tw5.com/tiddlers/definitions/BT.tid +1 -1
  768. package/editions/tw5.com/tiddlers/definitions/ContentType.tid +9 -8
  769. package/editions/tw5.com/tiddlers/definitions/Intertwingled Innovations.tid +1 -1
  770. package/editions/tw5.com/tiddlers/definitions/JeremyRuston.tid +1 -13
  771. package/editions/tw5.com/tiddlers/definitions/Jermolene.tid +1 -1
  772. package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +1 -1
  773. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +5 -2
  774. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +4 -2
  775. package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Simple Example.tid +36 -4
  776. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExample.tid +9 -9
  777. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +7 -3
  778. package/editions/tw5.com/tiddlers/features/DateFormat.tid +18 -17
  779. package/editions/tw5.com/tiddlers/filters/examples/days.tid +5 -7
  780. package/editions/tw5.com/tiddlers/filters/examples/jsondelete.tid +59 -0
  781. package/editions/tw5.com/tiddlers/filters/examples/substitute Operator (Examples).tid +45 -22
  782. package/editions/tw5.com/tiddlers/filters/function.tid +2 -2
  783. package/editions/tw5.com/tiddlers/filters/jsondelete.tid +54 -0
  784. package/editions/tw5.com/tiddlers/filters/range.tid +36 -22
  785. package/editions/tw5.com/tiddlers/filters/substitute Operator.tid +2 -2
  786. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +2 -0
  787. package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +11 -1
  788. package/editions/tw5.com/tiddlers/filters/syntax/Filter Step.tid +4 -4
  789. package/editions/tw5.com/tiddlers/filters/syntax/Filter Syntax.tid +1 -1
  790. package/editions/tw5.com/tiddlers/filters/syntax/Interchangeable Filter Run Prefixes.tid +3 -0
  791. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +10 -1
  792. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix (Examples).tid +13 -0
  793. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix.tid +30 -0
  794. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +11 -0
  795. package/editions/tw5.com/tiddlers/filters/syntax/Shortcut Filter Run Prefixes.tid +4 -3
  796. package/editions/tw5.com/tiddlers/filters/syntax/then Filter Run Prefix.tid +1 -1
  797. package/editions/tw5.com/tiddlers/filters/title.tid +2 -0
  798. package/editions/tw5.com/tiddlers/functions/Functions.tid +6 -5
  799. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  800. package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
  801. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +3 -3
  802. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  803. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  804. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +1 -0
  805. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -1
  806. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  807. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +11 -0
  808. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -1
  809. package/editions/tw5.com/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +15 -0
  810. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremy.tid +56 -0
  811. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyDefinitions.tid +24 -0
  812. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyStyles.tid +163 -0
  813. package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  814. package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +4 -1
  815. package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +49 -38
  816. package/editions/tw5.com/tiddlers/images/Blurry Lawn.jpg +0 -0
  817. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp +0 -0
  818. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp.meta +4 -0
  819. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp +0 -0
  820. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp.meta +3 -0
  821. package/editions/tw5.com/tiddlers/images/MWS Banner.webp +0 -0
  822. package/editions/tw5.com/tiddlers/images/MWS Banner.webp.meta +6 -0
  823. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp +0 -0
  824. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp.meta +4 -0
  825. package/editions/tw5.com/tiddlers/images/New Release Banner.webp +0 -0
  826. package/editions/tw5.com/tiddlers/images/New Release Banner.webp.meta +4 -0
  827. package/editions/tw5.com/tiddlers/images/TW5-Graph.png +0 -0
  828. package/editions/tw5.com/tiddlers/images/TW5-Graph.png.meta +4 -0
  829. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp +0 -0
  830. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp.meta +5 -0
  831. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp +0 -0
  832. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp.meta +4 -0
  833. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp +0 -0
  834. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp.meta +4 -0
  835. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp +0 -0
  836. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp.meta +4 -0
  837. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp +0 -0
  838. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp.meta +4 -0
  839. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp +0 -0
  840. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp.meta +4 -0
  841. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp +0 -0
  842. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp.meta +4 -0
  843. package/editions/tw5.com/tiddlers/macros/StylesheetMacros.tid +2 -17
  844. package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +4 -1
  845. package/editions/tw5.com/tiddlers/macros/examples/tabs.tid +12 -0
  846. package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +26 -8
  847. package/editions/tw5.com/tiddlers/macros/list-tagged-draggable Macro.tid +20 -6
  848. package/editions/tw5.com/tiddlers/macros/syntax/Call Syntax.tid +43 -0
  849. package/editions/tw5.com/tiddlers/macros/syntax/CallParameterValue.tid +13 -0
  850. package/editions/tw5.com/tiddlers/macros/syntax/Macro Call Syntax.tid +3 -27
  851. package/editions/tw5.com/tiddlers/macros/syntax/Macro Definition Syntax.tid +1 -1
  852. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Call Syntax.tid +2 -29
  853. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Definition Syntax.tid +2 -2
  854. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Syntax.tid +1 -1
  855. package/editions/tw5.com/tiddlers/macros/tag-pill_Macro.tid +13 -8
  856. package/editions/tw5.com/tiddlers/mechanisms/Background Actions.tid +28 -0
  857. package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +30 -3
  858. package/editions/tw5.com/tiddlers/mechanisms/MediaQueryTrackerMechanism.tid +13 -0
  859. package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +1 -0
  860. package/editions/tw5.com/tiddlers/plugins/Plugin_Fields.tid +2 -1
  861. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _function.tid +1 -1
  862. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _procedure.tid +1 -1
  863. package/editions/tw5.com/tiddlers/procedures/Procedure Calls.tid +2 -51
  864. package/editions/tw5.com/tiddlers/procedures/Procedures.tid +2 -2
  865. package/editions/tw5.com/tiddlers/procedures/calls/Calls.tid +64 -0
  866. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9133.tid +8 -0
  867. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9166.tid +8 -0
  868. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9175.tid +8 -0
  869. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9184.tid +8 -0
  870. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9185.tid +8 -0
  871. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/32caeb69c3e7b75a80a84a1e14363e87175b164e.tid +10 -0
  872. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/75502266176de9d4a5e1f89cd7f2e455b7a2f6da.tid +8 -0
  873. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/93d30f374da4a6b2037b335f7f7d4eddce8192db.tid +8 -0
  874. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#7898.tid +11 -0
  875. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8093.tid +10 -0
  876. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8249-aes-256-bit.tid +25 -0
  877. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8258.tid +14 -0
  878. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8810.tid +12 -0
  879. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8972.tid +16 -0
  880. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9015-muted-palette-adjustments.tid +11 -0
  881. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9024 - audio-parser-widget-intercept.tid +10 -0
  882. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9050.tid +13 -0
  883. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9055.tid +27 -0
  884. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9078.tid +16 -0
  885. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9097.tid +13 -0
  886. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9103.tid +18 -0
  887. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9107 - update-configuration-defaults.tid +11 -0
  888. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9118.tid +10 -0
  889. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119 - sticky-flag.tid +7 -0
  890. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119.tid +8 -0
  891. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131 - strikethrough.tid +9 -0
  892. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131.tid +8 -0
  893. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9135.tid +10 -0
  894. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9148.tid +10 -0
  895. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9154.tid +8 -0
  896. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9167.tid +10 -0
  897. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9177.tid +12 -0
  898. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183 - core-server-pluginisation.tid +9 -0
  899. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183.tid +10 -0
  900. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9203.tid +10 -0
  901. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid +17 -0
  902. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid +13 -0
  903. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9214 - configure-edit-focus.tid +13 -0
  904. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9235.tid +10 -0
  905. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242 - deprecate-css-macros.tid +7 -0
  906. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242.tid +10 -0
  907. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9243.tid +8 -0
  908. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253 - textencoder.tid +8 -0
  909. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253.tid +10 -0
  910. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9254-list-links-draggable-parameter-missing.tid +14 -0
  911. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid +13 -0
  912. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259_impacts_deprecate-eventcatcher-attributes.tid +8 -0
  913. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid +29 -0
  914. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275 - remove-range-widget-ie.tid +7 -0
  915. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275.tid +8 -0
  916. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9277.tid +10 -0
  917. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9280.tid +10 -0
  918. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9281-add-th-debug-element.tid +17 -0
  919. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9287.tid +10 -0
  920. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9293-draft-moduls-not-executed.tid +19 -0
  921. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9295.tid +14 -0
  922. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9297.tid +12 -0
  923. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9305.tid +13 -0
  924. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9313.tid +10 -0
  925. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316 - currentcolor.tid +8 -0
  926. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316.tid +10 -0
  927. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9317-eslint-ignore-output.tid +13 -0
  928. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9328.tid +10 -0
  929. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9333.tid +49 -0
  930. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337 - math-filters .tid +7 -0
  931. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337.tid +18 -0
  932. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9341.tid +12 -0
  933. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9347.tid +8 -0
  934. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9348.tid +10 -0
  935. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9349 - cjk-text-spacing.tid +10 -0
  936. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350 - deprecation.tid +8 -0
  937. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350.tid +20 -0
  938. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9358.tid +10 -0
  939. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9368 - fix-image-paste-rename-ux.tid +10 -0
  940. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9371.tid +11 -0
  941. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9375.tid +11 -0
  942. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9401.tid +10 -0
  943. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9422.tid +10 -0
  944. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9427.tid +11 -0
  945. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9439.tid +10 -0
  946. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9445.tid +10 -0
  947. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9453 - diff-text-editcost-param.tid +10 -0
  948. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9454 - edit-text-rows-precedence.tid +10 -0
  949. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9465.tid +15 -0
  950. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9466.tid +15 -0
  951. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9489.tid +10 -0
  952. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9494.tid +10 -0
  953. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9495.tid +10 -0
  954. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9538.tid +10 -0
  955. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9548.tid +10 -0
  956. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9551.tid +15 -0
  957. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9570.tid +10 -0
  958. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9582.tid +10 -0
  959. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9585 - button-classes.tid +13 -0
  960. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9598.tid +11 -0
  961. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9600.tid +10 -0
  962. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609.tid +24 -0
  963. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609_impacts_event detail variables in eventcatcher.json +13 -0
  964. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9612-toc-level.tid +14 -0
  965. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9617 - select-widget-refresh-default.tid +12 -0
  966. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9621 - list-widget-macros-start-endactions.tid +16 -0
  967. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9626.tid +10 -0
  968. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9634-cascade-info-tab.tid +10 -0
  969. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9641.tid +14 -0
  970. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9655 - german-translations.tid +10 -0
  971. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9660.tid +10 -0
  972. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9676.tid +48 -0
  973. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9703.tid +13 -0
  974. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9782 - Greek translation.tid +13 -0
  975. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/Release 5.4.0.tid +21 -0
  976. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/add-stylesheet-wiki-info.tid +10 -0
  977. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/bump-markdown-it.tid +18 -0
  978. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func - deprecation.tid +8 -0
  979. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func.tid +10 -0
  980. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/draft-i18n.tid +15 -0
  981. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/escapecss-split.tid +10 -0
  982. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/improve-alert-a11y.tid +10 -0
  983. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/leilei332-update-eslint-config.tid +14 -0
  984. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es - api.tid +11 -0
  985. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es.tid +10 -0
  986. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/refactor-base64-util.tid +14 -0
  987. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes Internals.tid +65 -0
  988. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes.tid +59 -0
  989. package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +1 -0
  990. package/editions/tw5.com/tiddlers/releasenotes/ReleasesInfo.multids +67 -0
  991. package/editions/tw5.com/tiddlers/releasenotes/ReleasesProcedures.tid +397 -0
  992. package/editions/tw5.com/tiddlers/releasenotes/ReleasesStyles.tid +205 -0
  993. package/editions/tw5.com/tiddlers/releasenotes/ReleasesSummaryLists.tid +3 -0
  994. package/editions/tw5.com/tiddlers/releasenotes/ReleasesTabTemplate.tid +12 -0
  995. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyChangeNote.tid +6 -0
  996. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyFilters.tid +6 -0
  997. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyImpactNote.tid +6 -0
  998. package/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid +6 -4
  999. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.1.23.tid +298 -0
  1000. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.0.tid +302 -0
  1001. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.4.tid +145 -0
  1002. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.6.tid +149 -0
  1003. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.2.tid +184 -0
  1004. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.7.tid +140 -0
  1005. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.8.tid +19 -0
  1006. package/editions/tw5.com/tiddlers/roadmap/RoadMap.tid +7 -3
  1007. package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MultiWikiServer.tid +1 -1
  1008. package/editions/tw5.com/tiddlers/saving/Encrypted Wiki Import Problems.tid +22 -0
  1009. package/editions/tw5.com/tiddlers/saving/Encryption.tid +4 -4
  1010. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +8 -1
  1011. package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 fallback saver.tid +1 -1
  1012. package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +1 -1
  1013. package/editions/tw5.com/tiddlers/system/DefaultTiddlers.tid +1 -1
  1014. package/editions/tw5.com/tiddlers/system/Sources.tid +1 -1
  1015. package/editions/tw5.com/tiddlers/system/TableOfContents.tid +1 -1
  1016. package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -1
  1017. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +2 -2
  1018. package/editions/tw5.com/tiddlers/tag-pill Macro (Examples).tid +7 -1
  1019. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureDynamicAttributes.tid +40 -0
  1020. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureStaticAttributes.tid +48 -0
  1021. package/editions/tw5.com/tiddlers/testcases/RevealWidget/AccordionSlider.tid +1 -1
  1022. package/editions/tw5.com/tiddlers/testcases/RevealWidget/Popup.tid +1 -1
  1023. package/editions/tw5.com/tiddlers/testcases/RevealWidget/SimpleReveal.tid +1 -1
  1024. package/editions/tw5.com/tiddlers/testcases/RevealWidget/TextReference.tid +1 -1
  1025. package/editions/tw5.com/tiddlers/v5.4.0/Improvements to Macro Calls.tid +48 -0
  1026. package/editions/tw5.com/tiddlers/variables/Behaviour of called variables depends on how the variable was declared.tid +52 -0
  1027. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via filter expression function call.tid +1 -1
  1028. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +3 -1
  1029. package/editions/tw5.com/tiddlers/variables/Multi-Valued Variables.tid +118 -0
  1030. package/editions/tw5.com/tiddlers/variables/Variables.tid +5 -3
  1031. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
  1032. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get File.tid +14 -3
  1033. package/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid +45 -18
  1034. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +4 -1
  1035. package/editions/tw5.com/tiddlers/widgets/DiffTextWidget.tid +57 -33
  1036. package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +12 -13
  1037. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +109 -45
  1038. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +18 -1
  1039. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +14 -2
  1040. package/editions/tw5.com/tiddlers/widgets/LinkWidget.tid +19 -2
  1041. package/editions/tw5.com/tiddlers/widgets/LogWidget.tid +43 -17
  1042. package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +46 -29
  1043. package/editions/tw5.com/tiddlers/widgets/examples/RevealWidget (Popup Clamping Example).tid +68 -0
  1044. package/editions/tw5.com/tiddlers/wikitext/Definitions in WikiText.tid +3 -10
  1045. package/editions/tw5.com/tiddlers/wikitext/Description Lists in WikiText.tid +44 -0
  1046. package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +1 -1
  1047. package/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +5 -1
  1048. package/editions/tw5.com/tiddlers/wikitext/Macro Calls.tid +1 -52
  1049. package/editions/tw5.com/tiddlers/wikitext/Multi-Valued Variable Attribute Values.tid +37 -0
  1050. package/editions/tw5.com/tiddlers/wikitext/Substituted Attribute Values.tid +5 -15
  1051. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +11 -0
  1052. package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +22 -0
  1053. package/editions/tw5.com/tiddlers/wikitext/Typed Blocks in WikiText.tid +31 -42
  1054. package/editions/tw5.com/tiddlers/wikitext/Widget Attributes.tid +3 -1
  1055. package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +1 -1
  1056. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +2 -2
  1057. package/editions/tw5.com/tiddlers/workingwithtw/TiddlyWiki Privacy and Security.tid +2 -1
  1058. package/editions/tw5.com/tiddlywiki.info +3 -3
  1059. package/editions/zh-Hans/tiddlers/system/download-empty-zh-Hans.tid +1 -1
  1060. package/editions/zh-Hans/tiddlywiki.info +1 -2
  1061. package/editions/zh-Hant/tiddlers/system/download-empty-zh-Hant.tid +1 -1
  1062. package/editions/zh-Hant/tiddlywiki.info +1 -2
  1063. package/eslint.config.mjs +327 -0
  1064. package/languages/ca-ES/ControlPanel.multids +1 -1
  1065. package/languages/da-DK/ControlPanel.multids +1 -1
  1066. package/languages/de-DE/ControlPanel.multids +7 -3
  1067. package/languages/de-DE/Draft.multids +4 -0
  1068. package/languages/de-DE/Import.multids +3 -1
  1069. package/languages/de-DE/Misc.multids +1 -0
  1070. package/languages/de-DE/TiddlerInfo.multids +5 -0
  1071. package/languages/el-GR/ControlPanel.multids +63 -59
  1072. package/languages/el-GR/Docs/PaletteColours.multids +1 -1
  1073. package/languages/el-GR/Draft.multids +4 -0
  1074. package/languages/el-GR/EditTemplate.multids +2 -2
  1075. package/languages/el-GR/Exporters.multids +3 -3
  1076. package/languages/el-GR/Import.multids +3 -1
  1077. package/languages/el-GR/Misc.multids +9 -6
  1078. package/languages/el-GR/SideBar.multids +1 -0
  1079. package/languages/el-GR/SiteSubtitle.tid +1 -1
  1080. package/languages/el-GR/ThemeTweaks.multids +2 -2
  1081. package/languages/el-GR/TiddlerInfo.multids +5 -1
  1082. package/languages/es-ES/ControlPanel.multids +16 -10
  1083. package/languages/es-ES/Fields.multids +3 -3
  1084. package/languages/es-ES/Misc.multids +1 -1
  1085. package/languages/fr-FR/ControlPanel.multids +15 -7
  1086. package/languages/fr-FR/Misc.multids +1 -0
  1087. package/languages/it-IT/ControlPanel.multids +1 -1
  1088. package/languages/ja-JP/Buttons.multids +15 -4
  1089. package/languages/ja-JP/ControlPanel.multids +35 -7
  1090. package/languages/ja-JP/Docs/ModuleTypes.multids +10 -1
  1091. package/languages/ja-JP/Docs/PaletteColours.multids +15 -0
  1092. package/languages/ja-JP/Draft.multids +4 -0
  1093. package/languages/ja-JP/EditTemplate.multids +2 -0
  1094. package/languages/ja-JP/Exporters.multids +4 -1
  1095. package/languages/ja-JP/Fields.multids +14 -8
  1096. package/languages/ja-JP/GettingStarted.tid +7 -14
  1097. package/languages/ja-JP/Help/commands.tid +18 -0
  1098. package/languages/ja-JP/Help/deletetiddlers.tid +8 -0
  1099. package/languages/ja-JP/Help/fetch.tid +38 -0
  1100. package/languages/ja-JP/Help/import.tid +24 -0
  1101. package/languages/ja-JP/Help/listen.tid +34 -0
  1102. package/languages/ja-JP/Help/load.tid +5 -2
  1103. package/languages/ja-JP/Help/password.tid +1 -1
  1104. package/languages/ja-JP/Help/render.tid +36 -0
  1105. package/languages/ja-JP/Help/rendertiddler.tid +19 -3
  1106. package/languages/ja-JP/Help/rendertiddlers.tid +9 -3
  1107. package/languages/ja-JP/Help/save.tid +25 -0
  1108. package/languages/ja-JP/Help/savetiddler.tid +7 -1
  1109. package/languages/ja-JP/Help/savetiddlers.tid +8 -6
  1110. package/languages/ja-JP/Help/savewikifolder.tid +34 -0
  1111. package/languages/ja-JP/Help/server.tid +24 -13
  1112. package/languages/ja-JP/Import.multids +3 -1
  1113. package/languages/ja-JP/Misc.multids +36 -35
  1114. package/languages/ja-JP/NewJournal.multids +1 -1
  1115. package/languages/ja-JP/NewJournalTags.tid +3 -0
  1116. package/languages/ja-JP/Notifications.multids +2 -0
  1117. package/languages/ja-JP/Search.multids +3 -1
  1118. package/languages/ja-JP/SideBar.multids +1 -1
  1119. package/languages/ja-JP/SiteTitle.tid +1 -1
  1120. package/languages/ja-JP/Snippets/FunctionDefinition.tid +7 -0
  1121. package/languages/ja-JP/Snippets/ListByTag.tid +5 -0
  1122. package/languages/ja-JP/Snippets/MacroDefinition.tid +7 -0
  1123. package/languages/ja-JP/Snippets/ProcedureDefinition.tid +7 -0
  1124. package/languages/ja-JP/Snippets/Table4x3.tid +8 -0
  1125. package/languages/ja-JP/Snippets/TableOfContents.tid +9 -0
  1126. package/languages/ja-JP/ThemeTweaks.multids +42 -0
  1127. package/languages/ja-JP/TiddlerInfo.multids +6 -1
  1128. package/languages/ja-JP/Types/application_javascript.tid +5 -0
  1129. package/languages/ja-JP/Types/application_json.tid +5 -0
  1130. package/languages/ja-JP/Types/application_x-tiddler-dictionary.tid +5 -0
  1131. package/languages/ja-JP/Types/image_gif.tid +5 -0
  1132. package/languages/ja-JP/Types/image_jpeg.tid +5 -0
  1133. package/languages/ja-JP/Types/image_png.tid +5 -0
  1134. package/languages/ja-JP/Types/image_svg+xml.tid +5 -0
  1135. package/languages/ja-JP/Types/text_css.tid +5 -0
  1136. package/languages/ja-JP/Types/text_html.tid +5 -0
  1137. package/languages/ja-JP/Types/text_plain.tid +5 -0
  1138. package/languages/ja-JP/Types/text_vnd.tiddlywiki-multiple.tid +5 -0
  1139. package/languages/ja-JP/Types/text_vnd.tiddlywiki.tid +5 -0
  1140. package/languages/mk-MK/ControlPanel.multids +1 -1
  1141. package/languages/nl-NL/ControlPanel.multids +1 -1
  1142. package/languages/pl-PL/ControlPanel.multids +1 -1
  1143. package/languages/pt-BR/ControlPanel.multids +1 -1
  1144. package/languages/pt-PT/ControlPanel.multids +1 -1
  1145. package/languages/sl-SI/ControlPanel.multids +1 -1
  1146. package/languages/zh-Hans/ControlPanel.multids +3 -2
  1147. package/languages/zh-Hans/Draft.multids +4 -0
  1148. package/languages/zh-Hans/Import.multids +2 -0
  1149. package/languages/zh-Hans/Misc.multids +1 -0
  1150. package/languages/zh-Hans/TiddlerInfo.multids +5 -0
  1151. package/languages/zh-Hant/ControlPanel.multids +3 -2
  1152. package/languages/zh-Hant/Draft.multids +4 -0
  1153. package/languages/zh-Hant/Import.multids +2 -0
  1154. package/languages/zh-Hant/Misc.multids +1 -0
  1155. package/languages/zh-Hant/TiddlerInfo.multids +5 -0
  1156. package/licenses/cla-individual.md +22 -0
  1157. package/package.json +9 -6
  1158. package/playwright.config.js +5 -0
  1159. package/plugins/tiddlywiki/aws/modules/command.js +2 -6
  1160. package/plugins/tiddlywiki/aws/modules/init.js +1 -1
  1161. package/plugins/tiddlywiki/bibtex/deserializer.js +1 -1
  1162. package/plugins/tiddlywiki/browser-sniff/browser.js +1 -2
  1163. package/plugins/tiddlywiki/browser-storage/settings.tid +1 -1
  1164. package/plugins/tiddlywiki/browser-storage/startup.js +4 -10
  1165. package/plugins/tiddlywiki/browser-storage/util.js +72 -74
  1166. package/plugins/tiddlywiki/codemirror/engine.js +48 -46
  1167. package/plugins/tiddlywiki/confetti/confetti-widget.js +0 -2
  1168. package/plugins/tiddlywiki/dom-to-image/docs.tid +66 -0
  1169. package/plugins/tiddlywiki/dom-to-image/files/LICENSE +29 -0
  1170. package/plugins/tiddlywiki/dom-to-image/files/dom-to-image-more.min.js +3 -0
  1171. package/plugins/tiddlywiki/dom-to-image/files/tiddlywiki.files +21 -0
  1172. package/plugins/tiddlywiki/dom-to-image/plugin.info +7 -0
  1173. package/plugins/tiddlywiki/dom-to-image/readme.tid +3 -0
  1174. package/plugins/tiddlywiki/dom-to-image/startup.js +92 -0
  1175. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -12
  1176. package/plugins/tiddlywiki/dynannotate/modules/element-spotlight.js +1 -1
  1177. package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +4 -4
  1178. package/plugins/tiddlywiki/dynannotate/modules/textmap.js +5 -5
  1179. package/plugins/tiddlywiki/dynaview/dynaview.js +1 -1
  1180. package/plugins/tiddlywiki/evernote/modules/enex-deserializer.js +5 -5
  1181. package/plugins/tiddlywiki/external-attachments/startup.js +2 -2
  1182. package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +1 -3
  1183. package/plugins/tiddlywiki/filesystem/plugin.info +1 -0
  1184. package/plugins/tiddlywiki/freelinks/aho-corasick.js +190 -0
  1185. package/plugins/tiddlywiki/freelinks/config-Freelinks-WordBoundary.tid +2 -0
  1186. package/plugins/tiddlywiki/freelinks/readme.tid +26 -5
  1187. package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
  1188. package/plugins/tiddlywiki/freelinks/text.js +229 -113
  1189. package/plugins/tiddlywiki/geospatial/geotools.js +2 -2
  1190. package/plugins/tiddlywiki/geospatial/operators/lookup.js +1 -1
  1191. package/plugins/tiddlywiki/geospatial/operators/olc.js +3 -4
  1192. package/plugins/tiddlywiki/geospatial/operators/transformation.js +2 -3
  1193. package/plugins/tiddlywiki/geospatial/widgets/geomap.js +9 -9
  1194. package/plugins/tiddlywiki/googleanalytics/googleanalytics.js +1 -1
  1195. package/plugins/tiddlywiki/highlight/files/highlight.min.js +1132 -1289
  1196. package/plugins/tiddlywiki/highlight/highlightblock.js +4 -4
  1197. package/plugins/tiddlywiki/highlight/readme.tid +1 -1
  1198. package/plugins/tiddlywiki/innerwiki/innerwiki.js +2 -3
  1199. package/plugins/tiddlywiki/innerwiki/screenshot.js +1 -3
  1200. package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +12 -3
  1201. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +3 -5
  1202. package/plugins/tiddlywiki/jasmine/startup.js +1 -1
  1203. package/plugins/tiddlywiki/jszip/startup.js +3 -3
  1204. package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -1
  1205. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1206. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1207. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1208. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1209. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1210. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1211. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1212. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1213. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1214. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1215. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1216. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1217. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1218. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1219. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1220. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1221. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1222. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1223. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1224. package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
  1225. package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
  1226. package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
  1227. package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
  1228. package/plugins/tiddlywiki/katex/latex-parser.js +1 -1
  1229. package/plugins/tiddlywiki/katex/readme.tid +1 -1
  1230. package/plugins/tiddlywiki/katex/styles.tid +40 -20
  1231. package/plugins/tiddlywiki/katex/wrapper.js +1 -1
  1232. package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +1 -1
  1233. package/plugins/tiddlywiki/markdown/files/markdown-it-deflist.min.js +2 -7
  1234. package/plugins/tiddlywiki/markdown/files/markdown-it-footnote.min.js +2 -1
  1235. package/plugins/tiddlywiki/markdown/files/markdown-it-ins.min.js +2 -2
  1236. package/plugins/tiddlywiki/markdown/files/markdown-it-mark.min.js +2 -2
  1237. package/plugins/tiddlywiki/markdown/files/markdown-it-sub.min.js +2 -2
  1238. package/plugins/tiddlywiki/markdown/files/markdown-it-sup.min.js +2 -2
  1239. package/plugins/tiddlywiki/markdown/files/markdown-it.min.js +2 -3
  1240. package/plugins/tiddlywiki/markdown/markdown-it-katex.js +131 -131
  1241. package/plugins/tiddlywiki/markdown/markdown-it-tiddlywiki.js +102 -104
  1242. package/plugins/tiddlywiki/markdown/styles.tid +3 -0
  1243. package/plugins/tiddlywiki/markdown/wrapper.js +32 -23
  1244. package/plugins/tiddlywiki/markdown-legacy/wrapper.js +143 -144
  1245. package/plugins/tiddlywiki/qrcode/makeqr.js +1 -1
  1246. package/plugins/tiddlywiki/railroad/components.js +21 -21
  1247. package/plugins/tiddlywiki/railroad/parser.js +4 -4
  1248. package/plugins/tiddlywiki/railroad/typed-parser.js +5 -5
  1249. package/plugins/tiddlywiki/railroad/wrapper.js +1 -1
  1250. package/plugins/tiddlywiki/stacked-view/stacked.js +0 -1
  1251. package/plugins/tiddlywiki/text-slicer/modules/commands/slice.js +15 -16
  1252. package/plugins/tiddlywiki/text-slicer/modules/slicer.js +69 -70
  1253. package/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup.js +1 -1
  1254. package/plugins/tiddlywiki/tiddlyweb/config-tiddlers-filter.tid +1 -1
  1255. package/plugins/tiddlywiki/tiddlyweb/save-offline.tid +1 -1
  1256. package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +5 -7
  1257. package/plugins/tiddlywiki/translators/output-file-templates/Draft.multids.tid +3 -0
  1258. package/plugins/tiddlywiki/translators/output-file-templates/Misc.multids.tid +1 -0
  1259. package/plugins/tiddlywiki/translators/ui/group/Draft.tid +28 -0
  1260. package/plugins/tiddlywiki/translators/ui/group/Miscellaneous.tid +1 -0
  1261. package/plugins/tiddlywiki/tw2parser/classictransclude.js +3 -4
  1262. package/plugins/tiddlywiki/tw2parser/entry.js +1 -1
  1263. package/plugins/tiddlywiki/tw2parser/parameteradapter.js +6 -5
  1264. package/plugins/tiddlywiki/tw2parser/wikitextrules.js +594 -598
  1265. package/plugins/tiddlywiki/tw5.com-docs/readme.tid +1 -1
  1266. package/plugins/tiddlywiki/twitter/twitter-widget.js +3 -3
  1267. package/plugins/tiddlywiki/twitter-archivist/archivist.js +41 -10
  1268. package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +5 -7
  1269. package/plugins/tiddlywiki/twitter-archivist/startup.js +4 -4
  1270. package/plugins/tiddlywiki/upgrade/save-tiddler-filter.tid +1 -1
  1271. package/plugins/tiddlywiki/wikitext-serialize/plugin.info +7 -0
  1272. package/plugins/tiddlywiki/wikitext-serialize/rules/codeblock.js +13 -0
  1273. package/plugins/tiddlywiki/wikitext-serialize/rules/codeinline.js +13 -0
  1274. package/plugins/tiddlywiki/wikitext-serialize/rules/commentblock.js +13 -0
  1275. package/plugins/tiddlywiki/wikitext-serialize/rules/commentinline.js +13 -0
  1276. package/plugins/tiddlywiki/wikitext-serialize/rules/conditional.js +42 -0
  1277. package/plugins/tiddlywiki/wikitext-serialize/rules/dash.js +13 -0
  1278. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/bold.js +13 -0
  1279. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/italic.js +13 -0
  1280. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/strikethrough.js +13 -0
  1281. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/subscript.js +13 -0
  1282. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/superscript.js +13 -0
  1283. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/underscore.js +13 -0
  1284. package/plugins/tiddlywiki/wikitext-serialize/rules/entity.js +13 -0
  1285. package/plugins/tiddlywiki/wikitext-serialize/rules/extlink.js +17 -0
  1286. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeblock.js +24 -0
  1287. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeinline.js +15 -0
  1288. package/plugins/tiddlywiki/wikitext-serialize/rules/fnprocdef.js +24 -0
  1289. package/plugins/tiddlywiki/wikitext-serialize/rules/hardlinebreaks.js +20 -0
  1290. package/plugins/tiddlywiki/wikitext-serialize/rules/heading.js +17 -0
  1291. package/plugins/tiddlywiki/wikitext-serialize/rules/horizrule.js +13 -0
  1292. package/plugins/tiddlywiki/wikitext-serialize/rules/html.js +34 -0
  1293. package/plugins/tiddlywiki/wikitext-serialize/rules/image.js +18 -0
  1294. package/plugins/tiddlywiki/wikitext-serialize/rules/import.js +15 -0
  1295. package/plugins/tiddlywiki/wikitext-serialize/rules/list.js +76 -0
  1296. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallblock.js +27 -0
  1297. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallinline.js +15 -0
  1298. package/plugins/tiddlywiki/wikitext-serialize/rules/macrodef.js +21 -0
  1299. package/plugins/tiddlywiki/wikitext-serialize/rules/parameters.js +16 -0
  1300. package/plugins/tiddlywiki/wikitext-serialize/rules/parsermode.js +14 -0
  1301. package/plugins/tiddlywiki/wikitext-serialize/rules/prettyextlink.js +15 -0
  1302. package/plugins/tiddlywiki/wikitext-serialize/rules/prettylink.js +15 -0
  1303. package/plugins/tiddlywiki/wikitext-serialize/rules/quoteblock.js +24 -0
  1304. package/plugins/tiddlywiki/wikitext-serialize/rules/rules.js +26 -0
  1305. package/plugins/tiddlywiki/wikitext-serialize/rules/styleblock.js +57 -0
  1306. package/plugins/tiddlywiki/wikitext-serialize/rules/styleinline.js +28 -0
  1307. package/plugins/tiddlywiki/wikitext-serialize/rules/syslink.js +18 -0
  1308. package/plugins/tiddlywiki/wikitext-serialize/rules/table.js +39 -0
  1309. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeblock.js +57 -0
  1310. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeinline.js +15 -0
  1311. package/plugins/tiddlywiki/wikitext-serialize/rules/typedblock.js +16 -0
  1312. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilink.js +17 -0
  1313. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilinkprefix.js +15 -0
  1314. package/plugins/tiddlywiki/wikitext-serialize/utils/parsetree.js +132 -0
  1315. package/plugins/tiddlywiki/xlsx-utils/deserializer.js +1 -2
  1316. package/plugins/tiddlywiki/xlsx-utils/importer.js +5 -5
  1317. package/plugins/tiddlywiki/xlsx-utils/xlsx-import-command.js +1 -2
  1318. package/readme.md +2 -5
  1319. package/themes/tiddlywiki/snowwhite/base.tid +34 -20
  1320. package/themes/tiddlywiki/vanilla/base.tid +135 -49
  1321. package/themes/tiddlywiki/vanilla/options.multids +1 -1
  1322. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -67
  1323. package/.github/workflows/pr-path-validation.yml +0 -18
  1324. package/core/modules/commander.js +0 -172
  1325. package/core/modules/commands/commands.js +0 -36
  1326. package/core/modules/commands/deletetiddlers.js +0 -37
  1327. package/core/modules/commands/fetch.js +0 -170
  1328. package/core/modules/commands/import.js +0 -43
  1329. package/core/modules/commands/init.js +0 -54
  1330. package/core/modules/commands/listen.js +0 -43
  1331. package/core/modules/commands/load.js +0 -46
  1332. package/core/modules/commands/output.js +0 -33
  1333. package/core/modules/commands/render.js +0 -65
  1334. package/core/modules/commands/rendertiddlers.js +0 -64
  1335. package/core/modules/commands/save.js +0 -63
  1336. package/core/modules/commands/savetiddlers.js +0 -51
  1337. package/core/modules/commands/savewikifolder.js +0 -220
  1338. package/core/modules/commands/server.js +0 -50
  1339. package/core/modules/commands/setfield.js +0 -53
  1340. package/core/modules/server/authenticators/basic.js +0 -89
  1341. package/core/modules/server/routes/delete-tiddler.js +0 -22
  1342. package/core/modules/server/routes/get-favicon.js +0 -18
  1343. package/core/modules/server/routes/get-file.js +0 -42
  1344. package/core/modules/server/routes/get-index.js +0 -21
  1345. package/core/modules/server/routes/get-login-basic.js +0 -30
  1346. package/core/modules/server/routes/get-status.js +0 -27
  1347. package/core/modules/server/routes/get-tiddler-html.js +0 -38
  1348. package/core/modules/server/routes/get-tiddler.js +0 -40
  1349. package/core/modules/server/routes/get-tiddlers-json.js +0 -44
  1350. package/core/modules/server/routes/put-tiddler.js +0 -46
  1351. package/core/modules/server/server.js +0 -373
  1352. package/core/modules/utils/base64-utf8/base64-utf8.module.js +0 -142
  1353. package/core/modules/utils/base64-utf8/base64-utf8.module.min.js +0 -9
  1354. package/core/modules/utils/base64-utf8/tiddlywiki.files +0 -14
  1355. package/core/modules/utils/filesystem.js +0 -542
  1356. package/core/modules/utils/repository.js +0 -46
  1357. package/editions/d3demo/tiddlers/CloudData.tid +0 -44
  1358. package/editions/d3demo/tiddlers/DefaultTiddlers.tid +0 -3
  1359. package/editions/d3demo/tiddlers/GraphData.tid +0 -10
  1360. package/editions/d3demo/tiddlers/HelloThere.tid +0 -17
  1361. package/editions/d3demo/tiddlers/SiteSubtitle.tid +0 -3
  1362. package/editions/d3demo/tiddlers/SiteTitle.tid +0 -3
  1363. package/editions/d3demo/tiddlers/grouped.tid +0 -3
  1364. package/editions/d3demo/tiddlers/spiral.tid +0 -3
  1365. package/editions/d3demo/tiddlywiki.info +0 -16
  1366. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -17
  1367. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -18
  1368. package/editions/ja-JP/tiddlers/hellothere/Welcome.tid +0 -8
  1369. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -10
  1370. package/editions/tahoelafs/tiddlers/DefaultTiddlers.tid +0 -3
  1371. package/editions/tahoelafs/tiddlers/HelloThere.tid +0 -6
  1372. package/editions/tahoelafs/tiddlers/SiteSubtitle.tid +0 -3
  1373. package/editions/tahoelafs/tiddlers/SiteTitle.tid +0 -3
  1374. package/editions/tahoelafs/tiddlywiki.info +0 -14
  1375. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project.htm +0 -23430
  1376. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon +0 -0
  1377. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(1) +0 -0
  1378. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(10) +0 -0
  1379. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(11) +0 -0
  1380. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(12) +0 -0
  1381. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(13) +0 -0
  1382. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(14) +0 -0
  1383. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(15) +0 -0
  1384. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(16) +0 -0
  1385. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(17) +0 -0
  1386. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(18) +0 -0
  1387. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(19) +0 -0
  1388. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(2) +0 -0
  1389. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(20) +0 -0
  1390. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(21) +0 -0
  1391. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(22) +0 -0
  1392. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(23) +0 -0
  1393. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(24) +0 -0
  1394. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(3) +0 -0
  1395. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(4) +0 -0
  1396. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(5) +0 -0
  1397. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(6) +0 -0
  1398. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(7) +0 -0
  1399. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(8) +0 -0
  1400. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(9) +0 -0
  1401. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/app.css +0 -191
  1402. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.html +0 -95
  1403. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.js +0 -360
  1404. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs +0 -373
  1405. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.identities +0 -42
  1406. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.space +0 -108
  1407. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.users +0 -57
  1408. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/help.png +0 -0
  1409. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/jquery.js +0 -11
  1410. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/normalize.css +0 -406
  1411. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/publicIcon +0 -0
  1412. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/search.png +0 -0
  1413. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/status.js +0 -2
  1414. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/ts.js +0 -766
  1415. package/editions/tiddlywiki-surveys/great-interview-project-2010/readme.md +0 -3
  1416. package/editions/tiddlywiki-surveys/tiddlers/$__StoryList.tid +0 -2
  1417. package/editions/tw5.com/tiddlers/$__StoryList.tid +0 -5
  1418. package/editions/tw5.com/tiddlers/community/Community Survey 2025 Sidebar Segment Styles.tid +0 -9
  1419. package/editions/tw5.com/tiddlers/community/Community Survey 2025 Sidebar Segment.tid +0 -11
  1420. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter Team.tid +0 -60
  1421. package/editions/tw5.com/tiddlers/community/resources/_TWeb.at_ by Mario Pietsch.tid +0 -16
  1422. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -16
  1423. package/editions/tw5.com/tiddlers/definitions/TiddlyIE.tid +0 -9
  1424. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +0 -10
  1425. package/editions/tw5.com/tiddlers/hellothere/Welcome.tid +0 -7
  1426. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -9
  1427. package/editions/tw5.com/tiddlers/howtos/Windows HTA Hack.tid +0 -17
  1428. package/editions/tw5.com/tiddlers/images/Community Survey 2025.png +0 -0
  1429. package/editions/tw5.com/tiddlers/images/Community Survey 2025.png.meta +0 -6
  1430. package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
  1431. package/editions/tw5.com/tiddlers/images/Funding.png.meta +0 -4
  1432. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png +0 -0
  1433. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png.meta +0 -3
  1434. package/editions/tw5.com/tiddlers/images/MWS Banner.png +0 -0
  1435. package/editions/tw5.com/tiddlers/images/MWS Banner.png.meta +0 -4
  1436. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
  1437. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +0 -4
  1438. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  1439. package/editions/tw5.com/tiddlers/images/New Release Banner.png.meta +0 -4
  1440. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png +0 -0
  1441. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png.meta +0 -5
  1442. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png +0 -0
  1443. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png.meta +0 -4
  1444. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png +0 -0
  1445. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png.meta +0 -4
  1446. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png +0 -0
  1447. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png.meta +0 -6
  1448. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png +0 -0
  1449. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png.meta +0 -6
  1450. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png +0 -0
  1451. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png.meta +0 -4
  1452. package/editions/tw5.com/tiddlers/macros/syntax/MacroParameterValue.tid +0 -11
  1453. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +0 -298
  1454. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +0 -302
  1455. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +0 -145
  1456. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.6.tid +0 -149
  1457. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +0 -184
  1458. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.7.tid +0 -146
  1459. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.8.tid +0 -43
  1460. package/editions/tw5.com/tiddlers/saving/Saving with TiddlyIE.tid +0 -25
  1461. package/editions/tw5.com/tiddlers/variables/Behaviour of invoked variables depends on how the variable was declared.tid +0 -52
  1462. package/eslint.config.js +0 -333
  1463. package/languages/ja-JP/Types/application%2Fjavascript.tid +0 -4
  1464. package/languages/ja-JP/Types/application%2Fjson.tid +0 -4
  1465. package/languages/ja-JP/Types/application%2Fx-tiddler-dictionary.tid +0 -4
  1466. package/languages/ja-JP/Types/image%2Fgif.tid +0 -4
  1467. package/languages/ja-JP/Types/image%2Fjpeg.tid +0 -4
  1468. package/languages/ja-JP/Types/image%2Fpng.tid +0 -4
  1469. package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +0 -4
  1470. package/languages/ja-JP/Types/text%2Fcss.tid +0 -4
  1471. package/languages/ja-JP/Types/text%2Fhtml.tid +0 -4
  1472. package/languages/ja-JP/Types/text%2Fplain.tid +0 -4
  1473. package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +0 -4
  1474. package/playwright-report/index.html +0 -77
  1475. package/plugins/tiddlywiki/blog/docs.tid +0 -6
  1476. package/plugins/tiddlywiki/blog/plugin.info +0 -7
  1477. package/plugins/tiddlywiki/blog/readme.tid +0 -5
  1478. package/plugins/tiddlywiki/blog/templates/html-page/page.tid +0 -31
  1479. package/plugins/tiddlywiki/blog/templates/html-page/post.tid +0 -32
  1480. package/plugins/tiddlywiki/blog/templates/menu.tid +0 -15
  1481. package/plugins/tiddlywiki/blog/templates/tiddler.tid +0 -35
  1482. package/plugins/tiddlywiki/cecily/cecily.js +0 -140
  1483. package/plugins/tiddlywiki/cecily/plugin.info +0 -7
  1484. package/plugins/tiddlywiki/cecily/readme.tid +0 -9
  1485. package/plugins/tiddlywiki/cecily/storyview-cecily.tid +0 -8
  1486. package/plugins/tiddlywiki/d3/barwidget.js +0 -199
  1487. package/plugins/tiddlywiki/d3/base.tid +0 -18
  1488. package/plugins/tiddlywiki/d3/cloudwidget.js +0 -128
  1489. package/plugins/tiddlywiki/d3/files/LICENSE +0 -26
  1490. package/plugins/tiddlywiki/d3/files/cloud/LICENSE +0 -26
  1491. package/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud.js +0 -401
  1492. package/plugins/tiddlywiki/d3/files/d3.min.js +0 -5
  1493. package/plugins/tiddlywiki/d3/files/tiddlywiki.files +0 -22
  1494. package/plugins/tiddlywiki/d3/plugin.info +0 -7
  1495. package/plugins/tiddlywiki/d3/readme.tid +0 -7
  1496. package/plugins/tiddlywiki/hammerjs/files/LICENSE.markdown +0 -21
  1497. package/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8.js +0 -6
  1498. package/plugins/tiddlywiki/hammerjs/files/tiddlywiki.files +0 -20
  1499. package/plugins/tiddlywiki/hammerjs/plugin.info +0 -8
  1500. package/plugins/tiddlywiki/hammerjs/readme.tid +0 -3
  1501. package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +0 -9
  1502. package/plugins/tiddlywiki/highlight-legacy/files/default.css +0 -99
  1503. package/plugins/tiddlywiki/highlight-legacy/files/highlight.pack.js +0 -2
  1504. package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +0 -22
  1505. package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +0 -38
  1506. package/plugins/tiddlywiki/highlight-legacy/license.tid +0 -27
  1507. package/plugins/tiddlywiki/highlight-legacy/plugin.info +0 -8
  1508. package/plugins/tiddlywiki/highlight-legacy/readme.tid +0 -65
  1509. package/plugins/tiddlywiki/highlight-legacy/styles.tid +0 -82
  1510. package/plugins/tiddlywiki/highlight-legacy/usage.tid +0 -28
  1511. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
  1512. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1513. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1514. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1515. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1516. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
  1517. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1518. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
  1519. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
  1520. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1521. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
  1522. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1523. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1524. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1525. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
  1526. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
  1527. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
  1528. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
  1529. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
  1530. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1531. package/plugins/tiddlywiki/mobiledragdrop/files/LICENSE +0 -7
  1532. package/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop.js +0 -477
  1533. package/plugins/tiddlywiki/mobiledragdrop/files/tiddlywiki.files +0 -18
  1534. package/plugins/tiddlywiki/mobiledragdrop/plugin.info +0 -8
  1535. package/plugins/tiddlywiki/mobiledragdrop/rawmarkup.tid +0 -7
  1536. package/plugins/tiddlywiki/mobiledragdrop/readme.tid +0 -5
  1537. package/plugins/tiddlywiki/mobiledragdrop/startup.js +0 -20
  1538. package/plugins/tiddlywiki/nodewebkitsaver/nodewebkit.js +0 -59
  1539. package/plugins/tiddlywiki/nodewebkitsaver/plugin.info +0 -7
  1540. package/plugins/tiddlywiki/nodewebkitsaver/readme.tid +0 -5
  1541. package/plugins/tiddlywiki/tahoelafs/plugin.info +0 -7
  1542. package/plugins/tiddlywiki/tahoelafs/readme.tid +0 -7
  1543. package/plugins/tiddlywiki/tahoelafs/saver.js +0 -52
  1544. package/test-results/.last-run.json +0 -4
  1545. /package/{core/modules → core-server}/commands/build.js +0 -0
  1546. /package/{core/modules → core-server}/commands/clearpassword.js +0 -0
  1547. /package/{core/modules → core-server}/commands/editions.js +0 -0
  1548. /package/{core/modules → core-server}/commands/help.js +0 -0
  1549. /package/{core/modules → core-server}/commands/makelibrary.js +0 -0
  1550. /package/{core/modules → core-server}/commands/password.js +0 -0
  1551. /package/{core/modules → core-server}/commands/rendertiddler.js +0 -0
  1552. /package/{core/modules → core-server}/commands/savelibrarytiddlers.js +0 -0
  1553. /package/{core/modules → core-server}/commands/savetiddler.js +0 -0
  1554. /package/{core/modules → core-server}/commands/unpackplugin.js +0 -0
  1555. /package/{core/modules → core-server}/commands/verbose.js +0 -0
  1556. /package/{core/modules → core-server}/commands/version.js +0 -0
  1557. /package/{core/modules → core-server}/server/authenticators/header.js +0 -0
  1558. /package/{core/modules → core-server}/startup/commands.js +0 -0
  1559. /package/{core/modules → core-server}/utils/edition-info.js +0 -0
  1560. /package/editions/ja-JP/tiddlers/hiddensettings/{Hidden Setting_ Default Tiddler Icon.tid → Hidden Setting Default Tiddler Icon.tid} +0 -0
  1561. /package/editions/ja-JP/tiddlers/howtos/{Custom Styles FAQ.tid → Custom_Styles_FAQ.tid} +0 -0
  1562. /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
  1563. /package/editions/ja-JP/tiddlers/howtos/{How to widen tiddlers (aka storyriver).tid → How to widen tiddlers (aka story river).tid} +0 -0
  1564. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.0.tid → pre-5.4.0/Release 5.1.0.tid} +0 -0
  1565. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.1.tid → pre-5.4.0/Release 5.1.1.tid} +0 -0
  1566. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.10.tid → pre-5.4.0/Release 5.1.10.tid} +0 -0
  1567. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.11.tid → pre-5.4.0/Release 5.1.11.tid} +0 -0
  1568. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.12.tid → pre-5.4.0/Release 5.1.12.tid} +0 -0
  1569. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.13.tid → pre-5.4.0/Release 5.1.13.tid} +0 -0
  1570. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.14.tid → pre-5.4.0/Release 5.1.14.tid} +0 -0
  1571. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.15.tid → pre-5.4.0/Release 5.1.15.tid} +0 -0
  1572. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.16.tid → pre-5.4.0/Release 5.1.16.tid} +0 -0
  1573. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.17.tid → pre-5.4.0/Release 5.1.17.tid} +0 -0
  1574. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.18.tid → pre-5.4.0/Release 5.1.18.tid} +0 -0
  1575. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.19.tid → pre-5.4.0/Release 5.1.19.tid} +0 -0
  1576. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.2.tid → pre-5.4.0/Release 5.1.2.tid} +0 -0
  1577. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.20.tid → pre-5.4.0/Release 5.1.20.tid} +0 -0
  1578. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.21.tid → pre-5.4.0/Release 5.1.21.tid} +0 -0
  1579. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.22.tid → pre-5.4.0/Release 5.1.22.tid} +0 -0
  1580. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.3.tid → pre-5.4.0/Release 5.1.3.tid} +0 -0
  1581. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.4.tid → pre-5.4.0/Release 5.1.4.tid} +0 -0
  1582. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.5.tid → pre-5.4.0/Release 5.1.5.tid} +0 -0
  1583. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.6.tid → pre-5.4.0/Release 5.1.6.tid} +0 -0
  1584. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.7.tid → pre-5.4.0/Release 5.1.7.tid} +0 -0
  1585. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.8.tid → pre-5.4.0/Release 5.1.8.tid} +0 -0
  1586. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.9.tid → pre-5.4.0/Release 5.1.9.tid} +0 -0
  1587. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.1.tid → pre-5.4.0/Release 5.2.1.tid} +0 -0
  1588. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.2.tid → pre-5.4.0/Release 5.2.2.tid} +0 -0
  1589. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.3.tid → pre-5.4.0/Release 5.2.3.tid} +0 -0
  1590. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.5.tid → pre-5.4.0/Release 5.2.5.tid} +0 -0
  1591. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.7.tid → pre-5.4.0/Release 5.2.7.tid} +0 -0
  1592. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.0.tid → pre-5.4.0/Release 5.3.0.tid} +0 -0
  1593. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.1.tid → pre-5.4.0/Release 5.3.1.tid} +0 -0
  1594. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.3.tid → pre-5.4.0/Release 5.3.3.tid} +0 -0
  1595. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.4.tid → pre-5.4.0/Release 5.3.4.tid} +0 -0
  1596. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.5.tid → pre-5.4.0/Release 5.3.5.tid} +0 -0
  1597. /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,158 @@
1
+ title: $:/tiddlywiki/community/cards/Styles
2
+ tags: $:/tags/Stylesheet
3
+
4
+ .tc-community-card {
5
+ display: flex;
6
+ flex-direction: column;
7
+ flex-wrap: wrap;
8
+ justify-content: center;
9
+ border-radius: 8px;
10
+ width: 100%;
11
+ margin-bottom: 8px;
12
+ background: <<colour community-card-background>>;
13
+ color: <<colour community-card-foreground>>;
14
+ fill: <<colour community-card-foreground>>;
15
+ box-shadow: 0 1px 3px 0 <<colour community-card-shadow>>, 0 0 0 1px <<colour community-card-shadow>>;
16
+ transition: box-shadow 0.3s ease,transform .3s ease;
17
+ }
18
+
19
+ .tc-community-card:hover {
20
+ box-shadow: 0 1px 6px 0 <<colour community-card-dark-shadow>>, 0 0 0 1px <<colour community-card-shadow>>;
21
+ transform: translateY(-2px);
22
+ }
23
+
24
+ .tc-community-card .tc-community-card-header-link {
25
+ background-color: <<colour community-card-header-background>>;
26
+ color: <<colour community-card-header-foreground>>;
27
+ border-top-left-radius: 8px;
28
+ border-top-right-radius: 8px;
29
+ }
30
+
31
+ .tc-community-card.tc-community-card-team .tc-community-card-header-link {
32
+ background: <<colour community-card-team-header-background>>;
33
+ color: <<colour community-card-team-header-foreground>>;
34
+ fill: <<colour community-card-team-header-foreground>>;
35
+ }
36
+
37
+ .tc-community-card .tc-community-card-header-link:hover {
38
+ text-decoration: none;
39
+ background-color: <<colour community-card-header-foreground>>;
40
+ color: <<colour community-card-header-background>>;
41
+ }
42
+
43
+ .tc-community-card-header {
44
+ margin: 0;
45
+ padding: 0.5em;
46
+ display: flex;
47
+ flex-direction: row;
48
+ flex-wrap: nowrap;
49
+ justify-content: flex-start;
50
+ align-items: center;
51
+ line-height: 0;
52
+ }
53
+
54
+ .tc-community-card-header .tc-community-card-field-text-title {
55
+ font-size: 1.5em;
56
+ font-weight: bold;
57
+ }
58
+
59
+ .tc-community-card-header .tc-community-card-field-image {
60
+ display: table-row;
61
+ width: auto;
62
+ max-width: 100%;
63
+ margin-right: 12px;
64
+ }
65
+
66
+ .tc-community-card-info {
67
+ display: table;
68
+ width: auto;
69
+ max-width: 100%;
70
+ padding: 8px;
71
+ margin: 0;
72
+ background-color: <<colour community-card-info-background>>;
73
+ color: <<colour community-card-info-foreground>>;
74
+ }
75
+
76
+ .tc-community-card-body {
77
+ padding: 0 8px;
78
+ }
79
+
80
+ .tc-community-card .tc-community-card-field-text {
81
+ display: table-row;
82
+ }
83
+
84
+ .tc-community-card .tc-community-card-field-text-name,
85
+ .tc-community-card .tc-community-card-field-text-value {
86
+ display: table-cell;
87
+ padding: 2px 6px 2px 0;
88
+ vertical-align: top;
89
+ }
90
+
91
+ .tc-community-card .tc-community-card-field-text-name {
92
+ color: <<colour community-card-field-name-foreground>>;
93
+ white-space: nowrap;
94
+ text-align: right;
95
+ padding-right: 8px;
96
+ }
97
+
98
+ .tc-community-card .tc-community-card-field-text-value {
99
+ word-break: break-word;
100
+ font-weight: bold;
101
+ width: 100%;
102
+ }
103
+
104
+ a.tc-community-card-pill {
105
+ display: inline-flex;
106
+ align-items: center;
107
+ gap: 4px;
108
+ width: auto;
109
+ min-width:0;
110
+ max-width: none;
111
+ align-self: auto;
112
+ font-size: 0.9em;
113
+ line-height: 1;
114
+ vertical-align: middle;
115
+ padding: 4px;
116
+ border-radius: 4px;
117
+ background: <<colour community-card-header-background>>;
118
+ color: <<colour community-card-header-foreground>>;
119
+ fill: <<colour community-card-header-foreground>>;
120
+ box-shadow: 0 1px 3px 0 <<colour community-card-shadow>>, 0 0 0 1px <<colour community-card-shadow>>;
121
+ transition: box-shadow 0.3s ease,transform .3s ease;
122
+ }
123
+
124
+ a.tc-community-card-pill.tc-community-card-pill-vacancy {
125
+ background: <<colour community-card-vacancy-header-background>>;
126
+ color: <<colour community-card-vacancy-header-foreground>>;
127
+ fill: <<colour community-card-vacancy-header-foreground>>;
128
+ }
129
+
130
+ a.tc-community-card-pill:hover {
131
+ text-decoration: none;
132
+ box-shadow: 0 1px 6px 0 <<colour community-card-dark-shadow>>, 0 0 0 1px <<colour community-card-shadow>>;
133
+ transform: translateY(-2px);
134
+ background: <<colour community-card-header-foreground>>;
135
+ color: <<colour community-card-header-background>>;
136
+ fill: <<colour community-card-header-background>>;
137
+ }
138
+
139
+ a.tc-community-card-pill .tc-community-card-field-image img,
140
+ a.tc-community-card-pill .tc-community-card-field-image svg {
141
+ width: 16px;
142
+ height: 16px;
143
+ vertical-align: middle;
144
+ display: inline-block;
145
+ }
146
+
147
+ a.tc-community-card-pill .tc-community-card-field-text {
148
+ display: inline;
149
+ }
150
+
151
+ .tc-community-card-pill-stack {
152
+ display: inline-flex;
153
+ flex-direction: column;
154
+ align-items: stretch;
155
+ gap: 4px;
156
+ margin: 0;
157
+ padding: 0;
158
+ }
@@ -0,0 +1,6 @@
1
+ title: $:/tiddlywiki/community/cards/ViewTemplateBodyCascade
2
+ tags: $:/tags/ViewTemplateBodyFilter
3
+ list-before:
4
+
5
+ [tag[Community/Person]then[$:/tiddlywiki/community/cards/ViewTemplateBodyTemplatePerson]]
6
+ [tag[Community/Team]then[$:/tiddlywiki/community/cards/ViewTemplateBodyTemplateTeam]]
@@ -0,0 +1,3 @@
1
+ title: $:/tiddlywiki/community/cards/ViewTemplateBodyTemplatePerson
2
+
3
+ <$transclude $variable="community-card-person" title=<<currentTiddler>>/>
@@ -0,0 +1,3 @@
1
+ title: $:/tiddlywiki/community/cards/ViewTemplateBodyTemplateTeam
2
+
3
+ <$transclude $variable="community-card-team" title=<<currentTiddler>>/>
@@ -0,0 +1,7 @@
1
+ title: $:/tiddlywiki/community/icons/person
2
+ tags: $:/tags/Image
3
+
4
+ \parameters (size:"22pt")
5
+ <svg width=<<size>> height=<<size>> viewBox="0 0 64 64">
6
+ <path d="M43.127,29.612c-0.879,-0.378 -1.452,-1.25 -1.452,-2.207c-0.006,-0.678 0.27,-1.33 0.761,-1.797c0.147,-0.141 0.29,-0.28 0.397,-0.393c0.753,-0.791 1.416,-1.663 1.978,-2.6c1.392,-2.318 2.126,-4.974 2.126,-7.677c0,-8.196 -6.744,-14.938 -14.938,-14.938c-0.945,0 -1.886,0.088 -2.813,0.266c-5.891,1.031 -10.578,5.586 -11.781,11.446c-1.105,5.016 0.454,10.264 4.118,13.865c0.495,0.469 0.78,1.118 0.792,1.799l0,0.012c0.008,0.966 -0.567,1.848 -1.453,2.23c-5.949,2.466 -10.698,7.172 -13.217,13.099c-1.772,4.059 -2.66,8.45 -2.607,12.88l0,3.192c0,2.858 2.351,5.211 5.212,5.211l43.5,0c2.859,0 5.212,-2.353 5.212,-5.211l-0,-3.225c0.053,-4.427 -0.837,-8.816 -2.611,-12.873c-2.523,-5.922 -7.274,-10.621 -13.224,-13.079Z" style="fill-rule:nonzero;"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ title: $:/tiddlywiki/community/icons/project-team
2
+ tags: $:/tags/Image
3
+
4
+ \parameters (size:"22pt")
5
+ <svg width=<<size>> height=<<size>> viewBox="0 0 64 64">
6
+ <path d="M24.891,49.399l-3.521,0c-1.398,0 -2.547,-1.15 -2.547,-2.547l0,-1.56c-0.026,-2.165 0.408,-4.311 1.274,-6.295c1.231,-2.897 3.552,-5.197 6.46,-6.402c0.433,-0.187 0.714,-0.618 0.71,-1.09l0,-0.006c-0.006,-0.333 -0.145,-0.65 -0.387,-0.879c-1.791,-1.76 -2.553,-4.325 -2.013,-6.777c0.588,-2.864 2.879,-5.09 5.758,-5.594c0.453,-0.087 0.913,-0.13 1.375,-0.13c4.005,0 7.301,3.295 7.301,7.301c0,1.321 -0.359,2.619 -1.039,3.752c-0.275,0.458 -0.599,0.884 -0.967,1.271c-0.052,0.055 -0.122,0.123 -0.194,0.192c-0.24,0.228 -0.375,0.547 -0.372,0.878c0,0.468 0.28,0.894 0.71,1.079c2.908,1.201 5.23,3.498 6.463,6.392c0.815,1.865 1.248,3.872 1.276,5.904c-0.179,0.006 -0.351,0.007 -0.514,0.003c-0.556,-0.016 -1.375,-0.294 -2.288,-0.512c-1.295,-0.308 -2.719,-0.543 -4.01,-0.396l-0.013,0.001c-1.056,0.128 -2.116,0.325 -3.097,0.76c-0.385,0.171 -1.216,0.753 -1.446,0.916c-1.157,0.297 -2.564,0.475 -3.797,0.312c-0.713,-0.094 -1.402,-0.225 -1.703,-0.778c-0.207,-0.382 -0.181,-0.896 -0.031,-1.565c0.068,-0.3 0.11,-0.593 0.118,-0.842l-0.106,-0.887l-0.212,-0.491l-0.258,-0.36l-0.669,-0.514l-0.832,-0.231l-0.491,0.017l-0.459,0.12l-0.417,0.211l-0.415,0.342l-0.546,0.802l-0.033,0.067c-1.174,2.499 -0.945,4.643 0.013,6.317c0.251,0.437 0.56,0.845 0.919,1.219Zm22.984,-4.722c-0.052,-2.344 -0.566,-4.656 -1.514,-6.805c-1.232,-2.86 -3.339,-5.257 -6.018,-6.845c0.955,-0.816 2.033,-1.473 3.195,-1.949c0.434,-0.187 0.715,-0.618 0.71,-1.09l-0,-0.006c-0.005,-0.333 -0.144,-0.651 -0.386,-0.88c-1.791,-1.76 -2.553,-4.324 -2.013,-6.776c0.587,-2.864 2.878,-5.09 5.758,-5.594c0.453,-0.087 0.913,-0.131 1.375,-0.131c4.005,0 7.3,3.296 7.3,7.301c-0,1.322 -0.359,2.619 -1.038,3.753c-0.276,0.457 -0.6,0.883 -0.968,1.27c-0.052,0.055 -0.121,0.123 -0.194,0.192c-0.24,0.229 -0.375,0.547 -0.372,0.878c-0,0.468 0.28,0.894 0.71,1.079c2.908,1.201 5.229,3.498 6.462,6.392c0.756,1.728 1.184,3.578 1.264,5.458c-0.577,-0.341 -1.293,-0.373 -1.904,-0.07c-0.961,0.475 -1.861,1.117 -2.911,1.371c-0.49,-0.133 -0.983,-0.245 -1.485,-0.308c-0.253,-0.326 -0.536,-0.66 -0.84,-0.911l-0.813,-0.51l-0.752,-0.225c-0.327,-0.051 -0.662,-0.021 -0.974,0.089l-0.67,0.321l-0.569,0.448c-0.403,0.393 -0.733,0.911 -0.979,1.569c-0.202,0.54 -0.344,1.222 -0.492,2.014c-0.244,-0.027 -0.49,-0.047 -0.737,-0.058c-0.333,-0.02 -0.725,-0.006 -1.145,0.023Zm-24.215,-13.651c-2.683,1.591 -4.793,3.994 -6.024,6.861c-1.026,2.332 -1.542,4.857 -1.513,7.405l0,0.59l-11.735,0c-1.397,0 -2.547,-1.15 -2.547,-2.547l0,-1.561c-0.026,-2.165 0.409,-4.31 1.274,-6.295c1.231,-2.897 3.553,-5.197 6.46,-6.401c0.434,-0.187 0.715,-0.618 0.71,-1.09l0,-0.006c-0.005,-0.333 -0.144,-0.651 -0.386,-0.88c-1.791,-1.76 -2.553,-4.324 -2.013,-6.776c0.588,-2.864 2.879,-5.09 5.758,-5.594c0.453,-0.087 0.914,-0.131 1.375,-0.131c4.005,0 7.301,3.296 7.301,7.301c0,1.322 -0.359,2.619 -1.039,3.753c-0.275,0.457 -0.6,0.883 -0.967,1.27c-0.052,0.055 -0.122,0.123 -0.194,0.192c-0.24,0.228 -0.375,0.547 -0.372,0.878c0,0.468 0.28,0.894 0.71,1.079c1.164,0.476 2.246,1.135 3.202,1.952Zm29.027,33.111c-1.417,-0.04 -2.04,-0.037 -2.761,-1.223l-0.563,0.016c-0.654,-0.029 -0.381,-0.016 -0.818,-0.038c-0.73,-0.028 -0.613,-0.722 -0.742,-1.089c-0.205,-1.244 0.272,-2.494 0.257,-3.739c-0.005,-0.442 -0.63,-2.005 -0.854,-2.564c-0.7,0.131 -1.404,0.157 -2.114,0.192c-1.637,-0.004 -3.263,-0.205 -4.878,-0.459c-0.314,1.299 -1.249,3.118 -0.476,4.439c0.938,1.366 1.596,1.745 2.617,1.827c1.02,0.082 1.251,1.234 1.004,1.646c-0.219,0.284 -0.603,0.336 -0.929,0.405l-0.653,0.03c-0.513,-0.017 -0.973,-0.155 -1.43,-0.369c-0.765,-0.427 -1.554,-1.314 -2.141,-1.951c0.137,0.254 0.218,0.751 0.095,0.982c-0.347,0.491 -1.847,0.488 -2.534,0.183c-0.78,-0.347 -2.665,-2.781 -2.957,-4.604c0.776,-1.467 1.905,-2.744 2.477,-4.341c-1.246,-0.795 -1.913,-2.089 -1.827,-3.555l0.032,-0.17c-1.226,0.23 -0.59,0.144 -1.909,0.244c-4.2,-0.013 -7.893,-2.86 -5.813,-7.286c0.135,-0.262 0.263,-0.5 0.493,-0.386c0.184,0.091 0.157,0.457 0.065,0.863c-1.189,5.288 4.621,5.329 8.192,4.35c0.355,-0.097 1.06,-0.751 1.548,-0.968c0.798,-0.354 1.665,-0.498 2.524,-0.602c2.139,-0.244 4.709,0.883 6.015,0.92c1.306,0.037 3.164,-0.313 4.305,-0.239c0.827,0.037 1.64,0.187 2.438,0.4c0.517,-2.519 0.554,-4.374 1.779,-4.804c0.719,0.113 1.273,1.093 1.683,1.617l0.002,-0c0.835,-0.033 1.63,0.178 2.42,0.414c1.431,-0.203 2.631,-1.007 3.895,-1.632c-0.004,0.02 -0.025,0.027 -0.037,0.04c-1.244,1.005 -1.417,2.706 -1.271,4.278c0.054,0.816 -0.176,1.702 -0.461,2.538c-0.534,1.361 -1.564,2.796 -2.759,2.722c-0.452,-0.014 -0.715,-0.27 -1.051,-0.543c-0.065,0.553 -0.321,1.047 -0.568,1.536c-0.57,1.086 -2.06,1.564 -3.44,2.723c-1.379,1.159 0.442,5.297 0.883,6.052c0.442,0.754 1.674,1.03 1.196,1.71c-0.147,0.225 -0.37,0.305 -0.609,0.393l-0.325,0.042Zm-15.735,-3.096l0.206,0.06c0.258,-0.115 0.778,0.064 1.054,0.151c-0.508,-0.563 -1.273,-1.389 -1.824,-1.91c-0.181,-0.631 -0.103,-1.266 -0.065,-1.91l0.008,-0.053c-0.217,0.515 -0.493,1.016 -0.641,1.559c-0.173,0.732 0.771,1.522 1.137,1.975l0.125,0.128Z"/>
7
+ </svg>
@@ -0,0 +1,9 @@
1
+ title: $:/tiddlywiki/community/icons/team
2
+ tags: $:/tags/Image
3
+
4
+ \parameters (size:"22pt")
5
+ <svg width=<<size>> height=<<size>> viewBox="0 0 64 64">
6
+ <path d="M37.439,32.592c-0.43,-0.185 -0.71,-0.611 -0.71,-1.079c-0.003,-0.331 0.132,-0.65 0.372,-0.878c0.072,-0.069 0.142,-0.137 0.194,-0.192c0.368,-0.387 0.692,-0.813 0.967,-1.271c0.68,-1.133 1.039,-2.431 1.039,-3.752c-0,-4.006 -3.296,-7.301 -7.301,-7.301c-0.462,-0 -0.922,0.043 -1.375,0.13c-2.879,0.504 -5.17,2.73 -5.758,5.594c-0.54,2.452 0.222,5.017 2.013,6.777c0.242,0.229 0.381,0.546 0.387,0.879l-0,0.006c0.004,0.472 -0.277,0.903 -0.71,1.09c-2.908,1.205 -5.229,3.505 -6.46,6.402c-0.866,1.984 -1.3,4.13 -1.274,6.295l-0,1.56c-0,1.397 1.149,2.547 2.547,2.547c-0,-0 0,-0 0,-0l21.261,-0c1.397,-0 2.547,-1.15 2.547,-2.547l-0,-1.576c0.026,-2.164 -0.409,-4.309 -1.276,-6.292c-1.233,-2.894 -3.555,-5.191 -6.463,-6.392Z" style="fill-rule:nonzero;"/>
7
+ <path d="M60.882,35.466c-1.233,-2.894 -3.554,-5.191 -6.462,-6.392c-0.43,-0.185 -0.71,-0.611 -0.71,-1.079c-0.003,-0.331 0.132,-0.649 0.372,-0.878c0.073,-0.069 0.142,-0.137 0.194,-0.192c0.368,-0.387 0.692,-0.813 0.968,-1.27c0.679,-1.134 1.038,-2.431 1.038,-3.753c0,-4.005 -3.295,-7.301 -7.3,-7.301c-0.462,0 -0.922,0.044 -1.375,0.131c-2.88,0.504 -5.171,2.73 -5.758,5.594c-0.54,2.452 0.222,5.016 2.013,6.776c0.242,0.229 0.381,0.547 0.386,0.88l-0,0.006c0.005,0.472 -0.276,0.903 -0.71,1.09c-1.162,0.476 -2.24,1.133 -3.195,1.949c2.679,1.588 4.786,3.985 6.018,6.845c1.029,2.332 1.546,4.857 1.517,7.405l-0,0.605l11.734,-0c1.397,-0 2.547,-1.15 2.547,-2.547l-0,-1.576c0.026,-2.165 -0.409,-4.31 -1.277,-6.293Z" style="fill-rule:nonzero;"/>
8
+ <path d="M23.66,31.026c-0.956,-0.817 -2.038,-1.476 -3.202,-1.952c-0.43,-0.185 -0.71,-0.611 -0.71,-1.079c-0.003,-0.331 0.132,-0.65 0.372,-0.878c0.072,-0.069 0.142,-0.137 0.194,-0.192c0.367,-0.387 0.692,-0.813 0.967,-1.27c0.68,-1.134 1.039,-2.431 1.039,-3.753c-0,-4.005 -3.296,-7.301 -7.301,-7.301c-0.461,0 -0.922,0.044 -1.375,0.131c-2.879,0.504 -5.17,2.73 -5.758,5.594c-0.54,2.452 0.222,5.016 2.013,6.776c0.242,0.229 0.381,0.547 0.386,0.88l0,0.006c0.005,0.472 -0.276,0.903 -0.71,1.09c-2.907,1.204 -5.229,3.504 -6.46,6.401c-0.865,1.985 -1.3,4.13 -1.274,6.295c0,0 0,1.561 0,1.561c0,1.397 1.15,2.547 2.547,2.547c-0,-0 11.735,-0 11.735,-0l0,-0.59c-0.029,-2.548 0.487,-5.073 1.513,-7.405c1.231,-2.867 3.341,-5.27 6.024,-6.861Z" style="fill-rule:nonzero;"/>
9
+ </svg>
package/contributing.md CHANGED
@@ -1,3 +1,3 @@
1
- <h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>Here we focus on contributions via <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> Pull Requests but there are many other ways that anyone can help the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> project, such as <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/ReportingBugs.html">reporting bugs</a> or helping to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Improving%2520TiddlyWiki%2520Documentation.html">improve our documentation</a>.</p><h1 class="">Rules for Pull Requests</h1><p>PRs must meet these minimum requirements before they can be considered for merging:</p><ul><li>The material in the PR must be free of licensing restrictions. Which means that either:<ul><li>The author must hold the copyright in all of the material themselves</li><li>The material must be licensed under a license compatible with <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>'s BSD license</li></ul></li><li>The author must sign the Contributors License Agreement (see below)</li><li>Each PR should only make a single feature change</li><li>The title of the PR should be 50 characters or less</li><li>The title of the PR should be capitalised, and should not end with a period</li><li>The title of the PR should be written in the imperative mood. See below</li><li>Adequate explanation in the body of the PR for the motivation and implementation of the change. Focus on the <em>why</em> and <em>what</em>, rather than the <em>how</em></li><li>PRs must be self-contained. Although they can link to material elsewhere, everything needed to understand the intention of the PR should be included</li><li>Any visual changes introduced by the PR should be noted and illustrated with before/after screenshots</li><li>Documentation as appropriate for end-users or developers</li><li>Observe the coding style</li><li>Read the developers documentation</li><li>Please open a consultation issue prior to investing time in making a large PR</li></ul><h2 class="">Imperative Mood for PR Titles</h2><p>The "imperative mood" means written as if giving a command or instruction. See <a class="tc-tiddlylink-external" href="https://chris.beams.io/posts/git-commit/#imperative" rel="noopener noreferrer" target="_blank">this post</a> for more details, but the gist is that the title of the PR should make sense when used to complete the sentence "If applied, this commit will...". So for example, these are good PR titles:</p><ul><li>If applied, this commit will <em>update the contributing guidelines</em></li><li>If applied, this commit will <em>change css-escape-polyfill to a $tw.utils method</em></li><li>If applied, this commit will <em>make it easier to subclass the wikitext parser with a custom rule set</em></li></ul><p>These a poorly worded PR titles:</p><ul><li><strike>If applied, this commit will <em>edit text widgets should use default text for missing fields</em></strike></li><li><strike>If applied, this commit will <em>signing the CLA</em></strike></li><li><strike>If applied, this commit will <em>don't crash if options.event is missing</em></strike></li></ul><p>PR titles may also include a short prefix to indicate the subsystem to which they apply. For example:</p><ul><li><em>Menu plugin: Include menu text in aerial rotator</em></li></ul><h1 class="">Commenting on Pull Requests</h1><p>One of the principles of open source is that many pairs of eyes on the code can improve quality. So, we welcome comments and critiques of pending PRs. <a class="tc-tiddlylink-external" href="https://conventionalcomments.org" rel="noopener noreferrer" target="_blank">Conventional Comments</a> has some techniques to help make comments as constructive and actionable as possible. Notably, they recommend prefixing a comment with a label to clarify the intention:</p><table><tbody><tr class="evenRow"><td align="left">praise</td><td align="left">Praises highlight something positive. Try to leave at least one of these comments per review. Do not leave false praise (which can actually be damaging). Do look for something to sincerely praise</td></tr><tr class="oddRow"><td align="left">nitpick</td><td align="left">Nitpicks are small, trivial, but necessary changes. Distinguishing nitpick comments significantly helps direct the reader's attention to comments requiring more involvement</td></tr><tr class="evenRow"><td align="left">suggestion</td><td align="left">Suggestions are specific requests to improve the subject under review. It is assumed that we all want to do what's best, so these comments are never dismissed as “mere suggestions”, but are taken seriously</td></tr><tr class="oddRow"><td align="left">issue</td><td align="left">Issues represent user-facing problems. If possible, it's great to follow this kind of comment with a suggestion</td></tr><tr class="evenRow"><td align="left">question</td><td align="left">Questions are appropriate if you have a potential concern but are not quite sure if it's relevant or not. Asking the author for clarification or investigation can lead to a quick resolution</td></tr><tr class="oddRow"><td align="left">thought</td><td align="left">Thoughts represent an idea that popped up from reviewing. These comments are non-blocking by nature, but they are extremely valuable and can lead to more focused initiatives and mentoring opportunities</td></tr><tr class="evenRow"><td align="left">chore</td><td align="left">Chores are simple tasks that must be done before the subject can be “officially” accepted. Usually, these comments reference some common process. Try to leave a link to the process description so that the reader knows how to resolve the chore</td></tr></tbody></table><h1 class="">Contributor License Agreement</h1><p>Like other <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/OpenSource.html">OpenSource</a> projects, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/UnaMesa.html">UnaMesa</a> Association (the legal entity that owns <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on behalf of the community).</p><ul><li>For individuals use: <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a></li><li>For entities use: <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a></li></ul><h1 class="">How to sign the CLA</h1><p>Create a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> pull request to add your name to <code>cla-individual.md</code> or <code>cla-entity.md</code>, with the date in the format (YYYY/MM/DD).</p><p><strong>step by step</strong></p><ol><li>Navigate to <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a> or <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a> according to whether you are signing as an individual or representative of an organisation</li><li>Ensure that the "branch" dropdown at the top left is set to <code>tiddlywiki-com</code></li><li>Click the "edit" button at the top-right corner (clicking this button will fork the project so you can edit the file)</li><li>Add your name at the bottom<ul><li>eg: <code>Jeremy Ruston, @Jermolene, 2011/11/22</code></li></ul></li><li>Below the edit box for the CLA text you should see a box labelled <strong>Propose file change</strong></li><li>Enter a brief title to explain the change (eg, "Signing the CLA")</li><li>Click the green button labelled <strong>Propose file change</strong></li><li>On the following screen, click the green button labelled <strong>Create pull request</strong></li></ol><hr><p><em>The CLA documents used for this project were created using <a class="tc-tiddlylink-external" href="http://www.harmonyagreements.org" rel="noopener noreferrer" target="_blank">Harmony Project Templates</a>. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity".</em>
1
+ <h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>Here we focus on contributions via <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> Pull Requests but there are many other ways that anyone can help the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> project, such as <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/ReportingBugs.html">reporting bugs</a> or helping to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Improving%2520TiddlyWiki%2520Documentation.html">improve our documentation</a>.</p><h1 class="">Rules for Pull Requests</h1><p>PRs must meet these minimum requirements before they can be considered for merging:</p><ul><li>The material in the PR must be free of licensing restrictions. Which means that either:<ul><li>The author must hold the copyright in all of the material themselves</li><li>The material must be licensed under a license compatible with <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>'s BSD license</li></ul></li><li>The author must sign the Contributors License Agreement (see below)</li><li>Each PR should only make a single feature change</li><li>The title of the PR should be 50 characters or less</li><li>The title of the PR should be capitalised (first letter of first word only, and proper nouns if any), and should not end with a period</li><li>The title of the PR should be written in the imperative mood. See below</li><li>Adequate explanation in the body of the PR for the motivation and implementation of the change. Focus on the <em>why</em> and <em>what</em>, rather than the <em>how</em></li><li>PRs must be self-contained. Although they can link to material elsewhere, everything needed to understand the intention of the PR should be included</li><li>Any visual changes introduced by the PR should be noted and illustrated with before/after screenshots</li><li>Documentation as appropriate for end-users or developers</li><li>Observe the coding style</li><li>Read the developers documentation</li><li>Please open a consultation issue prior to investing time in making a large PR</li></ul><h2 class="">Imperative Mood for PR Titles</h2><p>The "imperative mood" means written as if giving a command or instruction. See <a class="tc-tiddlylink-external" href="https://chris.beams.io/posts/git-commit/#imperative" rel="noopener noreferrer" target="_blank">this post</a> for more details, but the gist is that the title of the PR should make sense when used to complete the sentence "If applied, this commit will...". So for example, these are good PR titles:</p><ul><li>If applied, this commit will <em>update the contributing guidelines</em></li><li>If applied, this commit will <em>change css-escape-polyfill to a $tw.utils method</em></li><li>If applied, this commit will <em>make it easier to subclass the wikitext parser with a custom rule set</em></li></ul><p>These a poorly worded PR titles:</p><ul><li><s>If applied, this commit will <em>edit text widgets should use default text for missing fields</em></s></li><li><s>If applied, this commit will <em>signing the CLA</em></s></li><li><s>If applied, this commit will <em>don't crash if options.event is missing</em></s></li></ul><p>PR titles may also include a short prefix to indicate the subsystem to which they apply. For example:</p><ul><li><em>Menu plugin: Include menu text in aerial rotator</em></li></ul><h1 class="">Commenting on Pull Requests</h1><p>One of the principles of open source is that many pairs of eyes on the code can improve quality. So, we welcome comments and critiques of pending PRs. <a class="tc-tiddlylink-external" href="https://conventionalcomments.org" rel="noopener noreferrer" target="_blank">Conventional Comments</a> has some techniques to help make comments as constructive and actionable as possible. Notably, they recommend prefixing a comment with a label to clarify the intention:</p><table><tbody><tr class="evenRow"><td align="left">praise</td><td align="left">Praises highlight something positive. Try to leave at least one of these comments per review. Do not leave false praise (which can actually be damaging). Do look for something to sincerely praise</td></tr><tr class="oddRow"><td align="left">nitpick</td><td align="left">Nitpicks are small, trivial, but necessary changes. Distinguishing nitpick comments significantly helps direct the reader's attention to comments requiring more involvement</td></tr><tr class="evenRow"><td align="left">suggestion</td><td align="left">Suggestions are specific requests to improve the subject under review. It is assumed that we all want to do what's best, so these comments are never dismissed as “mere suggestions”, but are taken seriously</td></tr><tr class="oddRow"><td align="left">issue</td><td align="left">Issues represent user-facing problems. If possible, it's great to follow this kind of comment with a suggestion</td></tr><tr class="evenRow"><td align="left">question</td><td align="left">Questions are appropriate if you have a potential concern but are not quite sure if it's relevant or not. Asking the author for clarification or investigation can lead to a quick resolution</td></tr><tr class="oddRow"><td align="left">thought</td><td align="left">Thoughts represent an idea that popped up from reviewing. These comments are non-blocking by nature, but they are extremely valuable and can lead to more focused initiatives and mentoring opportunities</td></tr><tr class="evenRow"><td align="left">chore</td><td align="left">Chores are simple tasks that must be done before the subject can be “officially” accepted. Usually, these comments reference some common process. Try to leave a link to the process description so that the reader knows how to resolve the chore</td></tr></tbody></table><h1 class="">Contributor License Agreement</h1><p>Like other <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/OpenSource.html">OpenSource</a> projects, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/UnaMesa.html">UnaMesa</a> Association (the legal entity that owns <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on behalf of the community).</p><ul><li>For individuals use: <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a></li><li>For entities use: <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a></li></ul><h1 class="">How to sign the CLA</h1><p>Create a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> pull request to add your name to <code>cla-individual.md</code> or <code>cla-entity.md</code>, with the date in the format (YYYY/MM/DD).</p><p><strong>step by step</strong></p><ol><li>Navigate to <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a> or <a class="tc-tiddlylink-external" href="https://github.com/TiddlyWiki/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a> according to whether you are signing as an individual or representative of an organisation</li><li>Ensure that the "branch" dropdown at the top left is set to <code>tiddlywiki-com</code></li><li>Click the "edit" button at the top-right corner (clicking this button will fork the project so you can edit the file)</li><li>Add your name and <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> handle at the bottom<ul><li>eg: <code>Jeremy Ruston, @Jermolene, 2011/11/22</code></li></ul></li><li>Below the edit box for the CLA text you should see a box labelled <strong>Propose file change</strong></li><li>Enter a brief title to explain the change (eg, "Signing the CLA")</li><li>Click the green button labelled <strong>Propose file change</strong></li><li>On the following screen, click the green button labelled <strong>Create pull request</strong></li></ol><hr><p><em>The CLA documents used for this project were created using <a class="tc-tiddlylink-external" href="http://www.harmonyagreements.org" rel="noopener noreferrer" target="_blank">Harmony Project Templates</a>. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity".</em>
2
2
  </p><p><em>This file was automatically generated by <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></em>
3
3
  </p>
@@ -5,3 +5,4 @@ TiddlyWiki incorporates code from these fine OpenSource projects:
5
5
  * [[The Stanford Javascript Crypto Library|http://bitwiseshiftleft.github.io/sjcl/]]
6
6
  * [[The Jasmine JavaScript Test Framework|https://jasmine.github.io/]]
7
7
  * [[modern-normalize by Sindre Sorhus|https://github.com/sindresorhus/modern-normalize]]
8
+ * [[diff-match-patch-es by antfu|https://github.com/antfu/diff-match-patch-es]]
@@ -6,6 +6,7 @@ Appearance/Caption: Appearance
6
6
  Appearance/Hint: Ways to customise the appearance of your TiddlyWiki.
7
7
  Basics/AnimDuration/Prompt: Animation duration
8
8
  Basics/AutoFocus/Prompt: Default focus field for new tiddlers
9
+ Basics/AutoFocusEdit/Prompt: Default focus field for existing tiddlers
9
10
  Basics/Caption: Basics
10
11
  Basics/DefaultTiddlers/BottomHint: Use &#91;&#91;double square brackets&#93;&#93; for titles with spaces. Or you can choose to {{retain story ordering||$:/snippets/retain-story-ordering-button}}
11
12
  Basics/DefaultTiddlers/Prompt: Default tiddlers
@@ -147,7 +148,7 @@ Settings/AutoSave/Disabled/Description: Do not save changes automatically
147
148
  Settings/AutoSave/Enabled/Description: Save changes automatically
148
149
  Settings/AutoSave/Hint: Attempt to automatically save changes during editing when using a supporting saver
149
150
  Settings/CamelCase/Caption: Camel Case Wiki Links
150
- Settings/CamelCase/Hint: You can globally disable automatic linking of ~CamelCase phrases. Requires reload to take effect
151
+ Settings/CamelCase/Hint: Requires reload to take effect
151
152
  Settings/CamelCase/Description: Enable automatic ~CamelCase linking
152
153
  Settings/Caption: Settings
153
154
  Settings/EditorToolbar/Caption: Editor Toolbar
@@ -0,0 +1,4 @@
1
+ title: $:/language/Draft/
2
+
3
+ Attribution: Draft of '<<draft-title>>' by {{$:/status/UserName}}
4
+ Title: Draft of '<<draft-title>>'
@@ -15,6 +15,8 @@ Listing/Preview/TextRaw: Text (Raw)
15
15
  Listing/Preview/Fields: Fields
16
16
  Listing/Preview/Diff: Diff
17
17
  Listing/Preview/DiffFields: Diff (Fields)
18
+ Listing/ImportOptions/Caption: Import options
19
+ Listing/ImportOptions/NoMatch: No import options apply to these files.
18
20
  Listing/Rename/Tooltip: Rename tiddler before importing
19
21
  Listing/Rename/Prompt: Rename to:
20
22
  Listing/Rename/ConfirmRename: Rename tiddler
@@ -1,5 +1,6 @@
1
1
  title: $:/language/
2
2
 
3
+ Alerts: Alerts
3
4
  AboveStory/ClassicPlugin/Warning: It looks like you are trying to load a plugin designed for ~TiddlyWiki Classic. Please note that [[these plugins do not work with TiddlyWiki version 5.x.x|https://tiddlywiki.com/#TiddlyWikiClassic]]. ~TiddlyWiki Classic plugins detected:
4
5
  BinaryWarning/Prompt: This tiddler contains binary data
5
6
  ClassicWarning/Hint: This tiddler is written in TiddlyWiki Classic wiki text format, which is not fully compatible with TiddlyWiki version 5. See https://tiddlywiki.com/static/Upgrading.html for more details.
@@ -9,6 +9,11 @@ Advanced/ShadowInfo/NotShadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text
9
9
  Advanced/ShadowInfo/Shadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is a shadow tiddler
10
10
  Advanced/ShadowInfo/Shadow/Source: It is defined in the plugin <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link>
11
11
  Advanced/ShadowInfo/OverriddenShadow/Hint: It is overridden by an ordinary tiddler
12
+ Advanced/CascadeInfo/Heading: Cascade Details
13
+ Advanced/CascadeInfo/Hint: These are the view template segments that are resolved for each of the system view template cascades
14
+ Advanced/CascadeInfo/Detail/View: View
15
+ Advanced/CascadeInfo/Detail/ActiveCascadeFilter: Active cascade filter
16
+ Advanced/CascadeInfo/Detail/Template: Template
12
17
  Fields/Caption: Fields
13
18
  List/Caption: List
14
19
  List/Empty: This tiddler does not have a list
@@ -0,0 +1,116 @@
1
+ /*\
2
+ title: $:/core/modules/background-actions.js
3
+ type: application/javascript
4
+ module-type: global
5
+
6
+ Class to dispatch actions when filters change
7
+
8
+ \*/
9
+
10
+ "use strict";
11
+
12
+ class BackgroundActionDispatcher {
13
+ constructor(filterTracker, wiki) {
14
+ this.filterTracker = filterTracker;
15
+ this.wiki = wiki;
16
+ this.nextTrackedFilterId = 1;
17
+ this.trackedFilters = new Map(); // Use Map for better key management
18
+ // Track the filter for the background actions
19
+ this.filterTracker.track({
20
+ filterString: "[all[tiddlers+shadows]tag[$:/tags/BackgroundAction]!is[draft]]",
21
+ fnEnter: (title) => this.trackFilter(title),
22
+ fnLeave: (title, enterValue) => this.untrackFilter(enterValue),
23
+ fnChange: (title, enterValue) => {
24
+ this.untrackFilter(enterValue);
25
+ return this.trackFilter(title);
26
+ },
27
+ fnProcess: (changes) => this.process(changes)
28
+ });
29
+ }
30
+
31
+ trackFilter(title) {
32
+ const tiddler = this.wiki.getTiddler(title);
33
+ const id = this.nextTrackedFilterId++;
34
+ const tracker = new BackgroundActionTracker({
35
+ wiki: this.wiki,
36
+ title,
37
+ trackFilter: tiddler.fields["track-filter"],
38
+ actions: tiddler.fields.text
39
+ });
40
+ this.trackedFilters.set(id, tracker);
41
+ return id;
42
+ }
43
+
44
+ untrackFilter(enterValue) {
45
+ const tracker = this.trackedFilters.get(enterValue);
46
+ if(tracker) {
47
+ tracker.destroy();
48
+ }
49
+ this.trackedFilters.delete(enterValue);
50
+ }
51
+
52
+ process(changes) {
53
+ for(const tracker of this.trackedFilters.values()) {
54
+ tracker.process(changes);
55
+ }
56
+ }
57
+ }
58
+
59
+ /*
60
+ Represents an individual tracked filter. Options include:
61
+ wiki: wiki to use
62
+ title: title of the tiddler being tracked
63
+ trackFilter: filter string to track changes
64
+ actions: actions to be executed when the filter changes
65
+ */
66
+ class BackgroundActionTracker {
67
+ constructor({wiki, title, trackFilter, actions}) {
68
+ this.wiki = wiki;
69
+ this.title = title;
70
+ this.trackFilter = trackFilter;
71
+ this.actions = actions;
72
+ this.filterTracker = new $tw.FilterTracker(this.wiki);
73
+ this.hasChanged = false;
74
+ this.trackerID = this.filterTracker.track({
75
+ filterString: this.trackFilter,
76
+ fnEnter: () => { this.hasChanged = true; },
77
+ fnLeave: () => { this.hasChanged = true; },
78
+ fnProcess: (changes) => {
79
+ if(this.hasChanged) {
80
+ this.hasChanged = false;
81
+ console.log("Processing background action", this.title);
82
+ const tiddler = this.wiki.getTiddler(this.title);
83
+ let doActions = true;
84
+ if(tiddler && tiddler.fields.platforms) {
85
+ doActions = false;
86
+ const platforms = $tw.utils.parseStringArray(tiddler.fields.platforms);
87
+ if(($tw.browser && platforms.includes("browser")) || ($tw.node && platforms.includes("node"))) {
88
+ doActions = true;
89
+ }
90
+ }
91
+ if(doActions) {
92
+ this.wiki.invokeActionString(
93
+ this.actions,
94
+ null,
95
+ {
96
+ currentTiddler: this.title
97
+ },{
98
+ parentWidget: $tw.rootWidget
99
+ }
100
+ );
101
+ }
102
+ }
103
+ }
104
+ });
105
+ }
106
+
107
+ process(changes) {
108
+ this.filterTracker.handleChangeEvent(changes);
109
+ }
110
+
111
+ destroy() {
112
+ this.filterTracker.untrack(this.trackerID);
113
+ }
114
+ }
115
+
116
+ exports.BackgroundActionDispatcher = BackgroundActionDispatcher;
@@ -34,7 +34,7 @@ function FramedEngine(options) {
34
34
  var paletteTitle = this.widget.wiki.getTiddlerText("$:/palette");
35
35
  var colorScheme = (this.widget.wiki.getTiddler(paletteTitle) || {fields: {}}).fields["color-scheme"] || "light";
36
36
  this.iframeDoc.open();
37
- this.iframeDoc.write("<meta name='color-scheme' content='" + colorScheme + "'>");
37
+ this.iframeDoc.write("<!DOCTYPE html><html><head><meta name='color-scheme' content='" + colorScheme + "'></head><body></body></html>");
38
38
  this.iframeDoc.close();
39
39
  // Style the iframe
40
40
  this.iframeNode.className = this.dummyTextArea.className;
@@ -156,8 +156,8 @@ Fix the height of textarea to fit content
156
156
  FramedEngine.prototype.fixHeight = function() {
157
157
  // Make sure styles are updated
158
158
  this.copyStyles();
159
- // Adjust height
160
- if(this.widget.editTag === "textarea") {
159
+ // If .editRows is initialised, it takes precedence
160
+ if(this.widget.editTag === "textarea" && !this.widget.editRows) {
161
161
  if(this.widget.editAutoHeight) {
162
162
  if(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {
163
163
  var newHeight = $tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);
@@ -197,7 +197,7 @@ FramedEngine.prototype.handleFocusEvent = function(event) {
197
197
  Handle a keydown event
198
198
  */
199
199
  FramedEngine.prototype.handleKeydownEvent = function(event) {
200
- if ($tw.keyboardManager.handleKeydownEvent(event, {onlyPriority: true})) {
200
+ if($tw.keyboardManager.handleKeydownEvent(event, {onlyPriority: true})) {
201
201
  return true;
202
202
  }
203
203
 
@@ -100,7 +100,8 @@ SimpleEngine.prototype.getText = function() {
100
100
  Fix the height of textarea to fit content
101
101
  */
102
102
  SimpleEngine.prototype.fixHeight = function() {
103
- if(this.widget.editTag === "textarea") {
103
+ // If .editRows is initialised, it takes precedence
104
+ if((this.widget.editTag === "textarea") && !this.widget.editRows) {
104
105
  if(this.widget.editAutoHeight) {
105
106
  if(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {
106
107
  $tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);
@@ -48,19 +48,19 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
48
48
  this.toolbarNode = this.document.createElement("div");
49
49
  this.toolbarNode.className = "tc-editor-toolbar";
50
50
  parent.insertBefore(this.toolbarNode,nextSibling);
51
- this.renderChildren(this.toolbarNode,null);
52
51
  this.domNodes.push(this.toolbarNode);
52
+ this.renderChildren(this.toolbarNode,null);
53
53
  }
54
54
  // Create our element
55
55
  var editInfo = this.getEditInfo(),
56
56
  Engine = this.editShowToolbar ? toolbarEngine : nonToolbarEngine;
57
57
  this.engine = new Engine({
58
- widget: this,
59
- value: editInfo.value,
60
- type: editInfo.type,
61
- parentNode: parent,
62
- nextSibling: nextSibling
63
- });
58
+ widget: this,
59
+ value: editInfo.value,
60
+ type: editInfo.type,
61
+ parentNode: parent,
62
+ nextSibling: nextSibling
63
+ });
64
64
  // Call the postRender hook
65
65
  if(this.postRender) {
66
66
  this.postRender();
@@ -68,7 +68,7 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
68
68
  // Fix height
69
69
  this.engine.fixHeight();
70
70
  // Focus if required
71
- if(this.editFocus === "true" || this.editFocus === "yes") {
71
+ if($tw.browser && (this.editFocus === "true" || this.editFocus === "yes") && !$tw.utils.hasClass(this.parentDomNode.ownerDocument.activeElement,"tc-keep-focus")) {
72
72
  this.engine.focus();
73
73
  }
74
74
  // Add widget message listeners
@@ -220,7 +220,7 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
220
220
  if(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes["default"] || changedAttributes["class"] || changedAttributes.placeholder || changedAttributes.size || changedAttributes.autoHeight || changedAttributes.minHeight || changedAttributes.focusPopup || changedAttributes.rows || changedAttributes.tabindex || changedAttributes.cancelPopups || changedAttributes.inputActions || changedAttributes.refreshTitle || changedAttributes.autocomplete || changedTiddlers[HEIGHT_MODE_TITLE] || changedTiddlers[ENABLE_TOOLBAR_TITLE] || changedTiddlers["$:/palette"] || changedAttributes.disabled || changedAttributes.fileDrop) {
221
221
  this.refreshSelf();
222
222
  return true;
223
- } else if (changedTiddlers[this.editRefreshTitle]) {
223
+ } else if(changedTiddlers[this.editRefreshTitle]) {
224
224
  this.engine.updateDomNodeText(this.getEditInfo().value);
225
225
  } else if(changedTiddlers[this.editTitle]) {
226
226
  var editInfo = this.getEditInfo();
@@ -274,8 +274,8 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
274
274
  });
275
275
  if($tw.keyboardManager.checkKeyDescriptors(event,keyInfoArray)) {
276
276
  var clickEvent = this.document.createEvent("Events");
277
- clickEvent.initEvent("click",true,false);
278
- el.dispatchEvent(clickEvent);
277
+ clickEvent.initEvent("click",true,false);
278
+ el.dispatchEvent(clickEvent);
279
279
  event.preventDefault();
280
280
  event.stopPropagation();
281
281
  return true;
@@ -10,7 +10,7 @@ Text editor operation to excise the selection to a new tiddler
10
10
  "use strict";
11
11
 
12
12
  function isMarkdown(mediaType) {
13
- return mediaType === 'text/markdown' || mediaType === 'text/x-markdown';
13
+ return mediaType === "text/markdown" || mediaType === "text/x-markdown";
14
14
  }
15
15
 
16
16
  exports["excise"] = function(event,operation) {
@@ -19,7 +19,7 @@ exports["wrap-lines"] = function(event,operation) {
19
19
  operation.cutStart = operation.selStart - (prefix.length + 1);
20
20
  operation.cutEnd = operation.selEnd + suffix.length + 1;
21
21
  // Also cut the following newline (if there is any)
22
- if (operation.text[operation.cutEnd] === "\n") {
22
+ if(operation.text[operation.cutEnd] === "\n") {
23
23
  operation.cutEnd++;
24
24
  }
25
25
  // Replace with selection
@@ -44,7 +44,7 @@ exports["wrap-selection"] = function(event,operation) {
44
44
  break;
45
45
  }
46
46
  return result;
47
- }
47
+ };
48
48
 
49
49
  function togglePrefixSuffix() {
50
50
  if(o.text.substring(o.selStart - prefix.length, o.selStart + suffix.length) === prefix + suffix) {