tiddlywiki 5.2.2 → 5.2.3

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 (631) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.yml +67 -0
  2. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  3. package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +8 -0
  4. package/bin/build-site.sh +1 -1
  5. package/boot/boot.js +1 -1
  6. package/contributing.md +1 -1
  7. package/core/language/en-GB/EditTemplate.multids +1 -0
  8. package/core/language/en-GB/Help/default.tid +4 -1
  9. package/core/language/en-GB/Help/render.tid +2 -2
  10. package/core/language/en-GB/SideBar.multids +1 -0
  11. package/core/modules/commands/render.js +1 -1
  12. package/core/modules/commands/rendertiddler.js +1 -0
  13. package/core/modules/commands/rendertiddlers.js +1 -1
  14. package/core/modules/commands/save.js +56 -42
  15. package/core/modules/editor/engines/framed.js +3 -1
  16. package/core/modules/editor/operations/text/prefix-lines.js +2 -2
  17. package/core/modules/editor/operations/text/wrap-lines.js +27 -10
  18. package/core/modules/filterrunprefixes/map.js +10 -2
  19. package/core/modules/filters/insertafter.js +46 -0
  20. package/core/modules/filters/insertbefore.js +6 -1
  21. package/core/modules/filters.js +19 -1
  22. package/core/modules/savers/put.js +11 -7
  23. package/core/modules/savers/upload.js +1 -1
  24. package/core/modules/server/server.js +3 -2
  25. package/core/modules/startup/browser-messaging.js +4 -2
  26. package/core/modules/startup/story.js +3 -1
  27. package/core/modules/utils/dom/dom.js +51 -0
  28. package/core/modules/utils/dom/dragndrop.js +24 -14
  29. package/core/modules/utils/dom/notifier.js +2 -1
  30. package/core/modules/utils/parsetree.js +48 -11
  31. package/core/modules/utils/utils.js +15 -1
  32. package/core/modules/widgets/action-setfield.js +12 -14
  33. package/core/modules/widgets/button.js +6 -1
  34. package/core/modules/widgets/checkbox.js +124 -15
  35. package/core/modules/widgets/draggable.js +37 -14
  36. package/core/modules/widgets/element.js +9 -3
  37. package/core/modules/widgets/eventcatcher.js +1 -27
  38. package/core/modules/widgets/image.js +4 -0
  39. package/core/modules/widgets/let.js +1 -1
  40. package/core/modules/widgets/scrollable.js +2 -0
  41. package/core/modules/widgets/widget.js +8 -1
  42. package/core/modules/wiki.js +1 -1
  43. package/core/palettes/CupertinoDark.tid +3 -3
  44. package/core/palettes/GruvBoxDark.tid +2 -2
  45. package/core/palettes/Nord.tid +2 -2
  46. package/core/templates/save-lazy-all.tid +2 -2
  47. package/core/templates/server/static.sidebar.wikitext.tid +1 -1
  48. package/core/templates/server/static.tiddler.html.tid +2 -2
  49. package/core/ui/Actions/new-image.tid +1 -0
  50. package/core/ui/Actions/new-journal.tid +2 -1
  51. package/core/ui/Actions/new-tiddler.tid +1 -0
  52. package/core/ui/AdvancedSearch/Filter.tid +50 -10
  53. package/core/ui/AdvancedSearch/FilterButtons/clear.tid +1 -0
  54. package/core/ui/AdvancedSearch/FilterButtons/delete.tid +1 -0
  55. package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +5 -2
  56. package/core/ui/AdvancedSearch/FilterButtons/export.tid +1 -0
  57. package/core/ui/AdvancedSearch/Shadows.tid +54 -12
  58. package/core/ui/AdvancedSearch/Standard.tid +36 -19
  59. package/core/ui/AdvancedSearch/System.tid +54 -12
  60. package/core/ui/AdvancedSearch.tid +1 -0
  61. package/core/ui/AlertTemplate.tid +10 -1
  62. package/core/ui/Components/tag-link.tid +1 -0
  63. package/core/ui/ControlPanel/Advanced.tid +1 -0
  64. package/core/ui/ControlPanel/Appearance.tid +1 -0
  65. package/core/ui/ControlPanel/Basics.tid +3 -0
  66. package/core/ui/ControlPanel/Cascades.tid +1 -0
  67. package/core/ui/ControlPanel/EditorTypes.tid +1 -0
  68. package/core/ui/ControlPanel/Info.tid +1 -0
  69. package/core/ui/ControlPanel/KeyboardShortcuts.tid +18 -7
  70. package/core/ui/ControlPanel/Modals/AddPlugins.tid +26 -9
  71. package/core/ui/ControlPanel/Parsing.tid +3 -0
  72. package/core/ui/ControlPanel/Plugins/Add/Updates.tid +5 -1
  73. package/core/ui/ControlPanel/Plugins/AddPlugins.tid +4 -1
  74. package/core/ui/ControlPanel/Plugins.tid +1 -0
  75. package/core/ui/ControlPanel/Saving/TiddlySpot.tid +2 -1
  76. package/core/ui/ControlPanel/Saving.tid +1 -0
  77. package/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab.tid +1 -0
  78. package/core/ui/ControlPanel/Settings/DefaultSidebarTab.tid +1 -0
  79. package/core/ui/ControlPanel/Settings/LinkToBehaviour.tid +1 -0
  80. package/core/ui/ControlPanel/Settings/ToolbarButtonStyle.tid +1 -0
  81. package/core/ui/ControlPanel/Toolbars/EditorItemTemplate.tid +8 -1
  82. package/core/ui/ControlPanel/Toolbars/ItemTemplate.tid +11 -1
  83. package/core/ui/ControlPanel/Toolbars.tid +1 -0
  84. package/core/ui/ControlPanel.tid +1 -0
  85. package/core/ui/DefaultSearchResultList.tid +1 -0
  86. package/core/ui/EditTemplate/Preview/output.tid +1 -1
  87. package/core/ui/EditTemplate/body/default.tid +8 -5
  88. package/core/ui/EditTemplate/body-editor.tid +2 -0
  89. package/core/ui/EditTemplate/controls.tid +1 -0
  90. package/core/ui/EditTemplate/fieldEditor-default.tid +1 -1
  91. package/core/ui/EditTemplate/fields.tid +17 -10
  92. package/core/ui/EditTemplate/shadow.tid +2 -0
  93. package/core/ui/EditTemplate/title.tid +10 -5
  94. package/core/ui/EditTemplate.tid +28 -4
  95. package/core/ui/EditorToolbar/editor-height.tid +1 -0
  96. package/core/ui/EditorToolbar/excise-dropdown.tid +5 -4
  97. package/core/ui/EditorToolbar/file-import.tid +4 -0
  98. package/core/ui/EditorToolbar/link-dropdown.tid +10 -5
  99. package/core/ui/EditorToolbar/more-dropdown.tid +5 -1
  100. package/core/ui/EditorToolbar/paint.tid +1 -0
  101. package/core/ui/EditorToolbar/preview.tid +1 -0
  102. package/core/ui/EditorToolbar/size-dropdown.tid +6 -1
  103. package/core/ui/ExportTiddlyWikiCore.tid +15 -5
  104. package/core/ui/ImportListing.tid +23 -5
  105. package/core/ui/ImportPreviews/Fields.tid +1 -0
  106. package/core/ui/KeyboardShortcuts/advanced-search.tid +1 -0
  107. package/core/ui/KeyboardShortcuts/change-sidebar-layout.tid +4 -2
  108. package/core/ui/KeyboardShortcuts/new-image.tid +1 -0
  109. package/core/ui/KeyboardShortcuts/new-journal.tid +1 -0
  110. package/core/ui/KeyboardShortcuts/new-tiddler.tid +1 -0
  111. package/core/ui/KeyboardShortcuts/save-wiki.tid +1 -0
  112. package/core/ui/KeyboardShortcuts/toggle-sidebar.tid +4 -3
  113. package/core/ui/LayoutSwitcher.tid +16 -4
  114. package/core/ui/ListItemTemplate.tid +1 -3
  115. package/core/ui/ListTaggedCascade.tid +1 -0
  116. package/core/ui/Manager/ItemMainFields.tid +1 -0
  117. package/core/ui/Manager/ItemSidebarColour.tid +4 -1
  118. package/core/ui/Manager/ItemSidebarIcon.tid +4 -4
  119. package/core/ui/Manager/ItemSidebarTools.tid +7 -2
  120. package/core/ui/Manager.tid +11 -6
  121. package/core/ui/MissingTemplate.tid +1 -0
  122. package/core/ui/MoreSideBar/Types.tid +1 -0
  123. package/core/ui/PageControls/controlpanel.tid +1 -1
  124. package/core/ui/PageStylesheet.tid +1 -0
  125. package/core/ui/PageTemplate/story.tid +1 -1
  126. package/core/ui/PaletteManager.tid +11 -10
  127. package/core/ui/PluginInfo.tid +1 -0
  128. package/core/ui/PluginInfoDefaultContents.tid +1 -0
  129. package/core/ui/SearchResults.tid +8 -6
  130. package/core/ui/SideBar/More.tid +1 -0
  131. package/core/ui/SideBar/Open.tid +2 -2
  132. package/core/ui/SideBarSegments/search.tid +2 -0
  133. package/core/ui/SideBarSegments/tabs.tid +1 -1
  134. package/core/ui/TiddlerFieldTemplate.tid +1 -0
  135. package/core/ui/TiddlerFields.tid +1 -0
  136. package/core/ui/TiddlerInfo/Advanced/PluginInfo.tid +1 -0
  137. package/core/ui/TiddlerInfo/Advanced/ShadowInfo.tid +1 -0
  138. package/core/ui/TiddlerInfo/Advanced.tid +1 -0
  139. package/core/ui/TiddlerInfo.tid +1 -0
  140. package/core/ui/TopRightBar/menu.tid +1 -0
  141. package/core/ui/UntaggedTemplate.tid +1 -0
  142. package/core/ui/ViewTemplate/body/import.tid +6 -1
  143. package/core/ui/ViewTemplate/body/plugin.tid +1 -0
  144. package/core/ui/ViewTemplate/body/rendered-plain-text.tid +7 -0
  145. package/core/ui/ViewTemplate/body.tid +2 -0
  146. package/core/ui/ViewTemplate/classic.tid +1 -0
  147. package/core/ui/ViewTemplate/subtitle/modified.tid +4 -0
  148. package/core/ui/ViewTemplate/subtitle/modifier.tid +4 -0
  149. package/core/ui/ViewTemplate/subtitle.tid +6 -2
  150. package/core/ui/ViewTemplate/tags.tid +1 -0
  151. package/core/ui/ViewTemplate/title.tid +2 -0
  152. package/core/ui/ViewTemplate/unfold.tid +1 -0
  153. package/core/ui/ViewTemplate.tid +1 -1
  154. package/core/ui/ViewToolbar/new-here.tid +1 -0
  155. package/core/wiki/allfields.tid +8 -2
  156. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  157. package/core/wiki/config/ViewTemplateBodyFilters.multids +2 -1
  158. package/core/wiki/currpalettepreview.tid +7 -2
  159. package/core/wiki/debugstylesheets.tid +1 -0
  160. package/core/wiki/download-wiki-button.tid +2 -1
  161. package/core/wiki/languageswitcher.tid +2 -0
  162. package/core/wiki/macros/colour-picker.tid +9 -2
  163. package/core/wiki/macros/copy-to-clipboard.tid +5 -2
  164. package/core/wiki/macros/diff.tid +4 -3
  165. package/core/wiki/macros/dumpvariables.tid +1 -0
  166. package/core/wiki/macros/image-picker.tid +5 -4
  167. package/core/wiki/macros/keyboard-driven-input.tid +22 -12
  168. package/core/wiki/macros/list.tid +7 -2
  169. package/core/wiki/macros/tabs.tid +55 -30
  170. package/core/wiki/macros/tag-picker.tid +14 -13
  171. package/core/wiki/macros/tag.tid +10 -5
  172. package/core/wiki/macros/thumbnails.tid +21 -9
  173. package/core/wiki/macros/timeline.tid +1 -0
  174. package/core/wiki/macros/toc.tid +19 -8
  175. package/core/wiki/macros/translink.tid +1 -0
  176. package/core/wiki/macros/tree.tid +8 -3
  177. package/core/wiki/minifocusswitcher.tid +1 -0
  178. package/core/wiki/minilanguageswitcher.tid +1 -0
  179. package/core/wiki/minithemeswitcher.tid +2 -1
  180. package/core/wiki/modules.tid +1 -0
  181. package/core/wiki/palettepreview.tid +1 -0
  182. package/core/wiki/paletteswitcher.tid +13 -2
  183. package/core/wiki/peek-stylesheets.tid +1 -5
  184. package/core/wiki/tags/ViewTemplateBodyFilter.tid +1 -1
  185. package/core/wiki/tags/ViewTemplateSubtitle.tid +2 -0
  186. package/core/wiki/themeswitcher.tid +10 -1
  187. package/core/wiki/title.tid +2 -1
  188. package/core/wiki/viewswitcher.tid +1 -0
  189. package/editions/de-AT/tiddlers/howto/TiddlyWiki und TiddlyDesktop.tid +1 -1
  190. package/editions/dev/tiddlers/_tw_shared/tiddlywiki.files +5 -0
  191. package/editions/dev/tiddlers/system/github-fork-ribbon.tid +1 -1
  192. package/editions/dev/tiddlywiki.info +1 -1
  193. package/editions/es-ES/tiddlers/TiddlyDesktop.tid +2 -2
  194. package/editions/fr-FR/tiddlers/Community Links Aggregator.tid +4 -4
  195. package/editions/fr-FR/tiddlers/Glossaire en-GB -_ fr-FR.tid +2 -1
  196. package/editions/fr-FR/tiddlers/community/editions/_Noteself_ by Danielo Rodr/303/255guez.tid" +34 -0
  197. package/editions/fr-FR/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +28 -0
  198. package/editions/fr-FR/tiddlers/community/resources/TiddlyDrive Add-on for Google Drive by Joshua Stubbs.tid +24 -0
  199. package/editions/fr-FR/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +35 -0
  200. package/editions/fr-FR/tiddlers/community/resources/Twexe_ Single File Tiddlywiki5 executable.tid +30 -0
  201. package/editions/fr-FR/tiddlers/community/resources/_Timimi_ Extension and executable by Riz.tid +33 -0
  202. package/editions/fr-FR/tiddlers/community/resources/_file-backups_ Extension for Firefox by pmario.tid +19 -0
  203. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +17 -0
  204. package/editions/fr-FR/tiddlers/concepts/Pragma.tid +23 -0
  205. package/editions/fr-FR/tiddlers/{WikiText.tid → concepts/WikiText.tid} +6 -4
  206. package/editions/fr-FR/tiddlers/definitions/TiddlyDesktop.tid +19 -0
  207. package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +11 -0
  208. package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Safari.tid +12 -0
  209. package/editions/fr-FR/tiddlers/{A_Gentle_Guide_to_TiddlyWiki.tid → hellothere/A Gentle Guide to TiddlyWiki.tid } +6 -4
  210. package/editions/fr-FR/tiddlers/howtos/How to Customize TiddlyDesktop.tid +33 -0
  211. package/editions/fr-FR/tiddlers/howtos/Windows HTA Hack.tid +17 -0
  212. package/editions/fr-FR/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +49 -0
  213. package/editions/fr-FR/tiddlers/nodejs/Serving TW5 from Android.tid +47 -0
  214. package/editions/fr-FR/tiddlers/nodejs/TiddlyWiki on Node.js.tid +18 -0
  215. package/editions/fr-FR/tiddlers/saving/Emergency Tiddler Export.tid +28 -0
  216. package/editions/fr-FR/tiddlers/saving/Example config-tiddlyweb-host for IIS.tid +9 -0
  217. package/editions/fr-FR/tiddlers/saving/Example package.json for IIS.tid +15 -0
  218. package/editions/fr-FR/tiddlers/saving/Example tiddlywiki.info for IIS.tid +18 -0
  219. package/editions/fr-FR/tiddlers/saving/Example web.config for IIS.tid +32 -0
  220. package/editions/fr-FR/tiddlers/saving/Installing TiddlyWiki on Microsoft Internet Information Server.tid +69 -0
  221. package/editions/fr-FR/tiddlers/saving/Saving on Android.tid +36 -0
  222. package/editions/fr-FR/tiddlers/saving/Saving on Beaker Browser.tid +35 -0
  223. package/editions/fr-FR/tiddlers/saving/Saving on Browser with File System Access API.tid +20 -0
  224. package/editions/fr-FR/tiddlers/saving/Saving on TidGi Desktop.tid +28 -0
  225. package/editions/fr-FR/tiddlers/saving/Saving on TiddlyDesktop.tid +20 -0
  226. package/editions/fr-FR/tiddlers/saving/Saving on TiddlyHost.tid +18 -0
  227. package/editions/fr-FR/tiddlers/{Saving on TiddlySpot.tid → saving/Saving on TiddlySpot.tid } +14 -3
  228. package/editions/fr-FR/tiddlers/saving/Saving on a PHP Server.tid +45 -0
  229. package/editions/fr-FR/tiddlers/saving/Saving on iPad_iPhone.tid +30 -0
  230. package/editions/fr-FR/tiddlers/saving/Saving to a Git service.tid +26 -0
  231. package/editions/fr-FR/tiddlers/saving/Saving via WebDAV.tid +88 -0
  232. package/editions/fr-FR/tiddlers/saving/Saving via a Minimal Ruby Server.tid +20 -0
  233. package/editions/fr-FR/tiddlers/saving/Saving with Polly.tid +30 -0
  234. package/editions/fr-FR/tiddlers/saving/Saving with TW Receiver.tid +16 -0
  235. package/editions/fr-FR/tiddlers/{Saving with TiddlyFox on Android.tid → saving/Saving with TiddlyFox on Android.tid } +5 -5
  236. package/editions/fr-FR/tiddlers/saving/Saving with TiddlyFox.tid +31 -0
  237. package/editions/fr-FR/tiddlers/saving/Saving with TiddlyIE.tid +25 -0
  238. package/editions/fr-FR/tiddlers/{Saving with the HTML5 fallback saver.tid → saving/Saving with the HTML5 fallback saver.tid } +11 -6
  239. package/editions/fr-FR/tiddlers/{Saving.tid → saving/Saving.tid} +8 -10
  240. package/editions/fr-FR/tiddlers/saving/TiddlyWiki Cloud.tid +17 -0
  241. package/editions/fr-FR/tiddlers/system/$__core_ui_SideBar_Open.tid +40 -0
  242. package/editions/fr-FR/tiddlers/{$__editions_fr-FR_util-macros.tid → system/$__editions_fr-FR_util-macros.tid} +4 -4
  243. package/editions/fr-FR/tiddlers/{$__editions_tw5.com_wikitext-macros.tid → system/$__editions_tw5.com_wikitext-macros.tid} +24 -3
  244. package/editions/fr-FR/tiddlers/system/tw5.com-card-template.tid +17 -0
  245. package/editions/fr-FR/tiddlers/tiddlydesktop/TiddlyDesktop_Releases.tid +9 -0
  246. package/editions/fr-FR/tiddlers/widgets/TranscludeWidget.tid +72 -0
  247. package/editions/fr-FR/tiddlers/{Block_Quotes_in_WikiText.tid → wikitext/Block Quotes in WikiText.tid } +3 -2
  248. package/editions/fr-FR/tiddlers/{Code Blocks in WikiText.tid → wikitext/Code Blocks in WikiText.tid } +3 -3
  249. package/editions/fr-FR/tiddlers/{Dashes in WikiText.tid → wikitext/Dashes in WikiText.tid } +3 -3
  250. package/editions/fr-FR/tiddlers/{Definitions_in_WikiText.tid → wikitext/Definitions in WikiText.tid } +2 -2
  251. package/editions/fr-FR/tiddlers/{Formatting in WikiText.tid → wikitext/Formatting in WikiText.tid } +5 -6
  252. package/editions/fr-FR/tiddlers/{Hard Linebreaks in WikiText.tid → wikitext/Hard Linebreaks in WikiText.tid } +6 -5
  253. package/editions/fr-FR/tiddlers/{Headings in WikiText.tid → wikitext/Headings in WikiText.tid } +4 -4
  254. package/editions/fr-FR/tiddlers/wikitext/Horizontal Rules in WikiText.tid +17 -0
  255. package/editions/fr-FR/tiddlers/{Lists_in_WikiText.tid → wikitext/Lists in WikiText.tid } +19 -19
  256. package/editions/fr-FR/tiddlers/wikitext/Macro Calls in WikiText.tid +27 -0
  257. package/editions/fr-FR/tiddlers/{Paragraphs in WikiText.tid → wikitext/Paragraphs in WikiText.tid } +8 -7
  258. package/editions/fr-FR/tiddlers/wikitext/Tables in WikiText.tid +69 -0
  259. package/editions/fr-FR/tiddlers/wikitext/Transclusion and Substitution.tid +61 -0
  260. package/editions/fr-FR/tiddlers/{Transclusion_in_WikiText.tid → wikitext/Transclusion in WikiText.tid } +14 -13
  261. package/editions/fr-FR/tiddlers/{Transclusion_with_Templates.tid → wikitext/Transclusion with Templates.tid } +2 -1
  262. package/editions/fr-FR/tiddlers/{Typed_Blocks_in_WikiText.tid → wikitext/Typed Blocks in WikiText.tid } +16 -11
  263. package/editions/fr-FR/tiddlers/{Variables_in_WikiText.tid → wikitext/Variables in WikiText.tid } +7 -8
  264. package/editions/fr-FR/tiddlers/wikitext/Widgets in WikiText.tid +30 -0
  265. package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText (Examples).tid +52 -0
  266. package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText.tid +37 -0
  267. package/editions/fr-FR/tiddlers/wikitext/parser/Inline Mode WikiText.tid +28 -0
  268. package/editions/fr-FR/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +14 -0
  269. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText Parser Modes.tid +17 -0
  270. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode HTML examples.tid +73 -0
  271. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode transitions.tid +59 -0
  272. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ macro examples.tid +56 -0
  273. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +56 -0
  274. package/editions/fr-FR/tiddlers/wikitext/parser/table-example.tid +8 -0
  275. package/editions/katexdemo/tiddlers/$__DefaultTiddlers.tid +8 -0
  276. package/editions/katexdemo/tiddlers/HelloThere.tid +4 -1
  277. package/editions/katexdemo/tiddlers/LaTeX.tid +8 -0
  278. package/editions/katexdemo/tiddlers/TiddlyWiki.tid +8 -0
  279. package/editions/katexdemo/tiddlers/TiddlyWiki5.tid +6 -0
  280. package/editions/prerelease/tiddlers/{Release 5.2.3.tid → Release 5.2.4.tid } +16 -15
  281. package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
  282. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  283. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +4 -1
  284. package/editions/prerelease/tiddlywiki.info +0 -2
  285. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal-all.tid +1 -29
  286. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal.tid +1 -39
  287. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-vertical.tid +1 -39
  288. package/editions/test/tiddlers/tests/test-action-widgets.js +43 -0
  289. package/editions/test/tiddlers/tests/test-checkbox-widget.js +507 -0
  290. package/editions/test/tiddlers/tests/test-filters.js +49 -2
  291. package/editions/test/tiddlers/tests/test-prefixes-filter.js +2 -0
  292. package/editions/test/tiddlers/tests/test-utils.js +6 -0
  293. package/editions/test/tiddlers/tests/test-widget.js +2 -1
  294. package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +8 -7
  295. package/editions/test/tiddlers/tests/test-wikitext.js +8 -1
  296. package/editions/translators/tiddlywiki.info +7 -1
  297. package/editions/tw.org/tiddlers/$__config_DefaultSidebarTab.tid +6 -0
  298. package/editions/tw.org/tiddlers/$__core_templates_static.content.tid +18 -0
  299. package/editions/tw.org/tiddlers/Code of Conduct.tid +30 -0
  300. package/editions/tw.org/tiddlers/Fundraising.tid +23 -0
  301. package/editions/tw.org/tiddlers/HelloThere.tid +3 -2
  302. package/editions/tw.org/tiddlers/Table of Contents.tid +2 -1
  303. package/editions/tw.org/tiddlers/_tw_shared/tiddlywiki.files +5 -0
  304. package/editions/tw5.com/tiddlers/$__StoryList.tid +3 -3
  305. package/editions/tw5.com/tiddlers/Brackets.tid +14 -0
  306. package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg +0 -0
  307. package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg.meta +1 -1
  308. package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico +0 -0
  309. package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico.meta +3 -0
  310. package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico +0 -0
  311. package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico.meta +3 -0
  312. package/editions/tw5.com/tiddlers/_tw_shared/favicons/talk.tiddlywiki.org.svg +6 -0
  313. package/editions/tw5.com/tiddlers/_tw_shared/favicons/talk.tiddlywiki.org.svg.meta +3 -0
  314. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico +0 -0
  315. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico.meta +3 -0
  316. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico +0 -0
  317. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico.meta +3 -0
  318. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico +0 -0
  319. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico.meta +3 -0
  320. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico +0 -0
  321. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico.meta +3 -0
  322. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico +0 -0
  323. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico.meta +3 -0
  324. package/editions/tw5.com/tiddlers/_tw_shared/sites/classic.tiddlywiki.com.tid +6 -0
  325. package/editions/tw5.com/tiddlers/_tw_shared/sites/links.tiddlywiki.org.tid +6 -0
  326. package/editions/tw5.com/tiddlers/_tw_shared/sites/talk.tiddlywiki.org.tid +6 -0
  327. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.dev.tid +6 -0
  328. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.prerelease.tid +6 -0
  329. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.tid +6 -0
  330. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.upgrade.tid +6 -0
  331. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.org.tid +6 -0
  332. package/editions/tw5.com/tiddlers/_tw_shared/sites.tid +32 -0
  333. package/editions/tw5.com/tiddlers/_tw_shared/styles.tid +48 -0
  334. package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +3 -0
  335. package/editions/tw5.com/tiddlers/community/Community Links Aggregator.tid +1 -1
  336. package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -1
  337. package/editions/tw5.com/tiddlers/community/editions/TiddlyMemo by oflg.tid +16 -0
  338. package/editions/tw5.com/tiddlers/community/resources/Projectify by Nicolas Petton.tid +6 -4
  339. package/editions/tw5.com/tiddlers/concepts/Customizing EditTemplate Field Rendering.tid +23 -7
  340. package/editions/tw5.com/tiddlers/concepts/DataTiddlers.tid +4 -21
  341. package/editions/tw5.com/tiddlers/concepts/DictionaryTiddlers.tid +3 -2
  342. package/editions/tw5.com/tiddlers/concepts/JSONTiddlers.tid +4 -3
  343. package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +7 -0
  344. package/editions/tw5.com/tiddlers/concepts/Macros.tid +6 -2
  345. package/editions/tw5.com/tiddlers/concepts/Order of Tagged Tiddlers.tid +3 -1
  346. package/editions/tw5.com/tiddlers/concepts/SystemTags.tid +1 -1
  347. package/editions/tw5.com/tiddlers/concepts/TiddlyWiki5.tid +4 -2
  348. package/editions/tw5.com/tiddlers/concepts/Title List.tid +4 -1
  349. package/editions/tw5.com/tiddlers/customising/Customising TiddlyWiki's user interface.tid +2 -2
  350. package/editions/tw5.com/tiddlers/definitions/JavaScript Object Notation.tid +2 -6
  351. package/editions/tw5.com/tiddlers/definitions/Node.js.tid +5 -3
  352. package/editions/tw5.com/tiddlers/definitions/TiddlyDesktop.tid +1 -1
  353. package/editions/tw5.com/tiddlers/definitions/TiddlyWeb.tid +1 -0
  354. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Styles.tid +0 -1
  355. package/editions/tw5.com/tiddlers/features/JSON in TiddlyWiki.tid +69 -0
  356. package/editions/tw5.com/tiddlers/filters/Mathematics Operators.tid +23 -3
  357. package/editions/tw5.com/tiddlers/filters/examples/insertafter Operator (Examples).tid +28 -0
  358. package/editions/tw5.com/tiddlers/filters/format.tid +3 -1
  359. package/editions/tw5.com/tiddlers/filters/insertafter Operator.tid +35 -0
  360. package/editions/tw5.com/tiddlers/filters/insertbefore Operator.tid +9 -3
  361. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix (Examples).tid +20 -2
  362. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +3 -2
  363. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +6 -0
  364. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  365. package/editions/tw5.com/tiddlers/howtos/Constructing JSON tiddlers.tid +16 -0
  366. package/editions/tw5.com/tiddlers/howtos/Creating a splash screen.tid +1 -1
  367. package/editions/tw5.com/tiddlers/howtos/How to apply custom styles by tag.tid +2 -2
  368. package/editions/tw5.com/tiddlers/howtos/How to customize TiddlyDesktop.tid +1 -1
  369. package/editions/tw5.com/tiddlers/howtos/How to update TiddlyWiki to the latest version.tid +7 -0
  370. package/editions/tw5.com/tiddlers/howtos/Modifying JSON tiddlers.tid +18 -0
  371. package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +25 -0
  372. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  373. package/editions/tw5.com/tiddlers/macros/JsonTiddlersMacro.tid +3 -3
  374. package/editions/tw5.com/tiddlers/macros/TagMacro.tid +1 -1
  375. package/editions/tw5.com/tiddlers/macros/jsontiddler Macro.tid +2 -2
  376. package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +2 -0
  377. package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +1 -0
  378. package/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +1 -1
  379. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-window.tid +3 -1
  380. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +11 -2
  381. package/editions/tw5.com/tiddlers/nodejs/Environment Variables on Node.js.tid +5 -5
  382. package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +5 -10
  383. package/editions/tw5.com/tiddlers/nodejs/Installing custom plugins on Node.js.tid +11 -19
  384. package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +40 -0
  385. package/editions/tw5.com/tiddlers/nodejs/PluginsCS.tid +9 -0
  386. package/editions/tw5.com/tiddlers/nodejs/TiddlyWiki on Node.js.tid +7 -2
  387. package/editions/tw5.com/tiddlers/nodejs/Uninstalling a plugin with Node.js.tid +31 -0
  388. package/editions/tw5.com/tiddlers/nodejs/Using TiddlyWiki on Node.js.tid +4 -4
  389. package/editions/tw5.com/tiddlers/platforms/TiddlyWiki in the Sky for TiddlyWeb.tid +2 -1
  390. package/editions/tw5.com/tiddlers/plugins/Installing a plugin from the plugin library.tid +22 -35
  391. package/editions/tw5.com/tiddlers/plugins/Manually installing a plugin.tid +19 -4
  392. package/editions/tw5.com/tiddlers/plugins/OfficialPlugins.tid +3 -1
  393. package/editions/tw5.com/tiddlers/plugins/Plugin Ordering.tid +47 -0
  394. package/editions/tw5.com/tiddlers/plugins/PluginFolders.tid +27 -1
  395. package/editions/tw5.com/tiddlers/plugins/Plugins.tid +19 -7
  396. package/editions/tw5.com/tiddlers/plugins/Uninstalling a plugin.tid +15 -25
  397. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +32 -34
  398. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +36 -38
  399. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +16 -18
  400. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.2.tid +26 -28
  401. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.3.tid +152 -0
  402. package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +1 -1
  403. package/editions/tw5.com/tiddlers/saving/Saving on Android.tid +1 -1
  404. package/editions/tw5.com/tiddlers/saving/Saving on TidGi.tid +1 -1
  405. package/editions/tw5.com/tiddlers/saving/Saving on TiddlyDesktop.tid +3 -3
  406. package/editions/tw5.com/tiddlers/saving/Saving on iPad_iPhone.tid +1 -1
  407. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +5 -3
  408. package/editions/tw5.com/tiddlers/saving/Saving.tid +9 -11
  409. package/editions/tw5.com/tiddlers/system/Deprecated.tid +4 -4
  410. package/editions/tw5.com/tiddlers/system/Deprecated_-_What_does_it_mean.tid +2 -6
  411. package/editions/tw5.com/tiddlers/system/doc-macros.tid +11 -1
  412. package/editions/tw5.com/tiddlers/system/doc-styles.tid +34 -4
  413. package/editions/tw5.com/tiddlers/system/download-empty-button.tid +1 -1
  414. package/editions/tw5.com/tiddlers/system/systemtag-template.tid +21 -0
  415. package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +12 -8
  416. package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +5 -6
  417. package/editions/tw5.com/tiddlers/system/version-macros.tid +3 -3
  418. package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +38 -3
  419. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Macro_View_Body.tid +9 -0
  420. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplate.tid +2 -2
  421. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplateSubtitle.tid +9 -0
  422. package/editions/tw5.com/tiddlers/tiddlydesktop/TiddlyDesktop_Releases.tid +1 -1
  423. package/editions/tw5.com/tiddlers/variables/modifier Variable.tid +2 -2
  424. package/editions/tw5.com/tiddlers/widgets/CheckboxWidget.tid +77 -3
  425. package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +19 -3
  426. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +3 -1
  427. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +5 -3
  428. package/editions/tw5.com/tiddlers/widgets/JSONTiddlerWidget.tid +5 -4
  429. package/editions/tw5.com/tiddlers/widgets/ListWidget.tid +2 -2
  430. package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +3 -3
  431. package/editions/tw5.com/tiddlers/widgets/SetWidget.tid +3 -1
  432. package/editions/tw5.com/tiddlers/widgets/TranscludeWidget.tid +2 -5
  433. package/editions/tw5.com/tiddlers/wikitext/Code Blocks in WikiText.tid +4 -7
  434. package/editions/tw5.com/tiddlers/wikitext/Dashes in WikiText.tid +7 -3
  435. package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +7 -7
  436. package/editions/tw5.com/tiddlers/wikitext/Headings in WikiText.tid +3 -3
  437. package/editions/tw5.com/tiddlers/wikitext/Horizontal Rules in WikiText.tid +3 -5
  438. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText.tid +13 -37
  439. package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +4 -4
  440. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +1 -1
  441. package/languages/de-DE/EditTemplate.multids +1 -0
  442. package/languages/de-DE/Help/render.tid +2 -1
  443. package/languages/de-DE/SideBar.multids +1 -0
  444. package/languages/fr-FR/ControlPanel.multids +18 -0
  445. package/languages/fr-FR/EditTemplate.multids +1 -0
  446. package/languages/fr-FR/Fields.multids +4 -2
  447. package/languages/fr-FR/Help/default.tid +4 -1
  448. package/languages/fr-FR/Help/render.tid +2 -1
  449. package/languages/fr-FR/Misc.multids +1 -1
  450. package/languages/fr-FR/SideBar.multids +1 -0
  451. package/languages/ja-JP/Buttons.multids +147 -30
  452. package/languages/ja-JP/ControlPanel.multids +175 -37
  453. package/languages/ja-JP/CoreReadMe.tid +2 -2
  454. package/languages/ja-JP/Dates.multids +24 -24
  455. package/languages/ja-JP/Docs/ModuleTypes.multids +3 -3
  456. package/languages/ja-JP/Docs/PaletteColours.multids +18 -18
  457. package/languages/ja-JP/EditTemplate.multids +23 -7
  458. package/languages/ja-JP/Exporters.multids +1 -1
  459. package/languages/ja-JP/Fields.multids +28 -23
  460. package/languages/ja-JP/Filters.multids +12 -9
  461. package/languages/ja-JP/GettingStarted.tid +6 -6
  462. package/languages/ja-JP/Help/build.tid +2 -2
  463. package/languages/ja-JP/Help/editions.tid +6 -2
  464. package/languages/ja-JP/Help/help.tid +1 -1
  465. package/languages/ja-JP/Help/init.tid +2 -2
  466. package/languages/ja-JP/Help/load.tid +2 -2
  467. package/languages/ja-JP/Help/makelibrary.tid +3 -3
  468. package/languages/ja-JP/Help/output.tid +2 -2
  469. package/languages/ja-JP/Help/rendertiddler.tid +2 -2
  470. package/languages/ja-JP/Help/rendertiddlers.tid +2 -2
  471. package/languages/ja-JP/Help/savetiddler.tid +2 -2
  472. package/languages/ja-JP/Help/savetiddlers.tid +12 -2
  473. package/languages/ja-JP/Help/server.tid +6 -6
  474. package/languages/ja-JP/Help/setfield.tid +7 -7
  475. package/languages/ja-JP/Help/unpackplugin.tid +2 -2
  476. package/languages/ja-JP/Help/verbose.tid +6 -2
  477. package/languages/ja-JP/Help/version.tid +2 -2
  478. package/languages/ja-JP/Import.multids +27 -8
  479. package/languages/ja-JP/Misc.multids +98 -11
  480. package/languages/ja-JP/Modals/Download.tid +2 -2
  481. package/languages/ja-JP/Notifications.multids +2 -2
  482. package/languages/ja-JP/Search.multids +8 -4
  483. package/languages/ja-JP/SideBar.multids +6 -4
  484. package/languages/ja-JP/SiteSubtitle.tid +1 -1
  485. package/languages/ja-JP/SiteTitle.tid +1 -1
  486. package/languages/ja-JP/TiddlerInfo.multids +10 -10
  487. package/languages/ja-JP/Types/application%2Fjavascript.tid +1 -1
  488. package/languages/ja-JP/Types/image%2Fgif.tid +1 -1
  489. package/languages/ja-JP/Types/image%2Fjpeg.tid +1 -1
  490. package/languages/ja-JP/Types/image%2Fpng.tid +1 -1
  491. package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +1 -1
  492. package/languages/ja-JP/Types/image%2Fx-icon.tid +1 -1
  493. package/languages/ja-JP/Types/text%2Fcss.tid +1 -1
  494. package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +1 -1
  495. package/languages/ja-JP/plugin.info +1 -1
  496. package/languages/pl-PL/ControlPanel.multids +3 -1
  497. package/languages/pl-PL/EditTemplate.multids +1 -0
  498. package/languages/pl-PL/Fields.multids +3 -3
  499. package/languages/pl-PL/Help/default.tid +4 -1
  500. package/languages/pl-PL/Import.multids +3 -3
  501. package/languages/pl-PL/SideBar.multids +1 -0
  502. package/languages/zh-Hans/EditTemplate.multids +1 -0
  503. package/languages/zh-Hans/Help/default.tid +4 -1
  504. package/languages/zh-Hans/Help/render.tid +1 -0
  505. package/languages/zh-Hans/SideBar.multids +1 -0
  506. package/languages/zh-Hant/EditTemplate.multids +1 -0
  507. package/languages/zh-Hant/Help/default.tid +4 -1
  508. package/languages/zh-Hant/Help/render.tid +1 -0
  509. package/languages/zh-Hant/SideBar.multids +1 -0
  510. package/licenses/cla-individual.md +10 -0
  511. package/package.json +1 -1
  512. package/plugins/tiddlywiki/browser-sniff/browser.js +5 -1
  513. package/plugins/tiddlywiki/browser-sniff/usage.tid +1 -0
  514. package/plugins/tiddlywiki/browser-storage/rawmarkup.js +18 -1
  515. package/plugins/tiddlywiki/browser-storage/readme.tid +0 -1
  516. package/plugins/tiddlywiki/browser-storage/settings.tid +5 -1
  517. package/plugins/tiddlywiki/browser-storage/startup.js +14 -9
  518. package/plugins/tiddlywiki/dynannotate/docs/readme.tid +72 -8
  519. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +10 -1
  520. package/plugins/tiddlywiki/dynannotate/modules/legacy-selection-tracker.js +104 -0
  521. package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +144 -89
  522. package/plugins/tiddlywiki/dynannotate/modules/startup.js +40 -0
  523. package/{editions/katexdemo/tiddlers → plugins/tiddlywiki/katex}/ImplementationNotes.tid +3 -3
  524. package/plugins/tiddlywiki/katex/developer.tid +58 -0
  525. package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -0
  526. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
  527. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  528. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  529. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  530. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  531. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
  532. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  533. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
  534. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
  535. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  536. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
  537. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  538. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  539. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  540. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
  541. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
  542. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
  543. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
  544. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
  545. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  546. package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
  547. package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
  548. package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
  549. package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
  550. package/plugins/tiddlywiki/katex/plugin.info +1 -1
  551. package/plugins/tiddlywiki/katex/readme.tid +1 -1
  552. package/plugins/tiddlywiki/katex/snippets/logo.tid +4 -0
  553. package/plugins/tiddlywiki/katex/snippets/math.tid +8 -0
  554. package/plugins/tiddlywiki/katex/styles.tid +7 -0
  555. package/plugins/tiddlywiki/katex/usage.tid +18 -2
  556. package/plugins/tiddlywiki/markdown/EditorToolbar/link-dropdown.tid +73 -0
  557. package/plugins/tiddlywiki/markdown/EditorToolbar/link.tid +11 -0
  558. package/plugins/tiddlywiki/markdown/EditorToolbar/linkify.tid +15 -0
  559. package/plugins/tiddlywiki/markdown/EditorToolbar/mono-block.tid +17 -0
  560. package/plugins/tiddlywiki/markdown/KeyboardShortcuts/new-markdown-tiddler.tid +8 -0
  561. package/plugins/tiddlywiki/markdown/config.multids +5 -0
  562. package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +37 -0
  563. package/plugins/tiddlywiki/markdown/images/markdown-linkify.tid +6 -0
  564. package/plugins/tiddlywiki/menubar/items/search.tid +2 -0
  565. package/plugins/tiddlywiki/tiddlyweb/save-wiki-button.tid +1 -1
  566. package/readme.md +5 -3
  567. package/themes/tiddlywiki/vanilla/base.tid +21 -3
  568. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -43
  569. package/editions/fr-FR/tiddlers/$__core_ui_SideBar_Open.tid +0 -15
  570. package/editions/fr-FR/tiddlers/Horizontal Rules in WikiText.tid +0 -17
  571. package/editions/fr-FR/tiddlers/Installing TiddlyWiki on Node.js.tid +0 -23
  572. package/editions/fr-FR/tiddlers/Macro_Calls_in_WikiText.tid +0 -22
  573. package/editions/fr-FR/tiddlers/Pragma.tid +0 -17
  574. package/editions/fr-FR/tiddlers/Saving on Android.tid +0 -10
  575. package/editions/fr-FR/tiddlers/Saving on InternetExplorer.tid +0 -11
  576. package/editions/fr-FR/tiddlers/Saving on Safari.tid +0 -24
  577. package/editions/fr-FR/tiddlers/Saving on iPad_iPhone.tid +0 -23
  578. package/editions/fr-FR/tiddlers/Saving with TiddlyFox.tid +0 -24
  579. package/editions/fr-FR/tiddlers/Saving with TiddlyIE.tid +0 -19
  580. package/editions/fr-FR/tiddlers/Saving_on_a_PHP_Server.tid +0 -30
  581. package/editions/fr-FR/tiddlers/Tables_in_WikiText.tid +0 -102
  582. package/editions/fr-FR/tiddlers/TiddlyDesktop.tid +0 -23
  583. package/editions/fr-FR/tiddlers/TiddlyDesktop_Releases.tid +0 -9
  584. package/editions/fr-FR/tiddlers/TiddlyWiki on Node.js.tid +0 -18
  585. package/editions/fr-FR/tiddlers/TranscludeWidget.tid +0 -73
  586. package/editions/fr-FR/tiddlers/Widgets_in_WikiText.tid +0 -30
  587. package/editions/katexdemo/tiddlers/DefaultTiddlers.tid +0 -5
  588. package/plugins/tiddlywiki/katex/files/README.md +0 -119
  589. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.ttf +0 -0
  590. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  591. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  592. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  593. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  594. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  595. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  596. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  597. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  598. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  599. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.ttf +0 -0
  600. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
  601. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  602. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  603. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.ttf +0 -0
  604. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
  605. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.ttf +0 -0
  606. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
  607. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  608. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  609. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.ttf +0 -0
  610. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
  611. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  612. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  613. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  614. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  615. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  616. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  617. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.ttf +0 -0
  618. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
  619. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.ttf +0 -0
  620. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  621. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.ttf +0 -0
  622. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  623. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.ttf +0 -0
  624. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  625. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.ttf +0 -0
  626. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  627. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  628. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  629. package/plugins/tiddlywiki/katex/files/katex.css +0 -1079
  630. package/plugins/tiddlywiki/katex/files/katex.js +0 -18183
  631. package/plugins/tiddlywiki/katex/files/mhchem.min.js +0 -1
@@ -2,14 +2,26 @@ title: $:/snippets/LayoutSwitcher
2
2
  tags: $:/tags/ControlPanel/Appearance
3
3
  caption: {{$:/language/ControlPanel/LayoutSwitcher/Caption}}
4
4
 
5
+ \whitespace trim
5
6
  <$linkcatcher to="$:/layout">
6
7
  <div class="tc-chooser">
7
8
  <$list filter="[all[tiddlers+shadows]tag[$:/tags/Layout]] [[$:/core/ui/PageTemplate]] +[!is[draft]sort[name]]">
8
- <$list filter="[{$:/layout}!has[text]]" variable="ignore" emptyMessage="""
9
- <$set name="cls" filter="[all[current]field:title{$:/layout}]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item"><div class=<<cls>>><$link to={{!!title}}>''<$transclude field="name"/>'' - <$transclude field="description"/></$link></div>
10
- </$set>
9
+ <$list
10
+ filter="[{$:/layout}!has[text]]"
11
+ variable="ignore"
12
+ emptyMessage="""\whitespace trim
13
+ <$set name="cls" filter="[all[current]field:title{$:/layout}]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
14
+ <div class=<<cls>>>
15
+ <$link to={{!!title}}>
16
+ ''<$transclude field="name"/>''&#32;-&#32;<$transclude field="description"/>
17
+ </$link></div></$set>
11
18
  """>
12
- <$set name="cls" filter="[all[current]field:title[$:/core/ui/PageTemplate]]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item"><div class=<<cls>>><$link to={{!!title}}>''<$transclude field="name"/>'' - <$transclude field="description"/></$link></div>
19
+ <$set name="cls" filter="[all[current]field:title[$:/core/ui/PageTemplate]]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
20
+ <div class=<<cls>>>
21
+ <$link to={{!!title}}>
22
+ ''<$transclude field="name"/>''&#32;-&#32;<$transclude field="description"/>
23
+ </$link>
24
+ </div>
13
25
  </$set>
14
26
  </$list>
15
27
  </$list>
@@ -1,5 +1,3 @@
1
1
  title: $:/core/ui/ListItemTemplate
2
2
 
3
- <div class="tc-menu-list-item">
4
- <$link />
5
- </div>
3
+ <div class="tc-menu-list-item"><$link /></div>
@@ -1,5 +1,6 @@
1
1
  title: $:/snippets/ListTaggedCascade
2
2
 
3
+ \whitespace trim
3
4
  {{||$:/language/ControlPanel/Cascades/TagPrompt}}
4
5
 
5
6
  <ol>
@@ -2,6 +2,7 @@ title: $:/Manager/ItemMain/Fields
2
2
  tags: $:/tags/Manager/ItemMain
3
3
  caption: {{$:/language/Manager/Item/Fields}}
4
4
 
5
+ \whitespace trim
5
6
  <table>
6
7
  <tbody>
7
8
  <$list filter="[all[current]fields[]sort[title]] -text" template="$:/core/ui/TiddlerFieldTemplate" variable="listItem"/>
@@ -7,9 +7,12 @@ height: 1em;
7
7
  background-color: $(colour)$
8
8
  \end
9
9
 
10
+ \whitespace trim
10
11
  <$vars colour={{!!color}}>
11
12
  <p style=<<swatch-styles>>/>
12
13
  </$vars>
13
14
  <p>
14
- <$edit-text field="color" tag="input" type="color"/> / <$edit-text field="color" tag="input" type="text" size="9"/>
15
+ <$edit-text field="color" tag="input" type="color"/>
16
+ &#32;/&#32;
17
+ <$edit-text field="color" tag="input" type="text" size="9"/>
15
18
  </p>
@@ -2,6 +2,7 @@ title: $:/Manager/ItemSidebar/Icon
2
2
  tags: $:/tags/Manager/ItemSidebar
3
3
  caption: {{$:/language/Manager/Item/Icon}}
4
4
 
5
+ \whitespace trim
5
6
  <p>
6
7
  <div class="tc-manager-icon-editor">
7
8
  <$button popup=<<qualify "$:/state/popup/image-picker">> class="tc-btn-invisible">
@@ -12,10 +13,9 @@ caption: {{$:/language/Manager/Item/Icon}}
12
13
  <div class="tc-block-dropdown-wrapper" style="position: static;">
13
14
  <$reveal state=<<qualify "$:/state/popup/image-picker">> type="nomatch" text="" default="" tag="div" class="tc-popup">
14
15
  <div class="tc-block-dropdown tc-popup-keep" style="width: 80%; left: 10%; right: 10%; padding: 0.5em;">
15
- <$macrocall $name="image-picker-include-tagged-images" actions="""
16
- <$action-setfield $field="icon" $value=<<imageTitle>>/>
17
- <$action-deletetiddler $tiddler=<<qualify "$:/state/popup/image-picker">>/>
18
- """/>
16
+ <$macrocall
17
+ $name="image-picker-include-tagged-images"
18
+ actions="<$action-setfield $field='icon' $value=<<imageTitle>>/><$action-deletetiddler $tiddler=<<qualify '$:/state/popup/image-picker'>>/>"/>
19
19
  </div>
20
20
  </$reveal>
21
21
  </div>
@@ -2,9 +2,14 @@ title: $:/Manager/ItemSidebar/Tools
2
2
  tags: $:/tags/Manager/ItemSidebar
3
3
  caption: {{$:/language/Manager/Item/Tools}}
4
4
 
5
+ \whitespace trim
5
6
  <p>
6
- <$button to=<<currentTiddler>>>{{$:/core/images/link}} open</$button>
7
+ <$button to=<<currentTiddler>>>
8
+ {{$:/core/images/link}}&#32;open
9
+ </$button>
7
10
  </p>
8
11
  <p>
9
- <$button message="tm-edit-tiddler" param=<<currentTiddler>>>{{$:/core/images/edit-button}} edit</$button>
12
+ <$button message="tm-edit-tiddler" param=<<currentTiddler>>>
13
+ {{$:/core/images/edit-button}}&#32;edit
14
+ </$button>
10
15
  </p>
@@ -5,16 +5,17 @@ color: #bbb
5
5
  \define lingo-base() $:/language/Manager/
6
6
 
7
7
  \define list-item-content-item()
8
+ \whitespace trim
8
9
  <div class="tc-manager-list-item-content-item">
9
10
  <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
10
11
  <$reveal state=<<state-title>> type="match" text="show" default="show" tag="div">
11
12
  <$button set=<<state-title>> setTo="hide" class="tc-btn-invisible tc-manager-list-item-content-item-heading">
12
- {{$:/core/images/down-arrow}} <$transclude tiddler=<<listItem>> field="caption"/>
13
+ {{$:/core/images/down-arrow}}&#32;<$transclude tiddler=<<listItem>> field="caption"/>
13
14
  </$button>
14
15
  </$reveal>
15
16
  <$reveal state=<<state-title>> type="nomatch" text="show" default="show" tag="div">
16
17
  <$button set=<<state-title>> setTo="show" class="tc-btn-invisible tc-manager-list-item-content-item-heading">
17
- {{$:/core/images/right-arrow}} <$transclude tiddler=<<listItem>> field="caption"/>
18
+ {{$:/core/images/right-arrow}}&#32;<$transclude tiddler=<<listItem>> field="caption"/>
18
19
  </$button>
19
20
  </$reveal>
20
21
  <$reveal state=<<state-title>> type="match" text="show" default="show" tag="div" class="tc-manager-list-item-content-item-body">
@@ -24,19 +25,20 @@ color: #bbb
24
25
  </div>
25
26
  \end
26
27
 
28
+ \whitespace trim
27
29
  <div class="tc-manager-wrapper">
28
30
  <div class="tc-manager-controls">
29
31
  <div class="tc-manager-control">
30
- <<lingo Controls/Show/Prompt>> <$select tiddler="$:/config/Manager/Show" default="tiddlers">
32
+ <<lingo Controls/Show/Prompt>>&#32;<$select tiddler="$:/config/Manager/Show" default="tiddlers">
31
33
  <option value="tiddlers"><<lingo Controls/Show/Option/Tiddlers>></option>
32
34
  <option value="tags"><<lingo Controls/Show/Option/Tags>></option>
33
35
  </$select>
34
36
  </div>
35
37
  <div class="tc-manager-control">
36
- <<lingo Controls/Search/Prompt>> <$edit-text tiddler="$:/config/Manager/Filter" tag="input" default="" placeholder={{$:/language/Manager/Controls/Search/Placeholder}}/>
38
+ <<lingo Controls/Search/Prompt>>&#32;<$edit-text tiddler="$:/config/Manager/Filter" tag="input" default="" placeholder={{$:/language/Manager/Controls/Search/Placeholder}}/>
37
39
  </div>
38
40
  <div class="tc-manager-control">
39
- <<lingo Controls/FilterByTag/Prompt>> <$select tiddler="$:/config/Manager/Tag" default="">
41
+ <<lingo Controls/FilterByTag/Prompt>>&#32;<$select tiddler="$:/config/Manager/Tag" default="">
40
42
  <option value=""><<lingo Controls/FilterByTag/None>></option>
41
43
  <$list filter="[!is{$:/config/Manager/System}tags[]!is[system]sort[title]]" variable="tag">
42
44
  <option value=<<tag>>><$text text=<<tag>>/></option>
@@ -44,7 +46,7 @@ color: #bbb
44
46
  </$select>
45
47
  </div>
46
48
  <div class="tc-manager-control">
47
- <<lingo Controls/Sort/Prompt>> <$select tiddler="$:/config/Manager/Sort" default="title">
49
+ <<lingo Controls/Sort/Prompt>>&#32;<$select tiddler="$:/config/Manager/Sort" default="title">
48
50
  <optgroup label="Common">
49
51
  <$list filter="title modified modifier created creator created" variable="field">
50
52
  <option value=<<field>>><$text text=<<field>>/></option>
@@ -56,12 +58,15 @@ color: #bbb
56
58
  </$list>
57
59
  </optgroup>
58
60
  </$select>
61
+ &#32;
59
62
  <$checkbox tiddler="$:/config/Manager/Order" field="text" checked="reverse" unchecked="forward" default="forward">
63
+ &#32;
60
64
  <<lingo Controls/Order/Prompt>>
61
65
  </$checkbox>
62
66
  </div>
63
67
  <div class="tc-manager-control">
64
68
  <$checkbox tiddler="$:/config/Manager/System" field="text" checked="" unchecked="system" default="system">
69
+ &#32;
65
70
  {{$:/language/SystemTiddlers/Include/Prompt}}
66
71
  </$checkbox>
67
72
  </div>
@@ -1,5 +1,6 @@
1
1
  title: $:/core/ui/MissingTemplate
2
2
 
3
+ \whitespace trim
3
4
  <div class="tc-tiddler-missing">
4
5
  <$button popup=<<qualify "$:/state/popup/missing">> class="tc-btn-invisible tc-missing-tiddler-label">
5
6
  <$view field="title" format="text" />
@@ -2,6 +2,7 @@ title: $:/core/ui/MoreSideBar/Types
2
2
  tags: $:/tags/MoreSideBar
3
3
  caption: {{$:/language/SideBar/Types/Caption}}
4
4
 
5
+ \whitespace trim
5
6
  <$list filter={{$:/core/Filters/TypedTiddlers!!filter}}>
6
7
  <div class="tc-menu-list-item">
7
8
  <$view field="type"/>
@@ -16,6 +16,6 @@ description: {{$:/language/Buttons/ControlPanel/Hint}}
16
16
  </$button>
17
17
  \end
18
18
 
19
- <$list filter="[list[$:/StoryList]] +[field:title[$:/ControlPanel]]" emptyMessage=<<control-panel-button>>>
19
+ <$list filter="[list<tv-story-list>] +[field:title[$:/ControlPanel]]" emptyMessage=<<control-panel-button>>>
20
20
  <<control-panel-button "tc-selected">>
21
21
  </$list>
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/PageStylesheet
2
2
 
3
3
  \import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]
4
+ \whitespace trim
4
5
 
5
6
  <$set name="currentTiddler" value={{$:/language}}>
6
7
 
@@ -2,7 +2,7 @@ title: $:/core/ui/PageTemplate/story
2
2
  tags: $:/tags/PageTemplate
3
3
 
4
4
  \whitespace trim
5
- <section class="tc-story-river">
5
+ <section class="tc-story-river" role="main">
6
6
 
7
7
  <section class="story-backdrop">
8
8
 
@@ -8,6 +8,7 @@ title: $:/PaletteManager
8
8
  edit $(colourName)$
9
9
  \end
10
10
  \define colour-tooltip(showhide) $showhide$ editor for $(newColourName)$
11
+
11
12
  \define resolve-colour(macrocall)
12
13
  \import $:/core/macros/utils
13
14
  \whitespace trim
@@ -15,6 +16,7 @@ title: $:/PaletteManager
15
16
  <<name>>
16
17
  </$wikify>
17
18
  \end
19
+
18
20
  \define delete-colour-index-actions() <$action-setfield $index=<<colourName>>/>
19
21
  \define palette-manager-colour-row-segment()
20
22
  \whitespace trim
@@ -41,6 +43,7 @@ title: $:/PaletteManager
41
43
  </$set>
42
44
  </$list>
43
45
  \end
46
+
44
47
  \define palette-manager-colour-row()
45
48
  \whitespace trim
46
49
  <tr>
@@ -57,28 +60,26 @@ title: $:/PaletteManager
57
60
  </td>
58
61
  </tr>
59
62
  \end
63
+
60
64
  \define palette-manager-table()
61
65
  \whitespace trim
62
66
  <table>
63
67
  <tbody>
64
- <$list filter="[all[shadows+tiddlers]tag[$:/tags/Palette]indexes[]]" variable="colourName">
65
- <$list filter="[<currentTiddler>indexes[]removeprefix<colourName>suffix[]]" variable="ignore" emptyMessage="""
66
- <$list filter="[{$:/state/palettemanager/showexternal}removeprefix[yes]suffix[]]" variable="ignore">
67
- <<palette-manager-colour-row>>
68
- </$list>
69
- """>
70
- <<palette-manager-colour-row>>
71
- </$list>
72
- </$list>
68
+ <$set name="colorList" filter="[{$:/state/palettemanager/showexternal}match[yes]]"
69
+ value="[all[shadows+tiddlers]tag[$:/tags/Palette]indexes[]]" emptyValue="[<currentTiddler>indexes[]]">
70
+ <$list filter=<<colorList>> variable="colourName"> <<palette-manager-colour-row>> </$list>
71
+ </$set>
73
72
  </tbody>
74
73
  </table>
75
74
  \end
75
+ \whitespace trim
76
76
  <$set name="currentTiddler" value={{$:/palette}}>
77
77
 
78
- <<lingo Prompt>> <$link to={{$:/palette}}><$macrocall $name="currentTiddler" $output="text/plain"/></$link>
78
+ <<lingo Prompt>>&#32;<$link to={{$:/palette}}><$macrocall $name="currentTiddler" $output="text/plain"/></$link>
79
79
 
80
80
  <$list filter="[all[current]is[shadow]is[tiddler]]" variable="listItem">
81
81
  <<lingo Prompt/Modified>>
82
+ &#32;
82
83
  <$button message="tm-delete-tiddler" param={{$:/palette}}><<lingo Reset/Caption>></$button>
83
84
  </$list>
84
85
 
@@ -9,6 +9,7 @@ $(currentTiddler)$/$(currentTab)$
9
9
  \define default-tiddler-title()
10
10
  $:/core/ui/PluginInfo/Default/$(currentTab)$
11
11
  \end
12
+ \whitespace trim
12
13
  <$transclude tiddler=<<localised-info-tiddler-title>> mode="block">
13
14
  <$transclude tiddler=<<currentTiddler>> subtiddler=<<localised-info-tiddler-title>> mode="block">
14
15
  <$transclude tiddler=<<currentTiddler>> subtiddler=<<info-tiddler-title>> mode="block">
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/PluginInfo/Default/contents
2
2
 
3
3
  \define lingo-base() $:/language/TiddlerInfo/Advanced/PluginInfo/
4
+ \whitespace trim
4
5
  <<lingo Hint>>
5
6
  <ul>
6
7
  <$list filter="[all[current]plugintiddlers[]sort[title]]" emptyMessage=<<lingo Empty/Hint>>>
@@ -2,13 +2,15 @@ title: $:/core/ui/SearchResults
2
2
 
3
3
  <div class="tc-search-results">
4
4
 
5
- <$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]" emptyMessage="""
6
- <$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]">
7
- <$transclude mode="block"/>
8
- </$list>
9
- """>
5
+ <$list
6
+ filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]"
7
+ emptyMessage="<$list filter='[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]'><$transclude mode='block'/></$list>">
10
8
 
11
- <$macrocall $name="tabs" tabsList="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]" default={{$:/config/SearchResults/Default}} actions="""<$action-setfield $tiddler="$:/state/search/currentTab" text=<<currentTab>>/>""" explicitState="$:/state/tab/search-results/sidebar"/>
9
+ <$macrocall $name="tabs"
10
+ tabsList="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]"
11
+ default={{$:/config/SearchResults/Default}}
12
+ actions="<$action-setfield $tiddler='$:/state/search/currentTab' text=<<currentTab>>/>"
13
+ explicitState="$:/state/tab/search-results/sidebar"/>
12
14
 
13
15
  </$list>
14
16
 
@@ -2,6 +2,7 @@ title: $:/core/ui/SideBar/More
2
2
  tags: $:/tags/SideBar
3
3
  caption: {{$:/language/SideBar/More/Caption}}
4
4
 
5
+ \whitespace trim
5
6
  <div class="tc-more-sidebar">
6
7
  <$macrocall $name="tabs" tabsList="[all[shadows+tiddlers]tag[$:/tags/MoreSideBar]!has[draft.of]]" default={{$:/config/DefaultMoreSidebarTab}} state="$:/state/tab/moresidebar" class="tc-vertical tc-sidebar-tabs-more" explicitState="$:/state/tab/moresidebar-1850697562"/>
7
8
  </div>
@@ -26,12 +26,12 @@ $button$
26
26
  <div class="tc-sidebar-tab-open">
27
27
  <$list filter="[list<tv-story-list>]" history=<<tv-history-list>> storyview="pop">
28
28
  <div class="tc-sidebar-tab-open-item">
29
- <$macrocall $name="droppable-item" button="""<$button message="tm-close-tiddler" tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class="tc-btn-invisible tc-btn-mini tc-small-gap-right">{{$:/core/images/close-button}}</$button><$link to={{!!title}}><$view field="title"/></$link>"""/>
29
+ <$macrocall $name="droppable-item" button="<$button message='tm-close-tiddler' tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class='tc-btn-invisible tc-btn-mini tc-small-gap-right'>{{$:/core/images/close-button}}</$button><$link to={{!!title}}><$view field='title'/></$link>"/>
30
30
  </div>
31
31
  </$list>
32
32
  <$tiddler tiddler="">
33
33
  <div>
34
- <$macrocall $name="droppable-item" button="""<$button message="tm-close-all-tiddlers" class="tc-btn-invisible tc-btn-mini"><<lingo Button>></$button>"""/>
34
+ <$macrocall $name="droppable-item" button="<$button message='tm-close-all-tiddlers' class='tc-btn-invisible tc-btn-mini'><<lingo Button>></$button>"/>
35
35
  </div>
36
36
  </$tiddler>
37
37
  </div>
@@ -51,12 +51,14 @@ tags: $:/tags/SideBarSegment
51
51
  <$keyboard key="((input-tab-right))" actions=<<set-next-input-tab>>>
52
52
  <$keyboard key="((input-tab-left))" actions=<<set-next-input-tab "before">>>
53
53
  <$keyboard key="((advanced-search-sidebar))" actions=<<advanced-search-actions>>>
54
+ <form class="tc-form-inline">
54
55
  <$macrocall $name="keyboard-driven-input" tiddler=<<editTiddler>> storeTitle=<<searchTiddler>>
55
56
  selectionStateTitle=<<searchListState>> refreshTitle="$:/temp/search/refresh" type="search"
56
57
  tag="input" focus={{$:/config/Search/AutoFocus}} focusPopup=<<qualify "$:/state/popup/search-dropdown">>
57
58
  class="tc-popup-handle" filterMinLength={{$:/config/Search/MinLength}} inputCancelActions=<<cancel-search-actions>>
58
59
  inputAcceptActions=<<input-accept-actions>> inputAcceptVariantActions=<<input-accept-variant-actions>> cancelPopups="yes"
59
60
  configTiddlerFilter="[[$:/state/search/currentTab]!is[missing]get[text]] ~[{$:/config/SearchResults/Default}]"/>
61
+ </form>
60
62
  </$keyboard>
61
63
  </$keyboard>
62
64
  </$keyboard>
@@ -1,7 +1,7 @@
1
1
  title: $:/core/ui/SideBarSegments/tabs
2
2
  tags: $:/tags/SideBarSegment
3
3
 
4
- <div class="tc-sidebar-lists tc-sidebar-tabs">
4
+ <div class="tc-sidebar-lists tc-sidebar-tabs" role="region" aria-label={{$:/language/SideBar/Caption}}>
5
5
 
6
6
  <$macrocall $name="tabs" tabsList="[all[shadows+tiddlers]tag[$:/tags/SideBar]!has[draft.of]]" default={{$:/config/DefaultSidebarTab}} state="$:/state/tab/sidebar" class="tc-sidebar-tabs-main" explicitState="$:/state/tab/sidebar--595412856"/>
7
7
 
@@ -1,5 +1,6 @@
1
1
  title: $:/core/ui/TiddlerFieldTemplate
2
2
 
3
+ \whitespace trim
3
4
  <tr class="tc-view-field">
4
5
  <td class="tc-view-field-name">
5
6
  <$text text=<<listItem>>/>
@@ -1,5 +1,6 @@
1
1
  title: $:/core/ui/TiddlerFields
2
2
 
3
+ \whitespace trim
3
4
  <table class="tc-view-field-table">
4
5
  <tbody>
5
6
  <$list filter="[all[current]fields[]sort[title]] -text" template="$:/core/ui/TiddlerFieldTemplate" variable="listItem"/>
@@ -2,6 +2,7 @@ title: $:/core/ui/TiddlerInfo/Advanced/PluginInfo
2
2
  tags: $:/tags/TiddlerInfo/Advanced
3
3
 
4
4
  \define lingo-base() $:/language/TiddlerInfo/Advanced/PluginInfo/
5
+ \whitespace trim
5
6
  <$list filter="[all[current]has[plugin-type]]">
6
7
 
7
8
  ! <<lingo Heading>>
@@ -19,6 +19,7 @@ tags: $:/tags/TiddlerInfo/Advanced
19
19
  <$list filter="[all[current]shadowsource[]]">
20
20
 
21
21
  <$set name="pluginTiddler" value=<<currentTiddler>>>
22
+
22
23
  <<lingo Shadow/Source>>
23
24
  </$set>
24
25
 
@@ -5,4 +5,5 @@ caption: {{$:/language/TiddlerInfo/Advanced/Caption}}
5
5
  <$list filter="[all[shadows+tiddlers]tag[$:/tags/TiddlerInfo/Advanced]!has[draft.of]]" variable="listItem">
6
6
 
7
7
  <$transclude tiddler=<<listItem>> mode="block"/>
8
+
8
9
  </$list>
@@ -1,5 +1,6 @@
1
1
  title: $:/core/ui/TiddlerInfo
2
2
 
3
+ \whitespace trim
3
4
  <div style="position:relative;">
4
5
  <div class="tc-tiddler-controls" style="position:absolute;right:0;">
5
6
  <$reveal state="$:/config/TiddlerInfo/Mode" type="match" text="sticky">
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/TopBar/menu
2
2
  tags: $:/tags/TopRightBar
3
3
 
4
+ \whitespace trim
4
5
  <$list filter="[[$:/state/sidebar]get[text]] +[else[yes]!match[no]]" variable="ignore">
5
6
  <$button set="$:/state/sidebar" setTo="no" tooltip={{$:/language/Buttons/HideSideBar/Hint}} aria-label={{$:/language/Buttons/HideSideBar/Caption}} class="tc-btn-invisible tc-hide-sidebar-btn">{{$:/core/images/chevron-right}}</$button>
6
7
  </$list>
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/UntaggedTemplate
2
2
 
3
3
  \define lingo-base() $:/language/SideBar/
4
+ \whitespace trim
4
5
  <$button popup=<<qualify "$:/state/popup/tag">> class="tc-btn-invisible tc-untagged-label tc-tag-label">
5
6
  <<lingo Tags/Untagged/Caption>>
6
7
  </$button>
@@ -3,6 +3,7 @@ title: $:/core/ui/ViewTemplate/body/import
3
3
  \define lingo-base() $:/language/Import/
4
4
 
5
5
  \define confirmCancel()
6
+ \whitespace trim
6
7
  <$action-confirm $message={{$:/language/Import/Listing/Cancel/Warning}} >
7
8
  <$action-deletetiddler $tiddler=<<currentTiddler>>/>
8
9
  <$action-sendmessage $message="tm-close-tiddler" title=<<currentTiddler>>/>
@@ -10,14 +11,18 @@ title: $:/core/ui/ViewTemplate/body/import
10
11
  \end
11
12
 
12
13
  \define buttons()
14
+ \whitespace trim
13
15
  <$button actions=<<confirmCancel>> ><<lingo Listing/Cancel/Caption>></$button>
16
+ &#32;
14
17
  <$button message="tm-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>
15
- <<lingo Listing/Preview>> <$select tiddler="$:/state/importpreviewtype" default="$:/core/ui/ImportPreviews/Text">
18
+ &#32;
19
+ <<lingo Listing/Preview>>&#32;<$select tiddler="$:/state/importpreviewtype" default="$:/core/ui/ImportPreviews/Text">
16
20
  <$list filter="[all[shadows+tiddlers]tag[$:/tags/ImportPreview]!has[draft.of]]">
17
21
  <option value=<<currentTiddler>>>{{!!caption}}</option>
18
22
  </$list>
19
23
  </$select>
20
24
  \end
25
+ \whitespace trim
21
26
 
22
27
  <$list filter="[all[current]field:plugin-type[import]]">
23
28
 
@@ -1,5 +1,6 @@
1
1
  title: $:/core/ui/ViewTemplate/body/plugin
2
2
 
3
+ \whitespace trim
3
4
  <div class="tc-tiddler-plugin-info">
4
5
  <$let plugin-type={{!!plugin-type}}
5
6
  default-popup-state="yes"
@@ -0,0 +1,7 @@
1
+ title: $:/core/ui/ViewTemplate/body/rendered-plain-text
2
+ code-body: yes
3
+
4
+ \whitespace trim
5
+ <$wikify name="text" text={{!!text}} type={{!!type}}>
6
+ <$codeblock code=<<text>> language="css"/>
7
+ </$wikify>
@@ -1,6 +1,8 @@
1
1
  title: $:/core/ui/ViewTemplate/body
2
2
  tags: $:/tags/ViewTemplate
3
3
 
4
+ \import [all[shadows+tiddlers]tag[$:/tags/Macro/View/Body]!has[draft.of]]
5
+
4
6
  <$reveal tag="div" class="tc-tiddler-body" type="nomatch" stateTitle=<<folded-state>> text="hide" retain="yes" animate="yes">
5
7
 
6
8
  <$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateBodyFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/body/default]] }}} />
@@ -2,6 +2,7 @@ title: $:/core/ui/ViewTemplate/classic
2
2
  tags: $:/tags/ViewTemplate $:/tags/EditTemplate
3
3
 
4
4
  \define lingo-base() $:/language/ClassicWarning/
5
+ \whitespace trim
5
6
  <$list filter="[all[current]type[text/x-tiddlywiki]]">
6
7
  <div class="tc-message-box">
7
8
 
@@ -0,0 +1,4 @@
1
+ title: $:/core/ui/ViewTemplate/subtitle/modified
2
+ tags: $:/tags/ViewTemplate/Subtitle
3
+
4
+ <$view field="modified" format="date" template={{$:/language/Tiddler/DateFormat}}/>
@@ -0,0 +1,4 @@
1
+ title: $:/core/ui/ViewTemplate/subtitle/modifier
2
+ tags: $:/tags/ViewTemplate/Subtitle
3
+
4
+ <$link to={{!!modifier}}/>
@@ -4,7 +4,11 @@ tags: $:/tags/ViewTemplate
4
4
  \whitespace trim
5
5
  <$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
6
6
  <div class="tc-subtitle">
7
- <$link to={{!!modifier}} />
8
- <$view field="modified" format="date" template={{$:/language/Tiddler/DateFormat}}/>
7
+ <$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Subtitle]!has[draft.of]]" variable="subtitleTiddler" counter="indexSubtitleTiddler">
8
+ <$list filter="[<indexSubtitleTiddler-first>match[no]]" variable="ignore">
9
+ &nbsp;
10
+ </$list>
11
+ <$transclude tiddler=<<subtitleTiddler>> mode="inline"/>
12
+ </$list>
9
13
  </div>
10
14
  </$reveal>
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/ViewTemplate/tags
2
2
  tags: $:/tags/ViewTemplate
3
3
 
4
+ \whitespace trim
4
5
  <$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
5
6
  <div class="tc-tags-wrapper"><$list filter="[all[current]tags[]sort[title]]" template="$:/core/ui/TagTemplate" storyview="pop"/></div>
6
7
  </$reveal>
@@ -12,11 +12,13 @@ fill:$(foregroundColor)$;
12
12
  </span>
13
13
  <$set name="tv-wikilinks" value={{$:/config/Tiddlers/TitleLinks}}>
14
14
  <$link>
15
+ <$list filter="[<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerIconFilter]!is[draft]get[text]] +[!is[blank]]" variable="ignore">
15
16
  <$let foregroundColor={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}>
16
17
  <span class="tc-tiddler-title-icon" style=<<title-styles>>>
17
18
  {{||$:/core/ui/TiddlerIcon}}
18
19
  </span>
19
20
  </$let>
21
+ </$list>
20
22
  <$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateTitleFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/title/default]] }}} />
21
23
  </$link>
22
24
  </$set>
@@ -1,6 +1,7 @@
1
1
  title: $:/core/ui/ViewTemplate/unfold
2
2
  tags: $:/tags/ViewTemplate
3
3
 
4
+ \whitespace trim
4
5
  <$reveal tag="div" type="nomatch" state="$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-bar" text="hide">
5
6
  <$reveal tag="div" type="nomatch" stateTitle=<<folded-state>> text="hide" default="show" retain="yes" animate="yes">
6
7
  <$button tooltip={{$:/language/Buttons/Fold/Hint}} aria-label={{$:/language/Buttons/Fold/Caption}} class="tc-fold-banner">
@@ -7,7 +7,7 @@ $:/state/folded/$(currentTiddler)$
7
7
  \define cancel-delete-tiddler-actions(message) <$action-sendmessage $message="tm-$message$-tiddler"/>
8
8
  \import [all[shadows+tiddlers]tag[$:/tags/Macro/View]!has[draft.of]]
9
9
  <$vars storyTiddler=<<currentTiddler>> tiddlerInfoState=<<qualify "$:/state/popup/tiddler-info">>>
10
- <div data-tiddler-title=<<currentTiddler>> data-tags={{!!tags}} class={{{ tc-tiddler-frame tc-tiddler-view-frame [<currentTiddler>is[tiddler]then[tc-tiddler-exists]] [<currentTiddler>is[missing]!is[shadow]then[tc-tiddler-missing]] [<currentTiddler>is[shadow]then[tc-tiddler-exists tc-tiddler-shadow]] [<currentTiddler>is[shadow]is[tiddler]then[tc-tiddler-overridden-shadow]] [<currentTiddler>is[system]then[tc-tiddler-system]] [{!!class}] [<currentTiddler>tags[]encodeuricomponent[]addprefix[tc-tagged-]] +[join[ ]] }}}>
10
+ <div data-tiddler-title=<<currentTiddler>> data-tags={{!!tags}} class={{{ tc-tiddler-frame tc-tiddler-view-frame [<currentTiddler>is[tiddler]then[tc-tiddler-exists]] [<currentTiddler>is[missing]!is[shadow]then[tc-tiddler-missing]] [<currentTiddler>is[shadow]then[tc-tiddler-exists tc-tiddler-shadow]] [<currentTiddler>is[shadow]is[tiddler]then[tc-tiddler-overridden-shadow]] [<currentTiddler>is[system]then[tc-tiddler-system]] [{!!class}] [<currentTiddler>tags[]encodeuricomponent[]addprefix[tc-tagged-]] +[join[ ]] }}} role="article">
11
11
  <$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate]!has[draft.of]]" variable="listItem">
12
12
  <$transclude tiddler=<<listItem>>/>
13
13
  </$list>
@@ -5,6 +5,7 @@ description: {{$:/language/Buttons/NewHere/Hint}}
5
5
 
6
6
  \whitespace trim
7
7
  \define newHereActions()
8
+ \whitespace trim
8
9
  <$set name="tags" filter="[<currentTiddler>] [{$:/config/NewTiddler/Tags}]">
9
10
  <$action-sendmessage $message="tm-new-tiddler" tags=<<tags>>/>
10
11
  </$set>
@@ -3,5 +3,11 @@ title: $:/snippets/allfields
3
3
  \define renderfield(title)
4
4
  <tr class="tc-view-field"><td class="tc-view-field-name">''<$text text=<<__title__>>/>'':</td><td class="tc-view-field-value">//{{$:/language/Docs/Fields/$title$}}//</td></tr>
5
5
  \end
6
- <table class="tc-view-field-table"><tbody><$list filter="[fields[]sort[title]]" variable="listItem"><$macrocall $name="renderfield" title=<<listItem>>/></$list>
7
- </tbody></table>
6
+ \whitespace trim
7
+ <table class="tc-view-field-table">
8
+ <tbody>
9
+ <$list filter="[fields[]sort[title]]" variable="listItem">
10
+ <$macrocall $name="renderfield" title=<<listItem>>/>
11
+ </$list>
12
+ </tbody>
13
+ </table>