tiddlywiki 5.2.0 → 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 (1131) hide show
  1. package/.eslintignore +5 -12
  2. package/.eslintrc.yml +17 -1
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +67 -0
  4. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  5. package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +8 -0
  6. package/.github/workflows/ci.yml +3 -0
  7. package/bin/build-site.sh +1 -1
  8. package/bin/build-tw-org.sh +97 -0
  9. package/boot/boot.js +85 -21
  10. package/boot/bootprefix.js +1 -0
  11. package/contributing.md +1 -1
  12. package/core/copyright.tid +1 -1
  13. package/core/language/en-GB/ControlPanel.multids +17 -0
  14. package/core/language/en-GB/EditTemplate.multids +1 -0
  15. package/core/language/en-GB/Fields.multids +4 -3
  16. package/core/language/en-GB/Help/default.tid +4 -1
  17. package/core/language/en-GB/Help/render.tid +2 -2
  18. package/core/language/en-GB/Misc.multids +1 -1
  19. package/core/language/en-GB/SideBar.multids +1 -0
  20. package/core/modules/commands/init.js +1 -1
  21. package/core/modules/commands/render.js +1 -1
  22. package/core/modules/commands/rendertiddler.js +1 -0
  23. package/core/modules/commands/rendertiddlers.js +1 -1
  24. package/core/modules/commands/save.js +56 -42
  25. package/core/modules/commands/savelibrarytiddlers.js +1 -1
  26. package/core/modules/commands/savewikifolder.js +1 -1
  27. package/core/modules/deserializers.js +7 -10
  28. package/core/modules/editor/engines/framed.js +4 -2
  29. package/core/modules/editor/engines/simple.js +1 -1
  30. package/core/modules/editor/factory.js +1 -1
  31. package/core/modules/editor/operations/text/focus-editor.js +17 -0
  32. package/core/modules/editor/operations/text/prefix-lines.js +2 -2
  33. package/core/modules/editor/operations/text/wrap-lines.js +29 -10
  34. package/core/modules/filterrunprefixes/cascade.js +53 -0
  35. package/core/modules/filterrunprefixes/filter.js +16 -9
  36. package/core/modules/filterrunprefixes/map.js +25 -10
  37. package/core/modules/filterrunprefixes/reduce.js +16 -18
  38. package/core/modules/filterrunprefixes/sort.js +10 -8
  39. package/core/modules/filters/crypto.js +27 -0
  40. package/core/modules/filters/insertafter.js +46 -0
  41. package/core/modules/filters/insertbefore.js +7 -2
  42. package/core/modules/filters/is/draft.js +2 -2
  43. package/core/modules/filters/listops.js +14 -1
  44. package/core/modules/filters/lookup.js +29 -6
  45. package/core/modules/filters/math.js +29 -0
  46. package/core/modules/filters/prefix.js +30 -12
  47. package/core/modules/filters/removeprefix.js +16 -6
  48. package/core/modules/filters/removesuffix.js +20 -6
  49. package/core/modules/filters/search.js +1 -0
  50. package/core/modules/filters/strings.js +11 -9
  51. package/core/modules/filters/suffix.js +32 -10
  52. package/core/modules/filters/untagged.js +1 -1
  53. package/core/modules/filters.js +23 -3
  54. package/core/modules/parsers/parseutils.js +2 -2
  55. package/core/modules/parsers/wikiparser/rules/html.js +4 -2
  56. package/core/modules/parsers/wikiparser/wikiparser.js +11 -8
  57. package/core/modules/pluginswitcher.js +1 -1
  58. package/core/modules/savers/gitea.js +2 -2
  59. package/core/modules/savers/github.js +2 -2
  60. package/core/modules/savers/gitlab.js +2 -2
  61. package/core/modules/savers/put.js +11 -7
  62. package/core/modules/savers/upload.js +1 -1
  63. package/core/modules/server/routes/put-tiddler.js +2 -2
  64. package/core/modules/server/server.js +40 -14
  65. package/core/modules/startup/browser-messaging.js +6 -4
  66. package/core/modules/startup/render.js +7 -2
  67. package/core/modules/startup/rootwidget.js +14 -0
  68. package/core/modules/startup/story.js +3 -1
  69. package/core/modules/startup/windows.js +22 -9
  70. package/core/modules/tiddler.js +3 -3
  71. package/core/modules/upgraders/plugins.js +1 -1
  72. package/core/modules/utils/crypto.js +2 -2
  73. package/core/modules/utils/dom/dom.js +51 -0
  74. package/core/modules/utils/dom/dragndrop.js +32 -14
  75. package/core/modules/utils/dom/notifier.js +2 -1
  76. package/core/modules/utils/dom/scroller.js +11 -7
  77. package/core/modules/utils/edition-info.js +1 -5
  78. package/core/modules/utils/parsetree.js +48 -11
  79. package/core/modules/utils/pluginmaker.js +2 -4
  80. package/core/modules/utils/utils.js +15 -19
  81. package/core/modules/widgets/action-listops.js +2 -2
  82. package/core/modules/widgets/action-sendmessage.js +17 -7
  83. package/core/modules/widgets/action-setfield.js +12 -14
  84. package/core/modules/widgets/action-setmultiplefields.js +86 -0
  85. package/core/modules/widgets/button.js +7 -2
  86. package/core/modules/widgets/checkbox.js +124 -15
  87. package/core/modules/widgets/codeblock.js +7 -1
  88. package/core/modules/widgets/draggable.js +49 -19
  89. package/core/modules/widgets/dropzone.js +2 -1
  90. package/core/modules/widgets/element.js +9 -3
  91. package/core/modules/widgets/eventcatcher.js +11 -33
  92. package/core/modules/widgets/image.js +14 -0
  93. package/core/modules/widgets/importvariables.js +1 -1
  94. package/core/modules/widgets/let.js +96 -0
  95. package/core/modules/widgets/link.js +2 -1
  96. package/core/modules/widgets/list.js +3 -0
  97. package/core/modules/widgets/navigator.js +2 -17
  98. package/core/modules/widgets/radio.js +2 -2
  99. package/core/modules/widgets/scrollable.js +11 -7
  100. package/core/modules/widgets/setmultiplevariables.js +81 -0
  101. package/core/modules/widgets/vars.js +2 -4
  102. package/core/modules/widgets/widget.js +58 -31
  103. package/core/modules/wiki-bulkops.js +20 -15
  104. package/core/modules/wiki.js +49 -22
  105. package/core/palettes/CupertinoDark.tid +3 -3
  106. package/core/palettes/GruvBoxDark.tid +2 -2
  107. package/core/palettes/Nord.tid +2 -2
  108. package/core/templates/save-lazy-all.tid +2 -2
  109. package/core/templates/server/static.sidebar.wikitext.tid +1 -1
  110. package/core/templates/server/static.tiddler.html.tid +2 -2
  111. package/core/templates/tiddlywiki5.html.tid +1 -1
  112. package/core/ui/Actions/new-image.tid +1 -0
  113. package/core/ui/Actions/new-journal.tid +2 -1
  114. package/core/ui/Actions/new-tiddler.tid +1 -0
  115. package/core/ui/AdvancedSearch/Filter.tid +50 -10
  116. package/core/ui/AdvancedSearch/FilterButtons/clear.tid +1 -0
  117. package/core/ui/AdvancedSearch/FilterButtons/delete.tid +1 -0
  118. package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +5 -2
  119. package/core/ui/AdvancedSearch/FilterButtons/export.tid +1 -0
  120. package/core/ui/AdvancedSearch/Shadows.tid +54 -12
  121. package/core/ui/AdvancedSearch/Standard.tid +36 -19
  122. package/core/ui/AdvancedSearch/System.tid +54 -12
  123. package/core/ui/AdvancedSearch.tid +1 -0
  124. package/core/ui/AlertTemplate.tid +10 -1
  125. package/core/ui/Components/tag-link.tid +2 -1
  126. package/core/ui/ControlPanel/Advanced.tid +1 -0
  127. package/core/ui/ControlPanel/Appearance.tid +1 -0
  128. package/core/ui/ControlPanel/Basics.tid +3 -0
  129. package/core/ui/ControlPanel/Cascades/EditTemplateBody.tid +9 -0
  130. package/core/ui/ControlPanel/Cascades/FieldEditor.tid +9 -0
  131. package/core/ui/ControlPanel/Cascades/StoryTiddler.tid +9 -0
  132. package/core/ui/ControlPanel/Cascades/TiddlerColour.tid +9 -0
  133. package/core/ui/ControlPanel/Cascades/TiddlerIcon.tid +9 -0
  134. package/core/ui/ControlPanel/Cascades/ViewTemplateBody.tid +9 -0
  135. package/core/ui/ControlPanel/Cascades/ViewTemplateTitle.tid +9 -0
  136. package/core/ui/ControlPanel/Cascades.tid +10 -0
  137. package/core/ui/ControlPanel/EditorTypes.tid +1 -0
  138. package/core/ui/ControlPanel/Info.tid +1 -0
  139. package/core/ui/ControlPanel/KeyboardShortcuts.tid +18 -7
  140. package/core/ui/ControlPanel/Modals/AddPlugins.tid +26 -9
  141. package/core/ui/ControlPanel/Parsing.tid +3 -0
  142. package/core/ui/ControlPanel/Plugins/Add/Updates.tid +5 -1
  143. package/core/ui/ControlPanel/Plugins/AddPlugins.tid +4 -1
  144. package/core/ui/ControlPanel/Plugins.tid +1 -0
  145. package/core/ui/ControlPanel/Saving/TiddlySpot.tid +2 -1
  146. package/core/ui/ControlPanel/Saving.tid +1 -0
  147. package/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab.tid +1 -0
  148. package/core/ui/ControlPanel/Settings/DefaultSidebarTab.tid +1 -0
  149. package/core/ui/ControlPanel/Settings/LinkToBehaviour.tid +1 -0
  150. package/core/ui/ControlPanel/Settings/ToolbarButtonStyle.tid +1 -0
  151. package/core/ui/ControlPanel/Toolbars/EditorItemTemplate.tid +8 -1
  152. package/core/ui/ControlPanel/Toolbars/ItemTemplate.tid +11 -1
  153. package/core/ui/ControlPanel/Toolbars.tid +1 -0
  154. package/core/ui/ControlPanel.tid +1 -0
  155. package/core/ui/DefaultSearchResultList.tid +1 -0
  156. package/core/ui/EditTemplate/Preview/output.tid +1 -1
  157. package/core/ui/EditTemplate/body/canonical-uri.tid +13 -0
  158. package/core/ui/EditTemplate/body/default.tid +41 -0
  159. package/core/ui/EditTemplate/body-editor.tid +2 -0
  160. package/core/ui/EditTemplate/body.tid +1 -51
  161. package/core/ui/EditTemplate/controls.tid +1 -0
  162. package/core/ui/EditTemplate/fieldEditor-default.tid +3 -0
  163. package/core/ui/EditTemplate/fields.tid +19 -10
  164. package/core/ui/EditTemplate/shadow.tid +2 -0
  165. package/core/ui/EditTemplate/tags.tid +1 -1
  166. package/core/ui/EditTemplate/title.tid +10 -5
  167. package/core/ui/EditTemplate/type.tid +1 -1
  168. package/core/ui/EditTemplate.tid +30 -6
  169. package/core/ui/EditorToolbar/editor-height.tid +1 -0
  170. package/core/ui/EditorToolbar/excise-dropdown.tid +5 -4
  171. package/core/ui/EditorToolbar/file-import.tid +4 -0
  172. package/core/ui/EditorToolbar/link-dropdown.tid +10 -5
  173. package/core/ui/EditorToolbar/more-dropdown.tid +5 -1
  174. package/core/ui/EditorToolbar/paint.tid +1 -0
  175. package/core/ui/EditorToolbar/preview.tid +5 -4
  176. package/core/ui/EditorToolbar/size-dropdown.tid +6 -1
  177. package/core/ui/ExportTiddlyWikiCore.tid +15 -5
  178. package/core/ui/ImportListing.tid +23 -5
  179. package/core/ui/ImportPreviews/Fields.tid +1 -0
  180. package/core/ui/KeyboardShortcuts/advanced-search.tid +1 -0
  181. package/core/ui/KeyboardShortcuts/change-sidebar-layout.tid +4 -2
  182. package/core/ui/KeyboardShortcuts/new-image.tid +1 -0
  183. package/core/ui/KeyboardShortcuts/new-journal.tid +1 -0
  184. package/core/ui/KeyboardShortcuts/new-tiddler.tid +1 -0
  185. package/core/ui/KeyboardShortcuts/save-wiki.tid +1 -0
  186. package/core/ui/KeyboardShortcuts/toggle-sidebar.tid +4 -3
  187. package/core/ui/LayoutSwitcher.tid +16 -4
  188. package/core/ui/ListItemTemplate.tid +1 -3
  189. package/core/ui/ListTaggedCascade.tid +15 -0
  190. package/core/ui/Manager/ItemMainFields.tid +1 -0
  191. package/core/ui/Manager/ItemSidebarColour.tid +4 -1
  192. package/core/ui/Manager/ItemSidebarIcon.tid +4 -4
  193. package/core/ui/Manager/ItemSidebarTools.tid +7 -2
  194. package/core/ui/Manager.tid +11 -6
  195. package/core/ui/MissingTemplate.tid +1 -0
  196. package/core/ui/MoreSideBar/Types.tid +1 -0
  197. package/core/ui/MoreSideBar/plugins/Languages.tid +1 -1
  198. package/core/ui/MoreSideBar/plugins/Plugins.tid +1 -1
  199. package/core/ui/MoreSideBar/plugins/Theme.tid +1 -1
  200. package/core/ui/PageControls/controlpanel.tid +1 -1
  201. package/core/ui/PageStylesheet.tid +1 -0
  202. package/core/ui/PageTemplate/story.tid +2 -2
  203. package/core/ui/PaletteManager.tid +11 -10
  204. package/core/ui/PluginInfo.tid +1 -0
  205. package/core/ui/PluginInfoDefaultContents.tid +1 -0
  206. package/core/ui/PluginListItemTemplate.tid +13 -3
  207. package/core/ui/SearchResults.tid +8 -6
  208. package/core/ui/SideBar/More.tid +1 -0
  209. package/core/ui/SideBar/Open.tid +4 -4
  210. package/core/ui/SideBarSegments/search.tid +2 -0
  211. package/core/ui/SideBarSegments/tabs.tid +1 -1
  212. package/core/ui/StoryTiddlerTemplate.tid +3 -0
  213. package/core/ui/TagPickerTagTemplate.tid +3 -3
  214. package/core/ui/TagTemplate.tid +1 -1
  215. package/core/ui/TiddlerFieldTemplate.tid +1 -0
  216. package/core/ui/TiddlerFields.tid +1 -0
  217. package/core/ui/TiddlerIcon.tid +8 -0
  218. package/core/ui/TiddlerInfo/Advanced/PluginInfo.tid +1 -0
  219. package/core/ui/TiddlerInfo/Advanced/ShadowInfo.tid +1 -0
  220. package/core/ui/TiddlerInfo/Advanced.tid +1 -0
  221. package/core/ui/TiddlerInfo.tid +1 -0
  222. package/core/ui/TopRightBar/menu.tid +1 -0
  223. package/core/ui/UntaggedTemplate.tid +1 -0
  224. package/core/ui/ViewTemplate/body/blank.tid +3 -0
  225. package/core/ui/ViewTemplate/body/code.tid +3 -0
  226. package/core/ui/ViewTemplate/body/default.tid +7 -0
  227. package/core/ui/ViewTemplate/{import.tid → body/import.tid} +7 -3
  228. package/core/ui/ViewTemplate/body/plugin.tid +11 -0
  229. package/core/ui/ViewTemplate/body/rendered-plain-text.tid +7 -0
  230. package/core/ui/ViewTemplate/body.tid +3 -9
  231. package/core/ui/ViewTemplate/classic.tid +1 -0
  232. package/core/ui/ViewTemplate/subtitle/modified.tid +4 -0
  233. package/core/ui/ViewTemplate/subtitle/modifier.tid +4 -0
  234. package/core/ui/ViewTemplate/subtitle.tid +6 -2
  235. package/core/ui/ViewTemplate/tags.tid +1 -0
  236. package/core/ui/ViewTemplate/title/default.tid +6 -0
  237. package/core/ui/ViewTemplate/title/system.tid +6 -0
  238. package/core/ui/ViewTemplate/title.tid +5 -16
  239. package/core/ui/ViewTemplate/unfold.tid +1 -0
  240. package/core/ui/ViewTemplate.tid +1 -1
  241. package/core/ui/ViewToolbar/new-here.tid +1 -0
  242. package/core/wiki/allfields.tid +9 -3
  243. package/core/wiki/config/EditTemplateBodyFilters.multids +5 -0
  244. package/core/wiki/config/FieldEditorFilters.multids +4 -0
  245. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  246. package/core/wiki/config/StoryTiddlerTemplateFilters.multids +5 -0
  247. package/core/wiki/config/TiddlerColourFilters.multids +5 -0
  248. package/core/wiki/config/TiddlerIconFilters.multids +5 -0
  249. package/core/wiki/config/ViewTemplateBodyFilters.multids +10 -0
  250. package/core/wiki/config/ViewTemplateTitleFilters.multids +5 -0
  251. package/core/wiki/currpalettepreview.tid +7 -2
  252. package/core/wiki/debugstylesheets.tid +10 -0
  253. package/core/wiki/download-wiki-button.tid +2 -1
  254. package/core/wiki/languageswitcher.tid +2 -0
  255. package/core/wiki/macros/colour-picker.tid +9 -2
  256. package/core/wiki/macros/copy-to-clipboard.tid +5 -2
  257. package/core/wiki/macros/diff.tid +4 -3
  258. package/core/wiki/macros/dumpvariables.tid +1 -0
  259. package/core/wiki/macros/image-picker.tid +5 -4
  260. package/core/wiki/macros/keyboard-driven-input.tid +22 -12
  261. package/core/wiki/macros/list.tid +9 -4
  262. package/core/wiki/macros/tabs.tid +55 -30
  263. package/core/wiki/macros/tag-picker.tid +14 -13
  264. package/core/wiki/macros/tag.tid +13 -6
  265. package/core/wiki/macros/thumbnails.tid +21 -9
  266. package/core/wiki/macros/timeline.tid +1 -0
  267. package/core/wiki/macros/toc.tid +19 -8
  268. package/core/wiki/macros/translink.tid +1 -0
  269. package/core/wiki/macros/tree.tid +8 -3
  270. package/core/wiki/minifocusswitcher.tid +1 -0
  271. package/core/wiki/minilanguageswitcher.tid +1 -0
  272. package/core/wiki/minithemeswitcher.tid +2 -1
  273. package/core/wiki/modules.tid +1 -0
  274. package/core/wiki/palettepreview.tid +1 -0
  275. package/core/wiki/paletteswitcher.tid +13 -2
  276. package/core/wiki/peek-stylesheets.tid +4 -5
  277. package/core/wiki/tags/EditTemplateBodyFilter.tid +2 -0
  278. package/core/wiki/tags/StoryTiddlerTemplateFilter.tid +2 -0
  279. package/core/wiki/tags/TiddlerColourFilter.tid +3 -0
  280. package/core/wiki/tags/TiddlerIconFilter.tid +3 -0
  281. package/core/wiki/tags/ViewTemplateBodyFilter.tid +3 -0
  282. package/core/wiki/tags/ViewTemplateSubtitle.tid +2 -0
  283. package/core/wiki/tags/ViewTemplateTitleFilter.tid +3 -0
  284. package/core/wiki/themeswitcher.tid +10 -1
  285. package/core/wiki/title.tid +2 -1
  286. package/core/wiki/viewswitcher.tid +1 -0
  287. package/editions/de-AT/tiddlers/howto/TiddlyWiki und TiddlyDesktop.tid +1 -1
  288. package/editions/dev/tiddlers/_tw_shared/tiddlywiki.files +5 -0
  289. package/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid +2 -2
  290. package/editions/dev/tiddlers/system/github-fork-ribbon.tid +1 -1
  291. package/editions/dev/tiddlywiki.info +1 -1
  292. package/editions/dynaviewdemo/tiddlers/SideBar-Open.tid +1 -1
  293. package/editions/es-ES/tiddlers/TiddlyDesktop.tid +2 -2
  294. package/editions/fr-FR/output/images/Blurry%20Lawn.jpg +0 -0
  295. package/editions/fr-FR/output/images/Newnham%20Horizon.jpg +0 -0
  296. package/editions/fr-FR/output/index.html +5051 -0
  297. package/editions/fr-FR/output/text/Alice%20in%20Wonderland.tid +3709 -0
  298. package/editions/fr-FR/tiddlers/$ _config_ViewTemplateTitleFilters_fr-default.tid +7 -0
  299. package/editions/fr-FR/tiddlers/$ _core_ui_ViewTemplate_title_fr-default.tid +8 -0
  300. package/editions/fr-FR/tiddlers/$__deprecated.tid +9 -0
  301. package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +69 -5
  302. package/editions/fr-FR/tiddlers/$__editions_tw5.com_version-macros.tid +15 -0
  303. package/editions/fr-FR/tiddlers/CamelCase.tid +6 -3
  304. package/editions/fr-FR/tiddlers/Community Links Aggregator.tid +11 -0
  305. package/editions/fr-FR/tiddlers/Community.tid +6 -4
  306. package/editions/fr-FR/tiddlers/Creating and editing tiddlers.tid +11 -11
  307. package/editions/fr-FR/tiddlers/Deprecated - What does it mean.tid +17 -0
  308. package/editions/fr-FR/tiddlers/Developers.tid +10 -5
  309. package/editions/fr-FR/tiddlers/Federatial.tid +11 -0
  310. package/editions/fr-FR/tiddlers/Forums.tid +27 -13
  311. package/editions/fr-FR/tiddlers/GettingStarted.tid +16 -14
  312. package/editions/fr-FR/tiddlers/Glossaire en-GB -_ fr-FR.tid +4 -1
  313. package/editions/fr-FR/tiddlers/HTML in WikiText.tid +77 -28
  314. package/editions/fr-FR/tiddlers/HelloThere.tid +15 -12
  315. package/editions/fr-FR/tiddlers/HelloThumbnail - Latest Version.tid +1 -1
  316. package/editions/fr-FR/tiddlers/How to export tiddlers.tid +31 -0
  317. package/editions/fr-FR/tiddlers/ImageWidget.tid +33 -0
  318. package/editions/fr-FR/tiddlers/Images in WikiText.tid +69 -0
  319. package/editions/fr-FR/tiddlers/Importing Tiddlers.tid +26 -0
  320. package/editions/fr-FR/tiddlers/JeremyRuston.tid +9 -9
  321. package/editions/fr-FR/tiddlers/Linking in WikiText.tid +108 -19
  322. package/editions/fr-FR/tiddlers/ListField.tid +6 -6
  323. package/editions/fr-FR/tiddlers/Macros in WikiText.tid +5 -5
  324. package/editions/fr-FR/tiddlers/Macros.tid +17 -8
  325. package/editions/fr-FR/tiddlers/PermaLinks.tid +19 -19
  326. package/editions/fr-FR/tiddlers/Philosophy of Tiddlers.tid +2 -2
  327. package/editions/fr-FR/tiddlers/Share Plugin.tid +15 -0
  328. package/editions/fr-FR/tiddlers/{Sharing_a_TiddlyWiki_on_Dropbox.tid → Sharing a TiddlyWiki on Dropbox.tid } +12 -4
  329. package/editions/fr-FR/tiddlers/Sharing your tiddlers with others.tid +18 -0
  330. package/editions/fr-FR/tiddlers/Structuring TiddlyWiki.tid +6 -6
  331. package/editions/fr-FR/tiddlers/Styles and Classes in WikiText.tid +11 -10
  332. package/editions/fr-FR/tiddlers/Tagging.tid +24 -18
  333. package/editions/fr-FR/tiddlers/TaskManagementExample.tid +3 -1
  334. package/editions/fr-FR/tiddlers/TiddlerLinks.tid +5 -5
  335. package/editions/fr-FR/tiddlers/TiddlyFox Apocalypse.tid +46 -0
  336. package/editions/fr-FR/tiddlers/TiddlyFox.tid +6 -3
  337. package/editions/fr-FR/tiddlers/TiddlyWiki.tid +6 -4
  338. package/editions/fr-FR/tiddlers/_TiddlyWiki for Scholars_ by Alberto Molina.tid +2 -2
  339. package/editions/fr-FR/tiddlers/community/editions/_Noteself_ by Danielo Rodr/303/255guez.tid" +34 -0
  340. package/editions/fr-FR/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +28 -0
  341. package/editions/fr-FR/tiddlers/community/resources/TiddlyDrive Add-on for Google Drive by Joshua Stubbs.tid +24 -0
  342. package/editions/fr-FR/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +35 -0
  343. package/editions/fr-FR/tiddlers/community/resources/Twexe_ Single File Tiddlywiki5 executable.tid +30 -0
  344. package/editions/fr-FR/tiddlers/community/resources/_Timimi_ Extension and executable by Riz.tid +33 -0
  345. package/editions/fr-FR/tiddlers/community/resources/_file-backups_ Extension for Firefox by pmario.tid +19 -0
  346. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +17 -0
  347. package/editions/fr-FR/tiddlers/concepts/Pragma.tid +23 -0
  348. package/editions/fr-FR/tiddlers/{WikiText.tid → concepts/WikiText.tid} +6 -4
  349. package/editions/fr-FR/tiddlers/definitions/TiddlyDesktop.tid +19 -0
  350. package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +11 -0
  351. package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Safari.tid +12 -0
  352. package/editions/fr-FR/tiddlers/{A_Gentle_Guide_to_TiddlyWiki.tid → hellothere/A Gentle Guide to TiddlyWiki.tid } +6 -4
  353. package/editions/fr-FR/tiddlers/howtos/How to Customize TiddlyDesktop.tid +33 -0
  354. package/editions/fr-FR/tiddlers/howtos/Windows HTA Hack.tid +17 -0
  355. package/editions/fr-FR/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +49 -0
  356. package/editions/fr-FR/tiddlers/nodejs/Serving TW5 from Android.tid +47 -0
  357. package/editions/fr-FR/tiddlers/nodejs/TiddlyWiki on Node.js.tid +18 -0
  358. package/editions/fr-FR/tiddlers/saving/Emergency Tiddler Export.tid +28 -0
  359. package/editions/fr-FR/tiddlers/saving/Example config-tiddlyweb-host for IIS.tid +9 -0
  360. package/editions/fr-FR/tiddlers/saving/Example package.json for IIS.tid +15 -0
  361. package/editions/fr-FR/tiddlers/saving/Example tiddlywiki.info for IIS.tid +18 -0
  362. package/editions/fr-FR/tiddlers/saving/Example web.config for IIS.tid +32 -0
  363. package/editions/fr-FR/tiddlers/saving/Installing TiddlyWiki on Microsoft Internet Information Server.tid +69 -0
  364. package/editions/fr-FR/tiddlers/saving/Saving on Android.tid +36 -0
  365. package/editions/fr-FR/tiddlers/saving/Saving on Beaker Browser.tid +35 -0
  366. package/editions/fr-FR/tiddlers/saving/Saving on Browser with File System Access API.tid +20 -0
  367. package/editions/fr-FR/tiddlers/saving/Saving on TidGi Desktop.tid +28 -0
  368. package/editions/fr-FR/tiddlers/saving/Saving on TiddlyDesktop.tid +20 -0
  369. package/editions/fr-FR/tiddlers/saving/Saving on TiddlyHost.tid +18 -0
  370. package/editions/fr-FR/tiddlers/{Saving on TiddlySpot.tid → saving/Saving on TiddlySpot.tid } +14 -3
  371. package/editions/fr-FR/tiddlers/saving/Saving on a PHP Server.tid +45 -0
  372. package/editions/fr-FR/tiddlers/saving/Saving on iPad_iPhone.tid +30 -0
  373. package/editions/fr-FR/tiddlers/saving/Saving to a Git service.tid +26 -0
  374. package/editions/fr-FR/tiddlers/saving/Saving via WebDAV.tid +88 -0
  375. package/editions/fr-FR/tiddlers/saving/Saving via a Minimal Ruby Server.tid +20 -0
  376. package/editions/fr-FR/tiddlers/saving/Saving with Polly.tid +30 -0
  377. package/editions/fr-FR/tiddlers/saving/Saving with TW Receiver.tid +16 -0
  378. package/editions/fr-FR/tiddlers/{Saving with TiddlyFox on Android.tid → saving/Saving with TiddlyFox on Android.tid } +5 -5
  379. package/editions/fr-FR/tiddlers/saving/Saving with TiddlyFox.tid +31 -0
  380. package/editions/fr-FR/tiddlers/saving/Saving with TiddlyIE.tid +25 -0
  381. package/editions/fr-FR/tiddlers/{Saving with the HTML5 fallback saver.tid → saving/Saving with the HTML5 fallback saver.tid } +11 -6
  382. package/editions/fr-FR/tiddlers/saving/Saving.tid +67 -0
  383. package/editions/fr-FR/tiddlers/saving/TiddlyWiki Cloud.tid +17 -0
  384. package/editions/fr-FR/tiddlers/system/$__core_ui_SideBar_Open.tid +40 -0
  385. package/editions/fr-FR/tiddlers/{$__editions_fr-FR_util-macros.tid → system/$__editions_fr-FR_util-macros.tid} +4 -3
  386. package/editions/fr-FR/tiddlers/system/$__editions_tw5.com_wikitext-macros.tid +68 -0
  387. package/editions/fr-FR/tiddlers/system/tw5.com-card-template.tid +17 -0
  388. package/editions/fr-FR/tiddlers/tiddlydesktop/TiddlyDesktop_Releases.tid +9 -0
  389. package/editions/fr-FR/tiddlers/widgets/TranscludeWidget.tid +72 -0
  390. package/editions/fr-FR/tiddlers/{Block_Quotes_in_WikiText.tid → wikitext/Block Quotes in WikiText.tid } +17 -9
  391. package/editions/fr-FR/tiddlers/wikitext/Code Blocks in WikiText.tid +44 -0
  392. package/editions/fr-FR/tiddlers/{Dashes in WikiText.tid → wikitext/Dashes in WikiText.tid } +3 -3
  393. package/editions/fr-FR/tiddlers/{Definitions_in_WikiText.tid → wikitext/Definitions in WikiText.tid } +2 -2
  394. package/editions/fr-FR/tiddlers/wikitext/Formatting in WikiText.tid +22 -0
  395. package/editions/fr-FR/tiddlers/{Hard Linebreaks in WikiText.tid → wikitext/Hard Linebreaks in WikiText.tid } +6 -5
  396. package/editions/fr-FR/tiddlers/{Headings in WikiText.tid → wikitext/Headings in WikiText.tid } +5 -5
  397. package/editions/fr-FR/tiddlers/wikitext/Horizontal Rules in WikiText.tid +17 -0
  398. package/editions/fr-FR/tiddlers/{Lists_in_WikiText.tid → wikitext/Lists in WikiText.tid } +19 -19
  399. package/editions/fr-FR/tiddlers/wikitext/Macro Calls in WikiText.tid +27 -0
  400. package/editions/fr-FR/tiddlers/{Paragraphs in WikiText.tid → wikitext/Paragraphs in WikiText.tid } +8 -7
  401. package/editions/fr-FR/tiddlers/wikitext/Tables in WikiText.tid +69 -0
  402. package/editions/fr-FR/tiddlers/wikitext/Transclusion and Substitution.tid +61 -0
  403. package/editions/fr-FR/tiddlers/{Transclusion_in_WikiText.tid → wikitext/Transclusion in WikiText.tid } +14 -13
  404. package/editions/fr-FR/tiddlers/{Transclusion_with_Templates.tid → wikitext/Transclusion with Templates.tid } +2 -1
  405. package/editions/fr-FR/tiddlers/{Typed_Blocks_in_WikiText.tid → wikitext/Typed Blocks in WikiText.tid } +16 -11
  406. package/editions/fr-FR/tiddlers/{Variables_in_WikiText.tid → wikitext/Variables in WikiText.tid } +7 -8
  407. package/editions/fr-FR/tiddlers/wikitext/Widgets in WikiText.tid +30 -0
  408. package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText (Examples).tid +52 -0
  409. package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText.tid +37 -0
  410. package/editions/fr-FR/tiddlers/wikitext/parser/Inline Mode WikiText.tid +28 -0
  411. package/editions/fr-FR/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +14 -0
  412. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText Parser Modes.tid +17 -0
  413. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode HTML examples.tid +73 -0
  414. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode transitions.tid +59 -0
  415. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ macro examples.tid +56 -0
  416. package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +56 -0
  417. package/editions/fr-FR/tiddlers/wikitext/parser/table-example.tid +8 -0
  418. package/editions/katexdemo/tiddlers/$__DefaultTiddlers.tid +8 -0
  419. package/editions/katexdemo/tiddlers/HelloThere.tid +4 -1
  420. package/editions/katexdemo/tiddlers/LaTeX.tid +8 -0
  421. package/editions/katexdemo/tiddlers/TiddlyWiki.tid +8 -0
  422. package/editions/katexdemo/tiddlers/TiddlyWiki5.tid +6 -0
  423. package/editions/prerelease/tiddlers/Release 5.2.4.tid +59 -0
  424. package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
  425. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  426. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +4 -1
  427. package/editions/prerelease/tiddlers/system/download-empty.tid +1 -0
  428. package/editions/prerelease/tiddlywiki.info +0 -2
  429. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal-all.tid +5 -0
  430. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal.tid +5 -0
  431. package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-vertical.tid +5 -0
  432. package/editions/test/tiddlers/tests/test-action-widgets.js +98 -0
  433. package/editions/test/tiddlers/tests/test-checkbox-widget.js +507 -0
  434. package/editions/test/tiddlers/tests/test-filters.js +277 -65
  435. package/editions/test/tiddlers/tests/test-html-parser.js +32 -11
  436. package/editions/test/tiddlers/tests/test-prefixes-filter.js +57 -5
  437. package/editions/test/tiddlers/tests/test-tags.js +19 -0
  438. package/editions/test/tiddlers/tests/test-utils.js +16 -0
  439. package/editions/test/tiddlers/tests/test-widget.js +36 -1
  440. package/editions/test/tiddlers/tests/test-wikitext-parser.js +44 -31
  441. package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +87 -0
  442. package/editions/test/tiddlers/tests/test-wikitext.js +8 -1
  443. package/editions/translators/tiddlywiki.info +7 -1
  444. package/editions/tw.org/tiddlers/$__DefaultTiddlers.tid +6 -0
  445. package/editions/tw.org/tiddlers/$__SiteSubtitle.tid +6 -0
  446. package/editions/tw.org/tiddlers/$__SiteTitle.tid +6 -0
  447. package/editions/tw.org/tiddlers/$__StoryList.tid +3 -0
  448. package/editions/tw.org/tiddlers/$__config_DefaultSidebarTab.tid +6 -0
  449. package/editions/tw.org/tiddlers/$__core_templates_static.content.tid +18 -0
  450. package/editions/tw.org/tiddlers/$__favicon.ico.png +0 -0
  451. package/editions/tw.org/tiddlers/$__favicon.ico.png.meta +4 -0
  452. package/editions/tw.org/tiddlers/$__palette.tid +6 -0
  453. package/editions/tw.org/tiddlers/$__palettes_BlueFlavour +165 -0
  454. package/editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta +8 -0
  455. package/editions/tw.org/tiddlers/$__palettes_FlowingSun +165 -0
  456. package/editions/tw.org/tiddlers/$__palettes_FlowingSun.meta +8 -0
  457. package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid +6 -0
  458. package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid +6 -0
  459. package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid +6 -0
  460. package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +6 -0
  461. package/editions/tw.org/tiddlers/Code of Conduct.tid +30 -0
  462. package/editions/tw.org/tiddlers/Fundraising.tid +23 -0
  463. package/editions/tw.org/tiddlers/HelloThere.tid +15 -0
  464. package/editions/tw.org/tiddlers/Table of Contents.tid +12 -0
  465. package/editions/tw.org/tiddlers/TiddlyWiki.tid +8 -0
  466. package/editions/tw.org/tiddlers/_tw_shared/tiddlywiki.files +5 -0
  467. package/editions/tw.org/tiddlywiki.info +30 -0
  468. package/editions/tw5.com/tiddlers/$__StoryList.tid +3 -3
  469. package/editions/tw5.com/tiddlers/Brackets.tid +14 -0
  470. package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg +0 -0
  471. package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg.meta +1 -1
  472. package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico +0 -0
  473. package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico.meta +3 -0
  474. package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico +0 -0
  475. package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico.meta +3 -0
  476. package/editions/tw5.com/tiddlers/_tw_shared/favicons/talk.tiddlywiki.org.svg +6 -0
  477. package/editions/tw5.com/tiddlers/_tw_shared/favicons/talk.tiddlywiki.org.svg.meta +3 -0
  478. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico +0 -0
  479. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico.meta +3 -0
  480. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico +0 -0
  481. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico.meta +3 -0
  482. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico +0 -0
  483. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico.meta +3 -0
  484. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico +0 -0
  485. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico.meta +3 -0
  486. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico +0 -0
  487. package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico.meta +3 -0
  488. package/editions/tw5.com/tiddlers/_tw_shared/sites/classic.tiddlywiki.com.tid +6 -0
  489. package/editions/tw5.com/tiddlers/_tw_shared/sites/links.tiddlywiki.org.tid +6 -0
  490. package/editions/tw5.com/tiddlers/_tw_shared/sites/talk.tiddlywiki.org.tid +6 -0
  491. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.dev.tid +6 -0
  492. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.prerelease.tid +6 -0
  493. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.tid +6 -0
  494. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.upgrade.tid +6 -0
  495. package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.org.tid +6 -0
  496. package/editions/tw5.com/tiddlers/_tw_shared/sites.tid +32 -0
  497. package/editions/tw5.com/tiddlers/_tw_shared/styles.tid +48 -0
  498. package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +3 -0
  499. package/editions/tw5.com/tiddlers/{License.tid → about/License.tid} +0 -0
  500. package/editions/tw5.com/tiddlers/commands/NamedCommandParameters.tid +2 -2
  501. package/editions/tw5.com/tiddlers/community/Community Links Aggregator.tid +1 -1
  502. package/editions/tw5.com/tiddlers/community/Contributing.tid +3 -2
  503. package/editions/tw5.com/tiddlers/community/Contributor License Agreement.tid +3 -3
  504. package/editions/tw5.com/tiddlers/community/Forums.tid +16 -13
  505. package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
  506. package/editions/tw5.com/tiddlers/community/TW Icons by morosanuae.tid +2 -2
  507. package/editions/tw5.com/tiddlers/community/TiddlyWiki Hangouts.tid +2 -2
  508. package/editions/tw5.com/tiddlers/community/editions/TiddlyMemo by oflg.tid +16 -0
  509. package/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid +2 -2
  510. package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +2 -2
  511. package/editions/tw5.com/tiddlers/community/plugins/Encrypt single tiddler plugin.tid +2 -2
  512. package/editions/tw5.com/tiddlers/community/plugins/TiddlyClip by buggyjay.tid +3 -3
  513. package/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid +2 -2
  514. package/editions/tw5.com/tiddlers/community/resources/Projectify by Nicolas Petton.tid +6 -4
  515. package/editions/tw5.com/tiddlers/community/resources/TW5 Magick.tid +2 -2
  516. package/editions/tw5.com/tiddlers/community/resources/_Dynamic Tables_ by Jed Carty.tid +2 -2
  517. package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +5 -3
  518. package/editions/tw5.com/tiddlers/community/resources/_muritest_ by Simon Huber.tid +2 -2
  519. package/editions/tw5.com/tiddlers/concepts/Cascades.tid +48 -0
  520. package/editions/tw5.com/tiddlers/concepts/Concepts.tid +5 -3
  521. package/editions/tw5.com/tiddlers/concepts/Customizing EditTemplate Field Rendering.tid +47 -0
  522. package/editions/tw5.com/tiddlers/concepts/DataTiddlers.tid +4 -21
  523. package/editions/tw5.com/tiddlers/concepts/DictionaryTiddlers.tid +3 -2
  524. package/editions/tw5.com/tiddlers/concepts/Edit Template Body Cascade.tid +16 -0
  525. package/editions/tw5.com/tiddlers/concepts/Field Editor Cascade.tid +17 -0
  526. package/editions/tw5.com/tiddlers/concepts/Filters.tid +15 -10
  527. package/editions/tw5.com/tiddlers/concepts/JSONTiddlers.tid +4 -3
  528. package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +7 -0
  529. package/editions/tw5.com/tiddlers/concepts/Macros.tid +6 -4
  530. package/editions/tw5.com/tiddlers/concepts/Messages.tid +2 -2
  531. package/editions/tw5.com/tiddlers/concepts/ModuleType.tid +2 -2
  532. package/editions/tw5.com/tiddlers/concepts/Order of Tagged Tiddlers.tid +3 -1
  533. package/editions/tw5.com/tiddlers/concepts/Pragma.tid +2 -2
  534. package/editions/tw5.com/tiddlers/concepts/Railroad Diagrams.tid +2 -1
  535. package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template Cascade.tid +16 -0
  536. package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template.tid +13 -0
  537. package/editions/tw5.com/tiddlers/concepts/SystemTags.tid +1 -1
  538. package/editions/tw5.com/tiddlers/concepts/TagTiddlers.tid +1 -1
  539. package/editions/tw5.com/tiddlers/concepts/Tiddler Colour Cascade.tid +16 -0
  540. package/editions/tw5.com/tiddlers/concepts/Tiddler Icon Cascade.tid +16 -0
  541. package/editions/tw5.com/tiddlers/concepts/TiddlerFields.tid +2 -1
  542. package/editions/tw5.com/tiddlers/concepts/TiddlyWiki5.tid +4 -2
  543. package/editions/tw5.com/tiddlers/concepts/Title List.tid +4 -1
  544. package/editions/tw5.com/tiddlers/concepts/View Template Body Cascade.tid +19 -0
  545. package/editions/tw5.com/tiddlers/concepts/View Template Title Cascade.tid +16 -0
  546. package/editions/tw5.com/tiddlers/customising/Alternative page layouts.tid +1 -1
  547. package/editions/tw5.com/tiddlers/customising/Creating new toolbar buttons.tid +35 -0
  548. package/editions/tw5.com/tiddlers/customising/Customise TiddlyWiki.tid +3 -3
  549. package/editions/tw5.com/tiddlers/customising/Customising TiddlyWiki's user interface.tid +75 -0
  550. package/editions/tw5.com/tiddlers/definitions/BT.tid +3 -2
  551. package/editions/tw5.com/tiddlers/definitions/JavaScript Object Notation.tid +2 -6
  552. package/editions/tw5.com/tiddlers/definitions/MathML.tid +2 -2
  553. package/editions/tw5.com/tiddlers/definitions/Node.js.tid +5 -3
  554. package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +3 -2
  555. package/editions/tw5.com/tiddlers/definitions/TiddlyDesktop.tid +1 -1
  556. package/editions/tw5.com/tiddlers/definitions/TiddlyWeb.tid +1 -0
  557. package/editions/tw5.com/tiddlers/definitions/node-webkit.tid +2 -1
  558. package/editions/tw5.com/tiddlers/demonstrations/Alice in Wonderland.tid +1 -1
  559. package/editions/tw5.com/tiddlers/demonstrations/Apple.tid +7 -2
  560. package/editions/tw5.com/tiddlers/demonstrations/Caruso - Ave Maria.tid +1 -0
  561. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Demo Tiddler List with Custom Story Tiddler Template.tid +10 -0
  562. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Styles.tid +31 -0
  563. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Template.tid +26 -0
  564. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/TiddlerTemplateFilter.tid +6 -0
  565. package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerColourCascadeDemo/CustomTiddlerColourCascadeDemo.tid +9 -0
  566. package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerIconCascadeDemo/CustomTiddlerIconCascadeDemo.tid +9 -0
  567. package/editions/tw5.com/tiddlers/demonstrations/ImageGallery Example.tid +5 -16
  568. package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/Demonstration_ keyboard-driven-input Macro.tid +2 -2
  569. package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/kdi-demo-configtid.tid +4 -3
  570. package/editions/tw5.com/tiddlers/demonstrations/SampleNotification.tid +2 -1
  571. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +3 -1
  572. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +3 -1
  573. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerThird.tid +3 -1
  574. package/editions/tw5.com/tiddlers/demonstrations/SampleWizard.tid +2 -1
  575. package/editions/tw5.com/tiddlers/demonstrations/SampleWizard2.tid +2 -1
  576. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Contents.tid +3 -2
  577. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/First.tid +3 -3
  578. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstOne.tid +2 -2
  579. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstThree.tid +2 -2
  580. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstTwo.tid +2 -2
  581. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Fourth.tid +2 -2
  582. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Second.tid +2 -2
  583. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondOne.tid +2 -2
  584. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThree.tid +3 -3
  585. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeOne.tid +2 -2
  586. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeThree.tid +2 -2
  587. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeTwo.tid +2 -2
  588. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondTwo.tid +2 -2
  589. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Third.tid +3 -3
  590. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdOne.tid +2 -2
  591. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdThree.tid +2 -2
  592. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdTwo.tid +2 -2
  593. package/editions/tw5.com/tiddlers/demonstrations/Tagged with TagMacro.tid +2 -1
  594. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Compose ballad.tid +3 -3
  595. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Get the Ring.tid +3 -3
  596. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Go to Mordor.tid +3 -3
  597. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Kill the Dragon.tid +4 -4
  598. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Make the beds.tid +3 -3
  599. package/editions/tw5.com/tiddlers/demonstrations/Tasks/done.tid +3 -1
  600. package/editions/tw5.com/tiddlers/demonstrations/Tasks/task.tid +3 -2
  601. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Days of the Week.tid +5 -4
  602. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Friday.tid +2 -1
  603. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Monday.tid +2 -1
  604. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Saturday.tid +3 -2
  605. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Sunday.tid +2 -1
  606. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Thursday.tid +2 -1
  607. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Tuesday.tid +2 -1
  608. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Wednesday.tid +2 -1
  609. package/editions/tw5.com/tiddlers/demonstrations/sampletag1.tid +3 -0
  610. package/editions/tw5.com/tiddlers/demonstrations/sampletag2.tid +3 -0
  611. package/editions/tw5.com/tiddlers/features/DateFormat.tid +7 -1
  612. package/editions/tw5.com/tiddlers/features/Importing Tiddlers.tid +1 -1
  613. package/editions/tw5.com/tiddlers/features/JSON in TiddlyWiki.tid +69 -0
  614. package/editions/tw5.com/tiddlers/features/LazyLoading.tid +2 -3
  615. package/editions/tw5.com/tiddlers/features/Modals.tid +2 -1
  616. package/editions/tw5.com/tiddlers/features/Scalability.tid +4 -2
  617. package/editions/tw5.com/tiddlers/filters/Filter Operators.tid +9 -5
  618. package/editions/tw5.com/tiddlers/filters/Mathematics Operators.tid +23 -3
  619. package/editions/tw5.com/tiddlers/filters/acos Operator.tid +15 -0
  620. package/editions/tw5.com/tiddlers/filters/all.tid +2 -2
  621. package/editions/tw5.com/tiddlers/filters/asin Operator.tid +15 -0
  622. package/editions/tw5.com/tiddlers/filters/atan Operator.tid +13 -0
  623. package/editions/tw5.com/tiddlers/filters/atan2 Operator.tid +15 -0
  624. package/editions/tw5.com/tiddlers/filters/butlast.tid +3 -1
  625. package/editions/tw5.com/tiddlers/filters/cos Operator.tid +13 -0
  626. package/editions/tw5.com/tiddlers/filters/deserializers Operator.tid +1 -1
  627. package/editions/tw5.com/tiddlers/filters/enlist-input Operator.tid +1 -1
  628. package/editions/tw5.com/tiddlers/filters/examples/acos Operator (Examples).tid +7 -0
  629. package/editions/tw5.com/tiddlers/filters/examples/asin Operator (Examples).tid +7 -0
  630. package/editions/tw5.com/tiddlers/filters/examples/atan Operator (Examples).tid +7 -0
  631. package/editions/tw5.com/tiddlers/filters/examples/atan2 Operator (Examples).tid +7 -0
  632. package/editions/tw5.com/tiddlers/filters/examples/butlast.tid +4 -3
  633. package/editions/tw5.com/tiddlers/filters/examples/cos Operator (Examples).tid +7 -0
  634. package/editions/tw5.com/tiddlers/filters/examples/cycle Operator (Examples).tid +1 -1
  635. package/editions/tw5.com/tiddlers/filters/examples/insertafter Operator (Examples).tid +28 -0
  636. package/editions/tw5.com/tiddlers/filters/examples/insertbefore Operator (Examples).tid +28 -0
  637. package/editions/tw5.com/tiddlers/filters/examples/log Operator (Examples).tid +1 -1
  638. package/editions/tw5.com/tiddlers/filters/examples/lookup Operator (Examples).tid +7 -1
  639. package/editions/tw5.com/tiddlers/filters/examples/match Operator (Examples).tid +1 -1
  640. package/editions/tw5.com/tiddlers/filters/examples/prefix.tid +4 -3
  641. package/editions/tw5.com/tiddlers/filters/examples/removeprefix.tid +2 -1
  642. package/editions/tw5.com/tiddlers/filters/examples/removesuffix.tid +2 -3
  643. package/editions/tw5.com/tiddlers/filters/examples/rest.tid +4 -3
  644. package/editions/tw5.com/tiddlers/filters/examples/search-replace Operator (Examples).tid +8 -2
  645. package/editions/tw5.com/tiddlers/filters/examples/search.tid +6 -1
  646. package/editions/tw5.com/tiddlers/filters/examples/sin Operator (Examples).tid +7 -0
  647. package/editions/tw5.com/tiddlers/filters/examples/sortan.tid +5 -1
  648. package/editions/tw5.com/tiddlers/filters/examples/subfilter Operator (Examples).tid +25 -3
  649. package/editions/tw5.com/tiddlers/filters/examples/suffix.tid +3 -2
  650. package/editions/tw5.com/tiddlers/filters/examples/tan Operator (Examples).tid +7 -0
  651. package/editions/tw5.com/tiddlers/filters/examples/zth Operator (Examples).tid +10 -0
  652. package/editions/tw5.com/tiddlers/filters/format.tid +3 -1
  653. package/editions/tw5.com/tiddlers/filters/insertafter Operator.tid +35 -0
  654. package/editions/tw5.com/tiddlers/filters/insertbefore Operator.tid +28 -6
  655. package/editions/tw5.com/tiddlers/filters/list.tid +2 -2
  656. package/editions/tw5.com/tiddlers/filters/lookup Operator.tid +28 -10
  657. package/editions/tw5.com/tiddlers/filters/nth.tid +9 -7
  658. package/editions/tw5.com/tiddlers/filters/prefix.tid +17 -2
  659. package/editions/tw5.com/tiddlers/filters/range.tid +1 -1
  660. package/editions/tw5.com/tiddlers/filters/removeprefix.tid +18 -3
  661. package/editions/tw5.com/tiddlers/filters/removesuffix.tid +18 -3
  662. package/editions/tw5.com/tiddlers/filters/search.tid +10 -9
  663. package/editions/tw5.com/tiddlers/filters/sha256 Operator.tid +18 -0
  664. package/editions/tw5.com/tiddlers/filters/sin Operator.tid +13 -0
  665. package/editions/tw5.com/tiddlers/filters/storyviews.tid +1 -1
  666. package/editions/tw5.com/tiddlers/filters/subfilter Operator.tid +5 -3
  667. package/editions/tw5.com/tiddlers/filters/suffix.tid +17 -2
  668. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix (Examples).tid +46 -0
  669. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix.tid +20 -0
  670. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +4 -2
  671. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix (Examples).tid +30 -0
  672. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix.tid +27 -0
  673. package/editions/tw5.com/tiddlers/filters/syntax/Filter Run Prefix (Examples).tid +7 -36
  674. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix (Examples).tid +36 -0
  675. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +15 -0
  676. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix (Examples).tid +44 -1
  677. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +11 -2
  678. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +3 -3
  679. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix (Examples).tid +27 -0
  680. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix.tid +38 -0
  681. package/editions/tw5.com/tiddlers/filters/tan Operator.tid +13 -0
  682. package/editions/tw5.com/tiddlers/filters/zth Operator.tid +18 -0
  683. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Android.tid +2 -1
  684. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Chrome.tid +2 -1
  685. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Firefox.tid +2 -1
  686. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +2 -1
  687. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Node.js.tid +2 -1
  688. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Online.tid +2 -2
  689. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Safari.tid +2 -1
  690. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - iOS.tid +2 -1
  691. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +6 -0
  692. package/editions/tw5.com/tiddlers/{AllTiddlers.tid → hellothere/AllTiddlers.tid} +0 -0
  693. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +3 -3
  694. package/editions/tw5.com/tiddlers/hellothere/Some of the things you can do with TiddlyWiki.tid +2 -2
  695. package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Badge.svg.tid +1 -0
  696. package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Link.tid +1 -0
  697. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting NewImageType.tid +3 -1
  698. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting ShowEditPreviewPerTiddler.tid +10 -0
  699. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Typin Refresh Delay.tid +2 -2
  700. package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +4 -14
  701. package/editions/tw5.com/tiddlers/howtos/Constructing JSON tiddlers.tid +16 -0
  702. package/editions/tw5.com/tiddlers/howtos/Creating SubStories.tid +21 -33
  703. package/editions/tw5.com/tiddlers/howtos/Creating a splash screen.tid +1 -1
  704. package/editions/tw5.com/tiddlers/howtos/Debugging Stylesheets.tid +11 -0
  705. package/editions/tw5.com/tiddlers/howtos/How to apply custom styles by tag.tid +2 -2
  706. package/editions/tw5.com/tiddlers/howtos/How to create a custom story tiddler template.tid +40 -0
  707. package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler colour rule.tid +36 -0
  708. package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler icon rule.tid +36 -0
  709. package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +2 -2
  710. package/editions/tw5.com/tiddlers/howtos/How to customize TiddlyDesktop.tid +1 -1
  711. package/editions/tw5.com/tiddlers/howtos/How to update TiddlyWiki to the latest version.tid +7 -0
  712. package/editions/tw5.com/tiddlers/howtos/Modifying JSON tiddlers.tid +18 -0
  713. package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +25 -0
  714. package/editions/tw5.com/tiddlers/howtos/Simple ways to write protect tiddlers.tid +4 -5
  715. package/editions/tw5.com/tiddlers/howtos/Text preview.tid +6 -2
  716. package/editions/tw5.com/tiddlers/howtos/Using Stylesheets.tid +8 -4
  717. package/editions/tw5.com/tiddlers/images/Icon Gallery.tid +14 -0
  718. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  719. package/editions/tw5.com/tiddlers/languages/LanguageGallery.tid +2 -2
  720. package/editions/tw5.com/tiddlers/macros/JsonTiddlersMacro.tid +3 -3
  721. package/editions/tw5.com/tiddlers/macros/TagMacro.tid +1 -1
  722. package/editions/tw5.com/tiddlers/macros/examples/colour-picker Macro (Example 1).tid +2 -2
  723. package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 1).tid +2 -2
  724. package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 2).tid +2 -2
  725. package/editions/tw5.com/tiddlers/macros/examples/unusedtitle Macro (Examples 1).tid +2 -2
  726. package/editions/tw5.com/tiddlers/macros/jsontiddler Macro.tid +2 -2
  727. package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +3 -1
  728. package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +1 -0
  729. package/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +1 -1
  730. package/editions/tw5.com/tiddlers/mechanisms/RefreshThrottling.tid +2 -2
  731. package/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid +2 -2
  732. package/editions/tw5.com/tiddlers/messages/SampleModal.tid +2 -1
  733. package/editions/tw5.com/tiddlers/messages/SampleWindowTemplate.tid +10 -0
  734. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-all-windows.tid +20 -0
  735. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-window.tid +41 -0
  736. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-download-file.tid +6 -1
  737. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-text-operation.tid +3 -0
  738. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +11 -2
  739. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-open-window.tid +28 -6
  740. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-relink-tiddler.tid +26 -0
  741. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-rename-tiddler.tid +4 -2
  742. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-scroll.tid +3 -0
  743. package/editions/tw5.com/tiddlers/nodejs/Environment Variables on Node.js.tid +6 -4
  744. package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +15 -13
  745. package/editions/tw5.com/tiddlers/nodejs/Installing custom plugins on Node.js.tid +11 -19
  746. package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +40 -0
  747. package/editions/tw5.com/tiddlers/nodejs/PluginsCS.tid +9 -0
  748. package/editions/tw5.com/tiddlers/nodejs/TiddlyWiki on Node.js.tid +7 -2
  749. package/editions/tw5.com/tiddlers/nodejs/Uninstalling a plugin with Node.js.tid +31 -0
  750. package/editions/tw5.com/tiddlers/nodejs/Using TiddlyWiki on Node.js.tid +4 -4
  751. package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid +6 -5
  752. package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.info_Files.tid +2 -2
  753. package/editions/tw5.com/tiddlers/platforms/TiddlyFox Apocalypse.tid +2 -2
  754. package/editions/tw5.com/tiddlers/platforms/TiddlyWiki in the Sky for TiddlyWeb.tid +4 -8
  755. package/editions/tw5.com/tiddlers/plugins/Highlight Plugin.tid +3 -1
  756. package/editions/tw5.com/tiddlers/plugins/Installing a plugin from the plugin library.tid +22 -35
  757. package/editions/tw5.com/tiddlers/plugins/Manually installing a plugin.tid +19 -4
  758. package/editions/tw5.com/tiddlers/plugins/OfficialPlugins.tid +3 -1
  759. package/editions/tw5.com/tiddlers/plugins/Plugin Ordering.tid +47 -0
  760. package/editions/tw5.com/tiddlers/plugins/Plugin Types.tid +2 -2
  761. package/editions/tw5.com/tiddlers/plugins/PluginFolders.tid +27 -1
  762. package/editions/tw5.com/tiddlers/plugins/Plugins.tid +19 -7
  763. package/editions/tw5.com/tiddlers/plugins/Uninstalling a plugin.tid +15 -25
  764. package/editions/tw5.com/tiddlers/reference/Reference.tid +1 -0
  765. package/editions/tw5.com/tiddlers/releasenotes/BetaReleases.tid +2 -2
  766. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.21.tid +6 -0
  767. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.22.tid +6 -0
  768. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +38 -34
  769. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +42 -38
  770. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +122 -0
  771. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.2.tid +160 -0
  772. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.3.tid +152 -0
  773. package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +3 -0
  774. package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +4 -2
  775. package/editions/tw5.com/tiddlers/releasenotes/alpha/AlphaReleases.tid +2 -2
  776. package/editions/tw5.com/tiddlers/saving/Example config-tiddlyweb-host for IIS.txt.meta +1 -1
  777. package/editions/tw5.com/tiddlers/saving/Example package.json for IIS.txt.meta +1 -1
  778. package/editions/tw5.com/tiddlers/saving/Example tiddlywiki.info for IIS.txt.meta +1 -1
  779. package/editions/tw5.com/tiddlers/saving/Example web.config for IIS.txt.meta +1 -1
  780. package/editions/tw5.com/tiddlers/saving/Saving on Android.tid +1 -1
  781. package/editions/tw5.com/tiddlers/saving/Saving on Browser with the File System Access API.tid +21 -0
  782. package/editions/tw5.com/tiddlers/saving/Saving on TidGi.tid +26 -0
  783. package/editions/tw5.com/tiddlers/saving/Saving on TiddlyDesktop.tid +3 -3
  784. package/editions/tw5.com/tiddlers/saving/Saving on iPad_iPhone.tid +1 -1
  785. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +35 -1
  786. package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +29 -0
  787. package/editions/tw5.com/tiddlers/saving/Saving.tid +9 -11
  788. package/editions/tw5.com/tiddlers/styleguide/Documentation Macros.tid +6 -2
  789. package/editions/tw5.com/tiddlers/system/Deprecated.tid +4 -4
  790. package/editions/tw5.com/tiddlers/system/Deprecated_-_What_does_it_mean.tid +2 -6
  791. package/editions/tw5.com/tiddlers/{TableOfContents.tid → system/TableOfContents.tid} +0 -0
  792. package/editions/tw5.com/tiddlers/system/doc-macros.tid +52 -1
  793. package/editions/tw5.com/tiddlers/system/doc-styles.tid +69 -4
  794. package/editions/tw5.com/tiddlers/system/download-empty-button.tid +1 -1
  795. package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -0
  796. package/editions/tw5.com/tiddlers/system/operator-macros.tid +16 -7
  797. package/editions/tw5.com/tiddlers/system/operator-template.tid +14 -11
  798. package/editions/tw5.com/tiddlers/system/style-guide-macros.tid +5 -1
  799. package/editions/tw5.com/tiddlers/system/systemtag-template.tid +21 -0
  800. package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +12 -8
  801. package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +5 -6
  802. package/editions/tw5.com/tiddlers/system/variable-macros.tid +4 -2
  803. package/editions/tw5.com/tiddlers/system/version-macros.tid +3 -3
  804. package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +52 -3
  805. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Image.tid +2 -2
  806. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Macro_View_Body.tid +9 -0
  807. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplate.tid +2 -2
  808. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplateSubtitle.tid +9 -0
  809. package/editions/tw5.com/tiddlers/tiddlydesktop/TiddlyDesktop_Releases.tid +1 -1
  810. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 1-2-3.tid +2 -1
  811. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 3-4-5.tid +2 -1
  812. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 4-5-6.tid +2 -1
  813. package/editions/tw5.com/tiddlers/variables/modifier Variable.tid +2 -2
  814. package/editions/tw5.com/tiddlers/webserver/Using HTTPS.tid +17 -2
  815. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
  816. package/editions/tw5.com/tiddlers/webserver/WebServer Authorization.tid +15 -3
  817. package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ admin.tid +8 -0
  818. package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ required-plugins.tid +8 -0
  819. package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ tls-passphrase.tid +10 -0
  820. package/editions/tw5.com/tiddlers/widgets/$__editions_tw5.com_widget-examples_qualify-transcluded.tid +14 -0
  821. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 1.tid +2 -2
  822. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 2.tid +2 -2
  823. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 3.tid +2 -2
  824. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 4.tid +2 -2
  825. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Template.tid +2 -2
  826. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget_Example.tid +2 -2
  827. package/editions/tw5.com/tiddlers/widgets/ActionListopsWidget.tid +52 -2
  828. package/editions/tw5.com/tiddlers/widgets/ActionSendMessageWidget.tid +3 -1
  829. package/editions/tw5.com/tiddlers/widgets/ActionSetMultipleFieldsWidget.tid +31 -0
  830. package/editions/tw5.com/tiddlers/widgets/ActionWidget Execution Modes.tid +5 -2
  831. package/editions/tw5.com/tiddlers/widgets/ActionWidgets.tid +4 -4
  832. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -2
  833. package/editions/tw5.com/tiddlers/widgets/CheckboxWidget.tid +78 -4
  834. package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +24 -4
  835. package/editions/tw5.com/tiddlers/widgets/DroppableWidget.tid +2 -2
  836. package/editions/tw5.com/tiddlers/widgets/DropzoneWidget.tid +2 -2
  837. package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +9 -20
  838. package/editions/tw5.com/tiddlers/widgets/EditWidget.tid +2 -2
  839. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +10 -7
  840. package/editions/tw5.com/tiddlers/widgets/FieldManglerWidget.tid +3 -3
  841. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +13 -3
  842. package/editions/tw5.com/tiddlers/widgets/JSONTiddlerWidget.tid +5 -4
  843. package/editions/tw5.com/tiddlers/{Keyboard Codes.tid → widgets/Keyboard Codes.tid} +0 -0
  844. package/editions/tw5.com/tiddlers/widgets/KeyboardWidget.tid +2 -2
  845. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +57 -0
  846. package/editions/tw5.com/tiddlers/widgets/LinkCatcherWidget.tid +3 -2
  847. package/editions/tw5.com/tiddlers/widgets/ListWidget.tid +2 -2
  848. package/editions/tw5.com/tiddlers/widgets/ListopsData.tid +1 -0
  849. package/editions/tw5.com/tiddlers/widgets/MacroCallWidget.tid +3 -1
  850. package/editions/tw5.com/tiddlers/widgets/MessageCatcherWidget.tid +3 -3
  851. package/editions/tw5.com/tiddlers/widgets/MessageHandlerWidgets.tid +13 -0
  852. package/editions/tw5.com/tiddlers/widgets/NavigatorWidget.tid +5 -2
  853. package/editions/tw5.com/tiddlers/widgets/QualifyWidget.tid +39 -0
  854. package/editions/tw5.com/tiddlers/widgets/RadioWidget.tid +2 -2
  855. package/editions/tw5.com/tiddlers/widgets/RangeWidget.tid +2 -2
  856. package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +3 -3
  857. package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +15 -2
  858. package/editions/tw5.com/tiddlers/widgets/SetMultipleVariablesWidget.tid +33 -0
  859. package/editions/tw5.com/tiddlers/widgets/SetWidget.tid +3 -1
  860. package/editions/tw5.com/tiddlers/widgets/The Extended Listops Filters.tid +2 -1
  861. package/editions/tw5.com/tiddlers/widgets/TranscludeWidget.tid +8 -10
  862. package/editions/tw5.com/tiddlers/widgets/TriggeringWidgets.tid +13 -0
  863. package/editions/tw5.com/tiddlers/widgets/VarsWidget.tid +7 -5
  864. package/editions/tw5.com/tiddlers/widgets/ViewWidget.tid +26 -8
  865. package/editions/tw5.com/tiddlers/widgets/WikifyWidget.tid +2 -2
  866. package/editions/tw5.com/tiddlers/wikitext/Code Blocks in WikiText.tid +4 -7
  867. package/editions/tw5.com/tiddlers/wikitext/Dashes in WikiText.tid +7 -3
  868. package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +7 -7
  869. package/editions/tw5.com/tiddlers/wikitext/HTML in WikiText.tid +30 -4
  870. package/editions/tw5.com/tiddlers/wikitext/Headings in WikiText.tid +3 -3
  871. package/editions/tw5.com/tiddlers/wikitext/Horizontal Rules in WikiText.tid +3 -5
  872. package/editions/tw5.com/tiddlers/wikitext/Images in WikiText.tid +3 -3
  873. package/editions/tw5.com/tiddlers/wikitext/Linking in WikiText.tid +44 -1
  874. package/editions/tw5.com/tiddlers/wikitext/Macro Calls in WikiText.tid +3 -3
  875. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText.tid +13 -37
  876. package/editions/tw5.com/tiddlers/wikitext/Transclusion and Substitution.tid +3 -2
  877. package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +2 -1
  878. package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +6 -6
  879. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText (Examples).tid +51 -0
  880. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +35 -0
  881. package/editions/tw5.com/tiddlers/wikitext/parser/Inline Mode WikiText.tid +26 -0
  882. package/editions/tw5.com/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +14 -0
  883. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +16 -0
  884. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode transitions.tid +59 -0
  885. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ HTML examples.tid +72 -0
  886. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ macro examples.tid +55 -0
  887. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +56 -0
  888. package/editions/tw5.com/tiddlers/wikitext/parser/table-example.tid +8 -0
  889. package/languages/de-DE/ControlPanel.multids +17 -0
  890. package/languages/de-DE/EditTemplate.multids +1 -0
  891. package/languages/de-DE/Fields.multids +6 -5
  892. package/languages/de-DE/Help/render.tid +2 -1
  893. package/languages/de-DE/SideBar.multids +2 -0
  894. package/languages/fr-FR/ControlPanel.multids +18 -0
  895. package/languages/fr-FR/EditTemplate.multids +1 -0
  896. package/languages/fr-FR/Fields.multids +4 -2
  897. package/languages/fr-FR/Help/default.tid +4 -1
  898. package/languages/fr-FR/Help/render.tid +2 -1
  899. package/languages/fr-FR/Misc.multids +1 -1
  900. package/languages/fr-FR/SideBar.multids +1 -0
  901. package/languages/ja-JP/Buttons.multids +147 -30
  902. package/languages/ja-JP/ControlPanel.multids +175 -37
  903. package/languages/ja-JP/CoreReadMe.tid +2 -2
  904. package/languages/ja-JP/Dates.multids +24 -24
  905. package/languages/ja-JP/Docs/ModuleTypes.multids +3 -3
  906. package/languages/ja-JP/Docs/PaletteColours.multids +18 -18
  907. package/languages/ja-JP/EditTemplate.multids +23 -7
  908. package/languages/ja-JP/Exporters.multids +1 -1
  909. package/languages/ja-JP/Fields.multids +28 -23
  910. package/languages/ja-JP/Filters.multids +12 -9
  911. package/languages/ja-JP/GettingStarted.tid +6 -6
  912. package/languages/ja-JP/Help/build.tid +2 -2
  913. package/languages/ja-JP/Help/editions.tid +6 -2
  914. package/languages/ja-JP/Help/help.tid +1 -1
  915. package/languages/ja-JP/Help/init.tid +2 -2
  916. package/languages/ja-JP/Help/load.tid +2 -2
  917. package/languages/ja-JP/Help/makelibrary.tid +3 -3
  918. package/languages/ja-JP/Help/output.tid +2 -2
  919. package/languages/ja-JP/Help/rendertiddler.tid +2 -2
  920. package/languages/ja-JP/Help/rendertiddlers.tid +2 -2
  921. package/languages/ja-JP/Help/savetiddler.tid +2 -2
  922. package/languages/ja-JP/Help/savetiddlers.tid +12 -2
  923. package/languages/ja-JP/Help/server.tid +6 -6
  924. package/languages/ja-JP/Help/setfield.tid +7 -7
  925. package/languages/ja-JP/Help/unpackplugin.tid +2 -2
  926. package/languages/ja-JP/Help/verbose.tid +6 -2
  927. package/languages/ja-JP/Help/version.tid +2 -2
  928. package/languages/ja-JP/Import.multids +27 -8
  929. package/languages/ja-JP/Misc.multids +98 -11
  930. package/languages/ja-JP/Modals/Download.tid +2 -2
  931. package/languages/ja-JP/Notifications.multids +2 -2
  932. package/languages/ja-JP/Search.multids +8 -4
  933. package/languages/ja-JP/SideBar.multids +6 -4
  934. package/languages/ja-JP/SiteSubtitle.tid +1 -1
  935. package/languages/ja-JP/SiteTitle.tid +1 -1
  936. package/languages/ja-JP/TiddlerInfo.multids +10 -10
  937. package/languages/ja-JP/Types/application%2Fjavascript.tid +1 -1
  938. package/languages/ja-JP/Types/image%2Fgif.tid +1 -1
  939. package/languages/ja-JP/Types/image%2Fjpeg.tid +1 -1
  940. package/languages/ja-JP/Types/image%2Fpng.tid +1 -1
  941. package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +1 -1
  942. package/languages/ja-JP/Types/image%2Fx-icon.tid +1 -1
  943. package/languages/ja-JP/Types/text%2Fcss.tid +1 -1
  944. package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +1 -1
  945. package/languages/ja-JP/plugin.info +1 -1
  946. package/languages/pl-PL/ControlPanel.multids +18 -3
  947. package/languages/pl-PL/Docs/PaletteColours.multids +1 -1
  948. package/languages/pl-PL/EditTemplate.multids +1 -0
  949. package/languages/pl-PL/Fields.multids +3 -3
  950. package/languages/pl-PL/Help/default.tid +4 -1
  951. package/languages/pl-PL/Import.multids +4 -4
  952. package/languages/pl-PL/Misc.multids +2 -2
  953. package/languages/pl-PL/SideBar.multids +2 -1
  954. package/languages/zh-Hans/ControlPanel.multids +17 -0
  955. package/languages/zh-Hans/EditTemplate.multids +1 -0
  956. package/languages/zh-Hans/Fields.multids +4 -2
  957. package/languages/zh-Hans/Help/default.tid +4 -1
  958. package/languages/zh-Hans/Help/render.tid +1 -0
  959. package/languages/zh-Hans/Misc.multids +1 -1
  960. package/languages/zh-Hans/SideBar.multids +1 -0
  961. package/languages/zh-Hant/ControlPanel.multids +17 -0
  962. package/languages/zh-Hant/EditTemplate.multids +1 -0
  963. package/languages/zh-Hant/Fields.multids +4 -2
  964. package/languages/zh-Hant/Help/default.tid +4 -1
  965. package/languages/zh-Hant/Help/render.tid +1 -0
  966. package/languages/zh-Hant/Misc.multids +1 -1
  967. package/languages/zh-Hant/SideBar.multids +1 -0
  968. package/license +1 -1
  969. package/licenses/cla-individual.md +33 -1
  970. package/package.json +5 -3
  971. package/plugins/tiddlywiki/browser-sniff/browser.js +5 -1
  972. package/plugins/tiddlywiki/browser-sniff/usage.tid +1 -0
  973. package/plugins/tiddlywiki/browser-storage/rawmarkup.js +18 -1
  974. package/plugins/tiddlywiki/browser-storage/readme.tid +0 -1
  975. package/plugins/tiddlywiki/browser-storage/settings.tid +5 -1
  976. package/plugins/tiddlywiki/browser-storage/startup.js +14 -9
  977. package/plugins/tiddlywiki/codemirror/engine.js +55 -2
  978. package/plugins/tiddlywiki/dynannotate/docs/readme.tid +72 -8
  979. package/plugins/tiddlywiki/dynannotate/examples/viewtemplate.tid +3 -4
  980. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +10 -1
  981. package/plugins/tiddlywiki/dynannotate/modules/legacy-selection-tracker.js +104 -0
  982. package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +144 -89
  983. package/plugins/tiddlywiki/dynannotate/modules/startup.js +40 -0
  984. package/plugins/tiddlywiki/highlight/files/default.min.css +9 -0
  985. package/plugins/tiddlywiki/highlight/files/highlight.min.js +1401 -0
  986. package/plugins/tiddlywiki/highlight/files/tiddlywiki.files +2 -2
  987. package/plugins/tiddlywiki/highlight/highlightblock.js +27 -21
  988. package/plugins/tiddlywiki/highlight/plugin.info +1 -1
  989. package/plugins/tiddlywiki/highlight/readme.tid +18 -47
  990. package/plugins/tiddlywiki/highlight/styles.tid +10 -5
  991. package/plugins/tiddlywiki/highlight/usage.tid +48 -1
  992. package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +8 -0
  993. package/plugins/tiddlywiki/{highlight → highlight-legacy}/files/default.css +0 -0
  994. package/plugins/tiddlywiki/{highlight → highlight-legacy}/files/highlight.pack.js +0 -0
  995. package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +22 -0
  996. package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +44 -0
  997. package/plugins/tiddlywiki/highlight-legacy/license.tid +27 -0
  998. package/plugins/tiddlywiki/highlight-legacy/plugin.info +7 -0
  999. package/plugins/tiddlywiki/highlight-legacy/readme.tid +65 -0
  1000. package/plugins/tiddlywiki/highlight-legacy/styles.tid +82 -0
  1001. package/plugins/tiddlywiki/highlight-legacy/usage.tid +28 -0
  1002. package/plugins/tiddlywiki/internals/editpreviews/raw.tid +1 -0
  1003. package/{editions/katexdemo/tiddlers → plugins/tiddlywiki/katex}/ImplementationNotes.tid +3 -3
  1004. package/plugins/tiddlywiki/katex/developer.tid +58 -0
  1005. package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -0
  1006. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
  1007. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1008. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1009. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1010. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1011. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
  1012. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1013. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
  1014. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
  1015. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1016. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
  1017. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1018. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1019. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1020. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
  1021. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
  1022. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
  1023. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
  1024. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
  1025. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1026. package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
  1027. package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
  1028. package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
  1029. package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
  1030. package/plugins/tiddlywiki/katex/plugin.info +1 -1
  1031. package/plugins/tiddlywiki/katex/readme.tid +1 -1
  1032. package/plugins/tiddlywiki/katex/snippets/logo.tid +4 -0
  1033. package/plugins/tiddlywiki/katex/snippets/math.tid +8 -0
  1034. package/plugins/tiddlywiki/katex/styles.tid +7 -0
  1035. package/plugins/tiddlywiki/katex/usage.tid +18 -2
  1036. package/plugins/tiddlywiki/markdown/EditorToolbar/link-dropdown.tid +73 -0
  1037. package/plugins/tiddlywiki/markdown/EditorToolbar/link.tid +11 -0
  1038. package/plugins/tiddlywiki/markdown/EditorToolbar/linkify.tid +15 -0
  1039. package/plugins/tiddlywiki/markdown/EditorToolbar/mono-block.tid +17 -0
  1040. package/plugins/tiddlywiki/markdown/KeyboardShortcuts/new-markdown-tiddler.tid +8 -0
  1041. package/plugins/tiddlywiki/markdown/config.multids +5 -0
  1042. package/plugins/tiddlywiki/markdown/config_renderWikiTextPragma.tid +1 -1
  1043. package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +37 -0
  1044. package/plugins/tiddlywiki/markdown/images/markdown-linkify.tid +6 -0
  1045. package/plugins/tiddlywiki/markdown/wrapper.js +33 -22
  1046. package/plugins/tiddlywiki/menubar/items/search.tid +2 -0
  1047. package/plugins/tiddlywiki/menubar/menu.tid +1 -1
  1048. package/plugins/tiddlywiki/tiddlyweb/save-wiki-button.tid +1 -1
  1049. package/readme.md +6 -4
  1050. package/themes/tiddlywiki/snowwhite/base.tid +2 -1
  1051. package/themes/tiddlywiki/vanilla/ThemeTweaks.tid +7 -3
  1052. package/themes/tiddlywiki/vanilla/base.tid +40 -6
  1053. package/themes/tiddlywiki/vanilla/reset.tid +1 -1
  1054. package/themes/tiddlywiki/vanilla/sticky.tid +1 -0
  1055. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -43
  1056. package/core/ui/ViewTemplate/plugin.tid +0 -15
  1057. package/editions/fr-FR/tiddlers/$__core_ui_SideBar_Open.tid +0 -15
  1058. package/editions/fr-FR/tiddlers/$__core_ui_ViewTemplate_title.tid +0 -46
  1059. package/editions/fr-FR/tiddlers/$__editions_tw5.com_wikitext-macros.tid +0 -47
  1060. package/editions/fr-FR/tiddlers/Code Blocks in WikiText.tid +0 -33
  1061. package/editions/fr-FR/tiddlers/Formatting in WikiText.tid +0 -23
  1062. package/editions/fr-FR/tiddlers/Horizontal Rules in WikiText.tid +0 -17
  1063. package/editions/fr-FR/tiddlers/Images_in_WikiText.tid +0 -48
  1064. package/editions/fr-FR/tiddlers/ImportTiddlers.tid +0 -14
  1065. package/editions/fr-FR/tiddlers/Installing TiddlyWiki on Node.js.tid +0 -23
  1066. package/editions/fr-FR/tiddlers/Macro_Calls_in_WikiText.tid +0 -22
  1067. package/editions/fr-FR/tiddlers/Pragma.tid +0 -17
  1068. package/editions/fr-FR/tiddlers/Saving on Android.tid +0 -10
  1069. package/editions/fr-FR/tiddlers/Saving on InternetExplorer.tid +0 -11
  1070. package/editions/fr-FR/tiddlers/Saving on Safari.tid +0 -24
  1071. package/editions/fr-FR/tiddlers/Saving on iPad_iPhone.tid +0 -23
  1072. package/editions/fr-FR/tiddlers/Saving with TiddlyFox.tid +0 -24
  1073. package/editions/fr-FR/tiddlers/Saving with TiddlyIE.tid +0 -19
  1074. package/editions/fr-FR/tiddlers/Saving.tid +0 -10
  1075. package/editions/fr-FR/tiddlers/Saving_on_a_PHP_Server.tid +0 -30
  1076. package/editions/fr-FR/tiddlers/Sharing_your_tiddlers_with_others.tid +0 -16
  1077. package/editions/fr-FR/tiddlers/Tables_in_WikiText.tid +0 -102
  1078. package/editions/fr-FR/tiddlers/TiddlyDesktop.tid +0 -23
  1079. package/editions/fr-FR/tiddlers/TiddlyDesktop_Releases.tid +0 -9
  1080. package/editions/fr-FR/tiddlers/TiddlyWiki on Node.js.tid +0 -18
  1081. package/editions/fr-FR/tiddlers/TranscludeWidget.tid +0 -73
  1082. package/editions/fr-FR/tiddlers/Widgets_in_WikiText.tid +0 -30
  1083. package/editions/katexdemo/tiddlers/DefaultTiddlers.tid +0 -5
  1084. package/editions/prerelease/tiddlers/Release 5.2.1.tid +0 -62
  1085. package/editions/tw5.com/tiddlers/customising/Page and tiddler layout customisation.tid +0 -63
  1086. package/editions/tw5.com/tiddlers/demonstrations/SampleAlert.tid +0 -9
  1087. package/plugins/tiddlywiki/highlight/howto.tid +0 -10
  1088. package/plugins/tiddlywiki/katex/files/README.md +0 -119
  1089. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.ttf +0 -0
  1090. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1091. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  1092. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1093. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  1094. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  1095. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  1096. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1097. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  1098. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1099. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.ttf +0 -0
  1100. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1101. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  1102. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1103. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.ttf +0 -0
  1104. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1105. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.ttf +0 -0
  1106. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1107. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  1108. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1109. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.ttf +0 -0
  1110. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1111. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  1112. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1113. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  1114. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1115. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  1116. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1117. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.ttf +0 -0
  1118. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1119. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.ttf +0 -0
  1120. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1121. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.ttf +0 -0
  1122. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1123. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.ttf +0 -0
  1124. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1125. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.ttf +0 -0
  1126. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1127. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  1128. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1129. package/plugins/tiddlywiki/katex/files/katex.css +0 -1079
  1130. package/plugins/tiddlywiki/katex/files/katex.js +0 -18183
  1131. package/plugins/tiddlywiki/katex/files/mhchem.min.js +0 -1
package/readme.md CHANGED
@@ -1,8 +1,10 @@
1
1
  <p>Welcome to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is a complete interactive wiki in <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/JavaScript.html">JavaScript</a>. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/WikiText.html">WikiText</a>.</p><p>Learn more and see it in action at <a class="tc-tiddlylink-external" href="https://tiddlywiki.com/" rel="noopener noreferrer" target="_blank">https://tiddlywiki.com/</a></p><p>Developer documentation is in progress at <a class="tc-tiddlylink-external" href="https://tiddlywiki.com/dev/" rel="noopener noreferrer" target="_blank">https://tiddlywiki.com/dev/</a></p><h1 class="">Join the Community</h1><p>
2
- <h2 class="">Users</h2><p>The TiddlyWiki discussion groups are mailing lists for talking about TiddlyWiki: requests for help, announcements of new releases and plugins, debating new features, or just sharing experiences. You can participate via the associated website, or subscribe via email.</p><ul><li>The main TiddlyWiki group: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWiki" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWiki</a><blockquote><div>Note that you do not need a Google Account to join the discussion groups. Subscribe by sending an email to <a class="tc-tiddlylink-external" href="mailto:tiddlywiki+subscribe@googlegroups.com" rel="noopener noreferrer" target="_blank">mailto:tiddlywiki+subscribe@googlegroups.com</a>.</div></blockquote><ul><li>An enhanced group search facility is available on <a class="tc-tiddlylink-external" href="https://www.mail-archive.com/tiddlywiki@googlegroups.com/" rel="noopener noreferrer" target="_blank">mail-archive.com</a></li></ul></li><li>Watch recordings of our regular <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki%2520Hangouts.html">TiddlyWiki Hangouts</a></li><li>Follow <a class="tc-tiddlylink-external" href="http://twitter.com/TiddlyWiki" rel="noopener noreferrer" target="_blank">@TiddlyWiki on Twitter</a> for the latest news</li><li>New: Join us on our live chat at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> !</li><li>There is also a discord available at <a class="tc-tiddlylink-external" href="https://discord.gg/HFFZVQ8" rel="noopener noreferrer" target="_blank">https://discord.gg/HFFZVQ8</a></li></ul><h2 class="">Developers</h2><p>There are several resources for developers to learn more about <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> and to discuss and contribute to its development.</p><ul><li><a class="tc-tiddlylink-external" href="https://tiddlywiki.com/dev" rel="noopener noreferrer" target="_blank">tiddlywiki.com/dev</a> is the official developer documentation</li><li>Get involved in the <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5" rel="noopener noreferrer" target="_blank">development on GitHub</a><ul><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">Discussions</a> are for Q&amp;A and open-ended discussion</li><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/issues" rel="noopener noreferrer" target="_blank">Issues</a> are for raising bug reports and proposing specific, actionable new ideas</li></ul></li><li>The older TiddlyWikiDev Google Group is now closed in favour of <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">GitHub Discussions</a> but remains a useful archive: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWikiDev" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWikiDev</a><ul><li>An enhanced group search facility is available on <a class="tc-tiddlylink-external" href="https://www.mail-archive.com/tiddlywikidev@googlegroups.com/" rel="noopener noreferrer" target="_blank">mail-archive.com</a></li></ul></li><li>Follow <a class="tc-tiddlylink-external" href="http://twitter.com/#!/TiddlyWiki" rel="noopener noreferrer" target="_blank">@TiddlyWiki on Twitter</a> for the latest news</li><li>Chat at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> (development room coming soon)</li></ul><p>New releases of <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyDesktop.html">TiddlyDesktop</a> and <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyFox.html">TiddlyFox</a> are announced via the discussion groups and <a class="tc-tiddlylink-external" href="https://twitter.com/TiddlyWiki" rel="noopener noreferrer" target="_blank">Twitter</a> (you can also subscribe to an Atom/RSS feed of <a class="tc-tiddlylink-external" href="https://github.com/jermolene/tiddlywiki5/releases.atom" rel="noopener noreferrer" target="_blank">TiddlyWiki releases from GitHub</a>)</p><h2 class="">Documentation</h2><p>There is also a discussion group specifically for discussing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> documentation improvement initiatives: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/tiddlywikidocs" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/tiddlywikidocs</a>
2
+ <h2 class="">Official Forums</h2><p>The new official forum for talking about TiddlyWiki: requests for help, announcements of new releases and plugins, debating new features, or just sharing experiences. You can participate via the associated website, or subscribe via email.</p><p><a class="tc-tiddlylink-external" href="https://talk.tiddlywiki.org/" rel="noopener noreferrer" target="_blank">https://talk.tiddlywiki.org/</a></p><p>Note that talk.tiddlywiki.org is a community run service that we host and maintain ourselves. The modest running costs are covered by community contributions.</p><p>For the convenience of existing users, we also continue to operate the original TiddlyWiki group (hosted on Google Groups since 2005):</p><p><a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWiki" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWiki</a></p><h2 class="">Developer Forums</h2><p>There are several resources for developers to learn more about <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> and to discuss and contribute to its development.</p><ul><li><a class="tc-tiddlylink-external" href="https://tiddlywiki.com/dev" rel="noopener noreferrer" target="_blank">tiddlywiki.com/dev</a> is the official developer documentation</li><li>Get involved in the <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5" rel="noopener noreferrer" target="_blank">development on GitHub</a><ul><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">Discussions</a> are for Q&amp;A and open-ended discussion</li><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/issues" rel="noopener noreferrer" target="_blank">Issues</a> are for raising bug reports and proposing specific, actionable new ideas</li></ul></li><li>The older TiddlyWikiDev Google Group is now closed in favour of <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">GitHub Discussions</a> but remains a useful archive: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWikiDev" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWikiDev</a><ul><li>An enhanced group search facility is available on <a class="tc-tiddlylink-external" href="https://www.mail-archive.com/tiddlywikidev@googlegroups.com/" rel="noopener noreferrer" target="_blank">mail-archive.com</a></li></ul></li><li>Follow <a class="tc-tiddlylink-external" href="http://twitter.com/#!/TiddlyWiki" rel="noopener noreferrer" target="_blank">@TiddlyWiki on Twitter</a> for the latest news</li><li>Chat at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> (development room coming soon)</li></ul><h2 class="">Other Forums</h2><ul><li><a class="tc-tiddlylink-external" href="https://www.reddit.com/r/TiddlyWiki5/" rel="noopener noreferrer" target="_blank">TiddlyWiki Subreddit</a></li><li>Chat with Gitter at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> !</li><li>Chat on Discord at <a class="tc-tiddlylink-external" href="https://discord.gg/HFFZVQ8" rel="noopener noreferrer" target="_blank">https://discord.gg/HFFZVQ8</a></li></ul><h3 class="">Documentation</h3><p>There is also a discussion group specifically for discussing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> documentation improvement initiatives: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/tiddlywikidocs" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/tiddlywikidocs</a>
3
3
  </p>
4
- </p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>either from your favourite package manager: typically <code>apt-get install nodejs</code> on Debian/Ubuntu Linux or <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Termux for Android</a>, or <code>brew install node</code> on a Mac</li><li>or directly from <a class="tc-tiddlylink-external" href="http://nodejs.org" rel="noopener noreferrer" target="_blank">http://nodejs.org</a></li></ul></li><li>Open a command line terminal and type:<blockquote><div><code>npm install -g tiddlywiki</code></div><div>If it fails with an error you may need to re-run the command as an administrator:</div><div><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</div></blockquote></li><li>Check <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is installed by typing:<blockquote><div><code>tiddlywiki --version</code></div></blockquote></li><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.2.0"; you may also see other debugging information reported)</li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --listen</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" rel="noopener noreferrer" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <span class="doc-icon"><svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M120.783 34.33c4.641 8.862 7.266 18.948 7.266 29.646 0 35.347-28.653 64-64 64-35.346 0-64-28.653-64-64 0-35.346 28.654-64 64-64 18.808 0 35.72 8.113 47.43 21.03l2.68-2.68c3.13-3.13 8.197-3.132 11.321-.008 3.118 3.118 3.121 8.193-.007 11.32l-4.69 4.691zm-12.058 12.058a47.876 47.876 0 013.324 17.588c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48c14.39 0 27.3 6.332 36.098 16.362L58.941 73.544 41.976 56.578c-3.127-3.127-8.201-3.123-11.32-.005-3.123 3.124-3.119 8.194.006 11.319l22.617 22.617a7.992 7.992 0 005.659 2.347c2.05 0 4.101-.783 5.667-2.349l44.12-44.12z" fill-rule="evenodd"></path></svg></span> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki mynewwiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p>If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" rel="noopener noreferrer" target="_blank">issue 1434</a></p><p>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code></p><p>You can also install prior versions like this:</p><blockquote><div>npm install -g tiddlywiki@5.1.13</div></blockquote><h1 class="">Using <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> includes a set of <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Commands.html">Commands</a> for use on the command line to perform an extensive set of operations based on <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a>, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a> and <a class="tc-tiddlylink tc-tiddlylink-missing" href="https://tiddlywiki.com/static/TiddlyWikiFiles.html">TiddlyWikiFiles</a>.</p><p>For example, the following command loads the tiddlers from a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> HTML file and then saves one of them in static HTML:</p><pre><code>tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html</code></pre><p>Running <code>tiddlywiki</code> from the command line boots the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.</p><p><span class="doc-from-version"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg> New in: 5.1.20</span> First, there can be zero or more plugin references identified by the prefix <code>+</code> for plugin names or <code>++</code> for a path to a plugin folder. These plugins are loaded in addition to any specified in the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a>.</p><p>The next argument is the optional path to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a> to be loaded. If not present, then the current directory is used.</p><p>The commands and their individual arguments follow, each command being identified by the prefix <code>--</code>.</p><pre><code>tiddlywiki [+&lt;pluginname&gt; | ++&lt;pluginpath&gt;] [&lt;wikipath&gt;] [--&lt;command&gt; [&lt;arg&gt;[,&lt;arg&gt;]]]</code></pre><p>For example:</p><pre><code>tiddlywiki --version
4
+ </p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>Linux: <blockquote><div><em>Debian/Ubuntu</em>:<br><code>apt install nodejs</code><br>May need to be followed up by:<br><code>apt install npm</code></div><div><em>Arch Linux</em><br><code>pacman -S tiddlywiki</code> <br>(installs node and tiddlywiki)</div></blockquote></li><li>Mac<blockquote><div><code>brew install node</code></div></blockquote></li><li>Android<blockquote><div><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Termux for Android</a></div></blockquote></li><li>Other <blockquote><div>See <a class="tc-tiddlylink-external" href="http://nodejs.org" rel="noopener noreferrer" target="_blank">http://nodejs.org</a></div></blockquote></li></ul></li><li>Open a command line terminal and type:<blockquote><div><code>npm install -g tiddlywiki</code></div><div>If it fails with an error you may need to re-run the command as an administrator:</div><div><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</div></blockquote></li><li>Ensure TiddlyWiki is installed by typing:<blockquote><div><code>tiddlywiki --version</code></div></blockquote><ul><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.2.3". You may also see other debugging information reported.)</li></ul></li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --listen</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" rel="noopener noreferrer" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <span class="doc-icon"><svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M120.783 34.33c4.641 8.862 7.266 18.948 7.266 29.646 0 35.347-28.653 64-64 64-35.346 0-64-28.653-64-64 0-35.346 28.654-64 64-64 18.808 0 35.72 8.113 47.43 21.03l2.68-2.68c3.13-3.13 8.197-3.132 11.321-.008 3.118 3.118 3.121 8.193-.007 11.32l-4.69 4.691zm-12.058 12.058a47.876 47.876 0 013.324 17.588c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48c14.39 0 27.3 6.332 36.098 16.362L58.941 73.544 41.976 56.578c-3.127-3.127-8.201-3.123-11.32-.005-3.123 3.124-3.119 8.194.006 11.319l22.617 22.617a7.992 7.992 0 005.659 2.347c2.05 0 4.101-.783 5.667-2.349l44.12-44.12z" fill-rule="evenodd"></path></svg></span> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki mynewwiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p><div class="doc-icon-block"><div class="doc-block-icon"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg></div> If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" rel="noopener noreferrer" target="_blank">issue 1434</a>. <br><br>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code></div></p><p><br>
5
+ <div class="doc-icon-block"><div class="doc-block-icon"><svg class="tc-image-tip tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M64 128.242c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64 0 35.346 28.654 64 64 64zm11.936-36.789c-.624 4.129-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349C54.33 94.05 58.824 95.82 64 95.82c5.175 0 9.67-1.769 11.936-4.366zm0 4.492c-.624 4.13-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zm0 4.456c-.624 4.129-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zm0 4.492c-.624 4.13-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zM64.3 24.242c11.618 0 23.699 7.82 23.699 24.2S75.92 71.754 75.92 83.576c0 5.873-5.868 9.26-11.92 9.26s-12.027-3.006-12.027-9.26C51.973 71.147 40 65.47 40 48.442s12.683-24.2 24.301-24.2z" fill-rule="evenodd"></path></svg></div> You can also install prior versions like this: <br><code> npm install -g tiddlywiki@5.1.13</code></div>
6
+ </p><h1 class="">Using <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p>TiddlyWiki5 includes a set of commands for use on the command line to perform an extensive set of operations based on <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a>, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a>.</p><p>For example, the following command loads the tiddlers from a TiddlyWiki HTML file and then saves one of them in static HTML:</p><pre><code>tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html</code></pre><p>Running <code>tiddlywiki</code> from the command line boots the TiddlyWiki kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves doc-from-version" href="https://tiddlywiki.com/static/Release%25205.1.20.html"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg> New in: 5.1.20</a> First, there can be zero or more plugin references identified by the prefix <code>+</code> for plugin names or <code>++</code> for a path to a plugin folder. These plugins are loaded in addition to any specified in the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a>.</p><p>The next argument is the optional path to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a> to be loaded. If not present, then the current directory is used.</p><p>The commands and their individual arguments follow, each command being identified by the prefix <code>--</code>.</p><pre><code>tiddlywiki [+&lt;pluginname&gt; | ++&lt;pluginpath&gt;] [&lt;wikipath&gt;] [--&lt;command&gt; [&lt;arg&gt;[,&lt;arg&gt;]]]</code></pre><p>For example:</p><pre><code>tiddlywiki --version
5
7
  tiddlywiki +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb mywiki --listen
6
- tiddlywiki ++./mygreatplugin mywiki --listen</code></pre><p><span class="doc-from-version"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg> New in: 5.1.18</span> Commands such as the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/ListenCommand.html">ListenCommand</a> that support large numbers of parameters can use <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/NamedCommandParameters.html">NamedCommandParameters</a> to make things less unwieldy. For example:</p><pre><code>tiddlywiki wikipath --listen username=jeremy port=8090</code></pre><p>See <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Commands.html">Commands</a> for a full listing of the available commands.
7
- </p><h1 class="">Upgrading <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p>If you've installed <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki%2520on%2520Node.js.html">TiddlyWiki on Node.js</a> on the usual way, when a new version is released you can upgrade it with this command:</p><pre><code>npm update -g tiddlywiki</code></pre><p>On Mac or Linux you'll need to add <strong>sudo</strong> like this:</p><pre><code>sudo npm update -g tiddlywiki</code></pre><h1 class="">Also see</h1><p><ul class=""><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/MultiTiddlerFileSyntax.html">MultiTiddlerFileSyntax</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/MultiTiddlerFiles.html">MultiTiddlerFiles</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Generating%2520Static%2520Sites%2520with%2520TiddlyWiki.html">Generating Static Sites with TiddlyWiki</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/How%2520to%2520build%2520a%2520TiddlyWiki5%2520from%2520individual%2520tiddlers.html">How to build a TiddlyWiki5 from individual tiddlers</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Using%2520TiddlyWiki%2520for%2520GitHub%2520project%2520documentation.html">Using TiddlyWiki for GitHub project documentation</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Using%2520a%2520custom%2520path%2520prefix%2520with%2520the%2520client-server%2520edition.html">Using a custom path prefix with the client-server edition</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Building%2520TiddlyWikiClassic.html">Building TiddlyWikiClassic</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Customising%2520Tiddler%2520File%2520Naming.html">Customising Tiddler File Naming</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Environment%2520Variables%2520on%2520Node.js.html">Environment Variables on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520TiddlyWiki%2520Prerelease%2520on%2520Node.js.html">Installing TiddlyWiki Prerelease on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520custom%2520plugins%2520on%2520Node.js.html">Installing custom plugins on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Scripts%2520for%2520TiddlyWiki%2520on%2520Node.js.html">Scripts for TiddlyWiki on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Node.js on Termux</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Working%2520with%2520the%2520TiddlyWiki5%2520repository.html">Working with the TiddlyWiki5 repository</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520a%2520plugin%2520from%2520the%2520plugin%2520library.html">Installing a plugin from the plugin library</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520TiddlyWiki%2520on%2520Microsoft%2520Internet%2520Information%2520Server.html">Internet Information Services</a></li></ul></p><p><em>This readme file was automatically generated by <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></em>
8
+ tiddlywiki ++./mygreatplugin mywiki --listen</code></pre><p><a class="tc-tiddlylink tc-tiddlylink-resolves doc-from-version" href="https://tiddlywiki.com/static/Release%25205.1.18.html"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg> New in: 5.1.18</a> Commands such as the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/ListenCommand.html">ListenCommand</a> that support large numbers of parameters can use <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/NamedCommandParameters.html">NamedCommandParameters</a> to make things less unwieldy. For example:</p><pre><code>tiddlywiki wikipath --listen username=jeremy port=8090</code></pre><p>See <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Commands.html">Commands</a> for a full listing of the available commands.
9
+ </p><h1 class="">Upgrading <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p>If you've installed <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki%2520on%2520Node.js.html">TiddlyWiki on Node.js</a> on the usual way, when a new version is released you can upgrade it with this command:</p><pre><code>npm update -g tiddlywiki</code></pre><p>On Mac or Linux you'll need to add <strong>sudo</strong> like this:</p><pre><code>sudo npm update -g tiddlywiki</code></pre><h1 class="">Also see</h1><p><ul class=""><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Building%2520TiddlyWikiClassic.html">Building TiddlyWikiClassic</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Customising%2520Tiddler%2520File%2520Naming.html">Customising Tiddler File Naming</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Environment%2520Variables%2520on%2520Node.js.html">Environment Variables on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Generating%2520Static%2520Sites%2520with%2520TiddlyWiki.html">Generating Static Sites with TiddlyWiki</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/How%2520to%2520build%2520a%2520TiddlyWiki5%2520from%2520individual%2520tiddlers.html">How to build a TiddlyWiki5 from individual tiddlers</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520custom%2520plugins%2520on%2520Node.js.html">Installing custom plugins on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520official%2520plugins%2520on%2520Node.js.html">Installing official plugins on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520TiddlyWiki%2520on%2520Microsoft%2520Internet%2520Information%2520Server.html">Internet Information Services</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Installing%2520TiddlyWiki%2520Prerelease%2520on%2520Node.js.html">Installing TiddlyWiki Prerelease on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/MultiTiddlerFiles.html">MultiTiddlerFiles</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/MultiTiddlerFileSyntax.html">MultiTiddlerFileSyntax</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/NamedCommandParameters.html">NamedCommandParameters</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Scripts%2520for%2520TiddlyWiki%2520on%2520Node.js.html">Scripts for TiddlyWiki on Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Node.js on Termux</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/tiddlywiki.files%2520Files.html">tiddlywiki.files Files</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/tiddlywiki.info%2520Files.html">tiddlywiki.info Files</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Uninstalling%2520a%2520plugin%2520with%2520Node.js.html">Uninstalling a plugin with Node.js</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Using%2520a%2520custom%2520path%2520prefix%2520with%2520the%2520client-server%2520edition.html">Using a custom path prefix with the client-server edition</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Using%2520TiddlyWiki%2520for%2520GitHub%2520project%2520documentation.html">Using TiddlyWiki for GitHub project documentation</a></li><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Working%2520with%2520the%2520TiddlyWiki5%2520repository.html">Working with the TiddlyWiki5 repository</a></li></ul></p><p><em>This readme file was automatically generated by <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></em>
8
10
  </p>
@@ -36,7 +36,8 @@ tags: [[$:/tags/Stylesheet]]
36
36
  <<filter "drop-shadow(0px -1px 2px rgba(0,0,0,0.25))">>
37
37
  }
38
38
 
39
- .tc-tiddler-frame input.tc-edit-texteditor {
39
+ .tc-tiddler-frame input.tc-edit-texteditor,
40
+ .tc-tiddler-frame select.tc-edit-texteditor {
40
41
  <<box-shadow "inset 0 1px 8px rgba(0, 0, 0, 0.15)">>
41
42
  }
42
43
 
@@ -10,9 +10,10 @@ caption: {{$:/language/ThemeTweaks/ThemeTweaks}}
10
10
 
11
11
  \define backgroundimage-dropdown()
12
12
  <div class="tc-drop-down-wrapper">
13
- <$button popup=<<qualify "$:/state/popup/themetweaks/backgroundimage">> class="tc-btn-invisible tc-btn-dropdown">{{$:/core/images/down-arrow}}</$button>
14
- <$reveal state=<<qualify "$:/state/popup/themetweaks/backgroundimage">> type="popup" position="belowleft" text="" default="">
15
- <div class="tc-drop-down">
13
+ <$set name="state" value=<<qualify "$:/state/popup/themetweaks/backgroundimage">>>
14
+ <$button popup=<<state>> class="tc-btn-invisible tc-btn-dropdown">{{$:/core/images/down-arrow}}</$button>
15
+ <$reveal state=<<state>> type="popup" position="belowleft" text="" default="" class="tc-popup-keep">
16
+ <div class="tc-drop-down" style="text-align:center;">
16
17
  <$macrocall $name="image-picker" actions="""
17
18
 
18
19
  <$action-setfield
@@ -20,9 +21,12 @@ caption: {{$:/language/ThemeTweaks/ThemeTweaks}}
20
21
  $value=<<imageTitle>>
21
22
  />
22
23
 
24
+ <$action-deletetiddler $tiddler=<<state>>/>
25
+
23
26
  """/>
24
27
  </div>
25
28
  </$reveal>
29
+ </$set>
26
30
  </div>
27
31
  \end
28
32
 
@@ -1,5 +1,6 @@
1
1
  title: $:/themes/tiddlywiki/vanilla/base
2
2
  tags: [[$:/tags/Stylesheet]]
3
+ code-body: yes
3
4
 
4
5
  \define custom-background-datauri()
5
6
  <$set name="background" value={{$:/themes/tiddlywiki/vanilla/settings/backgroundimage}}>
@@ -278,6 +279,10 @@ kbd {
278
279
  color: <<colour selection-foreground>>;
279
280
  }
280
281
 
282
+ form.tc-form-inline {
283
+ display: inline;
284
+ }
285
+
281
286
  /*
282
287
  Markdown likes putting code elements inside pre elements
283
288
  */
@@ -333,6 +338,10 @@ table tfoot tr td {
333
338
  height: 600px;
334
339
  }
335
340
 
341
+ :root {
342
+ color-scheme: {{{ [{$:/palette}get[color-scheme]] ~light }}};
343
+ }
344
+
336
345
  /*
337
346
  ** Links
338
347
  */
@@ -729,7 +738,7 @@ button.tc-tag-label, span.tc-tag-label {
729
738
  font-weight: normal;
730
739
  line-height: 1.2em;
731
740
  color: <<colour tag-foreground>>;
732
- white-space: nowrap;
741
+ white-space: break-spaces;
733
742
  vertical-align: baseline;
734
743
  background-color: <<colour tag-background>>;
735
744
  border-radius: 1em;
@@ -766,7 +775,6 @@ button.tc-untagged-label {
766
775
  }
767
776
 
768
777
  .tc-tag-manager-table .tc-tag-label {
769
- white-space: normal;
770
778
  }
771
779
 
772
780
  .tc-tag-manager-tag {
@@ -1042,6 +1050,8 @@ button.tc-btn-invisible.tc-remove-tag-button {
1042
1050
 
1043
1051
  .tc-view-field-name {
1044
1052
  width: 1%; /* Makes this column be as narrow as possible */
1053
+ white-space: nowrap;
1054
+ vertical-align: top;
1045
1055
  text-align: right;
1046
1056
  font-style: italic;
1047
1057
  font-weight: normal;
@@ -1194,15 +1204,22 @@ button.tc-btn-invisible.tc-remove-tag-button {
1194
1204
 
1195
1205
  .tc-tiddler-frame input.tc-edit-texteditor,
1196
1206
  .tc-tiddler-frame textarea.tc-edit-texteditor,
1197
- .tc-tiddler-frame iframe.tc-edit-texteditor {
1207
+ .tc-tiddler-frame iframe.tc-edit-texteditor,
1208
+ .tc-tiddler-frame select.tc-edit-texteditor {
1198
1209
  padding: 3px 3px 3px 3px;
1199
1210
  border: 1px solid <<colour tiddler-editor-border>>;
1200
1211
  line-height: 1.3em;
1201
- -webkit-appearance: none;
1202
1212
  font-family: {{$:/themes/tiddlywiki/vanilla/settings/editorfontfamily}};
1203
1213
  }
1204
1214
 
1205
1215
  .tc-tiddler-frame input.tc-edit-texteditor,
1216
+ .tc-tiddler-frame textarea.tc-edit-texteditor,
1217
+ .tc-tiddler-frame iframe.tc-edit-texteditor {
1218
+ -webkit-appearance: none;
1219
+ }
1220
+
1221
+ .tc-tiddler-frame input.tc-edit-texteditor,
1222
+ .tc-tiddler-frame select.tc-edit-texteditor,
1206
1223
  .tc-tiddler-frame textarea.tc-edit-texteditor {
1207
1224
  background-color: <<colour tiddler-editor-background>>;
1208
1225
  }
@@ -1211,6 +1228,13 @@ button.tc-btn-invisible.tc-remove-tag-button {
1211
1228
  background-color: <<colour tiddler-background>>;
1212
1229
  }
1213
1230
 
1231
+ .tc-tiddler-frame .tc-edit-fields input.tc-edit-fieldeditor,
1232
+ .tc-tiddler-frame .tc-edit-fields select.tc-edit-fieldeditor,
1233
+ .tc-tiddler-frame .tc-edit-fields textarea.tc-edit-fieldeditor {
1234
+ margin: 0;
1235
+ padding: 2px 3px;
1236
+ }
1237
+
1214
1238
  .tc-tiddler-frame .tc-binary-warning {
1215
1239
  width: 100%;
1216
1240
  height: 5em;
@@ -2133,6 +2157,10 @@ html body.tc-body.tc-single-tiddler-window {
2133
2157
  margin: 0.5em 0;
2134
2158
  }
2135
2159
 
2160
+ .tc-manager-control select {
2161
+ max-width: 100%;
2162
+ }
2163
+
2136
2164
  .tc-manager-list {
2137
2165
  width: 100%;
2138
2166
  border-top: 1px solid <<colour muted-foreground>>;
@@ -2336,7 +2364,7 @@ html body.tc-body.tc-single-tiddler-window {
2336
2364
  border-top-left-radius: 4px;
2337
2365
  border-top-right-radius: 4px;
2338
2366
  border: 1px solid <<colour background>>;
2339
- border-bottom-none;
2367
+ border-bottom: none;
2340
2368
  background: <<colour dirty-indicator>>;
2341
2369
  color: <<colour background>>;
2342
2370
  fill: <<colour background>>;
@@ -2369,6 +2397,7 @@ html body.tc-body.tc-single-tiddler-window {
2369
2397
 
2370
2398
  .tc-plugin-info {
2371
2399
  display: flex;
2400
+ text-shadow: none;
2372
2401
  border: 1px solid <<colour muted-foreground>>;
2373
2402
  fill: <<colour muted-foreground>>;
2374
2403
  background-color: <<colour background>>;
@@ -2377,6 +2406,11 @@ html body.tc-body.tc-single-tiddler-window {
2377
2406
  align-items: center;
2378
2407
  }
2379
2408
 
2409
+ .tc-sidebar-lists a.tc-tiddlylink.tc-plugin-info {
2410
+ color: <<colour tiddler-link-foreground>>;
2411
+ }
2412
+
2413
+
2380
2414
  .tc-plugin-info-sub-plugins .tc-plugin-info {
2381
2415
  margin: 0.5em;
2382
2416
  background: <<colour background>>;
@@ -2774,7 +2808,7 @@ input.tc-palette-manager-colour-input {
2774
2808
  ** Dirty indicator
2775
2809
  */
2776
2810
 
2777
- body.tc-dirty span.tc-dirty-indicator, body.tc-dirty span.tc-dirty-indicator svg {
2811
+ html body.tc-dirty span.tc-dirty-indicator, html body.tc-dirty span.tc-dirty-indicator svg {
2778
2812
  fill: <<colour dirty-indicator>>;
2779
2813
  color: <<colour dirty-indicator>>;
2780
2814
  }
@@ -1,5 +1,5 @@
1
1
  title: $:/themes/tiddlywiki/vanilla/reset
2
- type: text/plain
2
+ type: text/css
3
3
 
4
4
  /*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
5
5
 
@@ -1,4 +1,5 @@
1
1
  title: $:/themes/tiddlywiki/vanilla/sticky
2
+ code-body: yes
2
3
 
3
4
  <$reveal state="$:/themes/tiddlywiki/vanilla/options/stickytitles" type="match" text="yes">
4
5
  ``
@@ -1,43 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve TiddlyWiki 5
4
- title: "[BUG]"
5
- labels: ''
6
- assignees: ''
7
-
8
- ---
9
-
10
- **Describe the bug**
11
- A clear and concise description of what the bug is.
12
-
13
- **To Reproduce**
14
- Steps to reproduce the behavior:
15
- 1. Go to '...'
16
- 2. Click on '....'
17
- 3. Scroll down to '....'
18
- 4. See error
19
-
20
- **Expected behavior**
21
- A clear and concise description of what you expected to happen.
22
-
23
- **Screenshots**
24
- If applicable, add screenshots to help explain your problem.
25
-
26
- **TiddlyWiki Configuration (please complete the following information):**
27
- - Version [e.g. v5.1.24]
28
- - Saving mechanism [e.g. Node.js, TiddlyDesktop, TiddlyHost etc]
29
- - Plugins installed [e.g. Freelinks, TiddlyMap]
30
-
31
- **Desktop (please complete the following information):**
32
- - OS: [e.g. iOS]
33
- - Browser [e.g. chrome, safari]
34
- - Version [e.g. 22]
35
-
36
- **Smartphone (please complete the following information):**
37
- - Device: [e.g. iPhone6]
38
- - OS: [e.g. iOS8.1]
39
- - Browser [e.g. stock browser, safari]
40
- - Version [e.g. 22]
41
-
42
- **Additional context**
43
- Add any other context about the problem here.
@@ -1,15 +0,0 @@
1
- title: $:/core/ui/ViewTemplate/plugin
2
- tags: $:/tags/ViewTemplate
3
-
4
- <$reveal tag="div" class="tc-tiddler-plugin-info" type="nomatch" stateTitle=<<folded-state>> text="hide" retain="yes" animate="yes">
5
-
6
- <$list filter="[all[current]has[plugin-type]] -[all[current]field:plugin-type[import]]">
7
- <$set name="plugin-type" value={{!!plugin-type}}>
8
- <$set name="default-popup-state" value="yes">
9
- <$set name="qualified-state" value=<<qualify "$:/state/plugin-info">>>
10
- {{||$:/core/ui/Components/plugin-info}}
11
- </$set>
12
- </$set>
13
- </$set>
14
- </$list>
15
- </$reveal>
@@ -1,15 +0,0 @@
1
- caption: {{$:/language/SideBar/Open/Caption}}
2
- created: 20141119223515194
3
- modified: 20141127160706002
4
- tags: $:/tags/SideBar
5
- title: $:/core/ui/SideBar/Open
6
- type: text/vnd.tiddlywiki
7
-
8
- \define lingo-base() $:/language/CloseAll/
9
- <$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
10
-
11
- <$button message="tm-close-tiddler" tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$transclude field="fr-title"><$view field="title"/></$transclude></$link>
12
-
13
- </$list>
14
-
15
- <$button message="tm-close-all-tiddlers" class="tc-btn-invisible tc-btn-mini"><<lingo Button>></$button>
@@ -1,46 +0,0 @@
1
- created: 20141119191707140
2
- modified: 20141128165607841
3
- tags: $:/tags/ViewTemplate
4
- title: $:/core/ui/ViewTemplate/title
5
- type: text/vnd.tiddlywiki
6
-
7
- \define title-styles()
8
- fill:$(foregroundColor)$;
9
- \end
10
- \define config-title()
11
- $:/config/ViewToolbarButtons/Visibility/$(listItem)$
12
- \end
13
- <div class="tc-tiddler-title">
14
- <div class="tc-titlebar">
15
- <span class="tc-tiddler-controls">
16
- <$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewToolbar]!has[draft.of]]" variable="listItem"><$reveal type="nomatch" state=<<config-title>> text="hide"><$transclude tiddler=<<listItem>>/></$reveal></$list>
17
- </span>
18
- <$set name="tv-wikilinks" value={{$:/config/Tiddlers/TitleLinks}}>
19
- <$link>
20
- <$set name="foregroundColor" value={{!!color}}>
21
- <span class="tc-tiddler-title-icon" style=<<title-styles>>>
22
- <$transclude tiddler={{!!icon}}/>
23
- </span>
24
- </$set>
25
- <$list filter="[all[current]removeprefix[$:/]]">
26
- <h2 class="tc-title" title={{$:/language/SystemTiddler/Tooltip}}>
27
- <span class="tc-system-title-prefix">$:/</span><$text text=<<currentTiddler>>/>
28
- </h2>
29
- </$list>
30
- <$list filter="[all[current]!prefix[$:/]]">
31
- <h2 class="tc-title">
32
- <$view field="fr-title">
33
- <$view field="title"/>
34
- </$view>
35
- </h2>
36
- </$list>
37
- </$link>
38
- </$set>
39
- </div>
40
-
41
- <$reveal type="nomatch" text="" default="" state=<<tiddlerInfoState>> class="tc-tiddler-info tc-popup-handle" animate="yes" retain="yes">
42
-
43
- <$transclude tiddler="$:/core/ui/TiddlerInfo"/>
44
-
45
- </$reveal>
46
- </div>
@@ -1,47 +0,0 @@
1
- created: 20150531155638729
2
- modified: 20150601094935758
3
- tags: $:/tags/Macro
4
- title: $:/editions/tw5.com/wikitext-macros
5
- type: text/vnd.tiddlywiki
6
-
7
- \define wikitext-example(src)
8
- <div class="doc-example">
9
-
10
- ```
11
- $src$
12
- ```
13
-
14
- Affichera ceci&nbsp;:
15
-
16
- $src$
17
-
18
- ... Génération du HTML&nbsp;:
19
-
20
- $$$text/vnd.tiddlywiki>text/html
21
- $src$
22
- $$$
23
- </div>
24
- \end
25
-
26
- \define wikitext-example-without-html(src)
27
- <div class="doc-example">
28
-
29
- ```
30
- $src$
31
- ```
32
-
33
- Affichera ceci&nbsp;:
34
-
35
- $src$
36
- </div>
37
- \end
38
-
39
- \define tw-code(tiddler)
40
- <$codeblock language={{$tiddler$!!type}} code={{$tiddler$}}/>
41
- \end
42
-
43
- \define tw-code-link(tiddler)
44
- [[$tiddler$]]:
45
-
46
- <<tw-code $tiddler$>>
47
- \end
@@ -1,33 +0,0 @@
1
- caption: Blocs de code
2
- created: 20141016143834720
3
- modified: 20141116091520961
4
- tags: WikiText
5
- title: Code Blocks in WikiText
6
- fr-title: Blocs de code en WikiText
7
- type: text/vnd.tiddlywiki
8
-
9
- Un bloc de code est délimité par trois caractères "accents graves" <code>&#96;&#96;&#96;</code> (connus en anglais sous le nom de "backticks") :
10
-
11
- <pre>
12
- Ceci est un paragraphe ordinaire.
13
-
14
- &#96;&#96;&#96;
15
- Ce texte aura une chasse fixe et ne sera pas &#96;formaté&#96;.
16
- &#96;&#96;&#96;
17
- </pre>
18
-
19
- <div class="tc-message-box">
20
-
21
- Ceci est un paragraphe ordinaire.
22
-
23
- ```
24
- Ce texte aura une chasse fixe et ne sera pas `formaté`.
25
- ```
26
- </div>
27
-
28
- ; Remarques
29
- * Pour être interprétés correctements, les trois backticks doivent être :
30
- ** précédés de deux retours à la ligne (pour terminer correctement le paragraphe précédent) ;
31
- ** au début de la ligne ;
32
- ** immédiatement suivis d'un retour à la ligne.
33
- * Certains claviers traitent le backtick comme une [[touche morte|http://fr.wikipedia.org/wiki/Touche_morte]], le rendant difficile à taper. L'astuce est de taper 3 <code>&#96;</code> suivis d'un espace. Une autre méthode consiste à taper 6 <code>&#96;</code> d'affilée, puis de bouger le curseur en arrière trois fois pour taper ou coller le contenu du bloc.
@@ -1,23 +0,0 @@
1
- caption: Formatage
2
- created: 20141016142259705
3
- fr-title: Mise en forme avec WikiText
4
- modified: 20150601093436425
5
- tags: WikiText
6
- title: Formatting in WikiText
7
- type: text/vnd.tiddlywiki
8
-
9
- Voici les formatages de texte disponibles en [[WikiTexte|WikiText]] :
10
-
11
- |Format |Résultat |h
12
- |`''gras''` |texte en ''gras'' |
13
- |`//italique//` |texte en //italique// |
14
- |`__souligné__` |texte __souligné__ |
15
- |`~~barré~~` |texte ~~barré~~ |
16
- |<code>&#96;code&#96;</code><br><code>&#96;&#96;code contenant du &#96;code&#96; &#96;&#96;</code> |`code`<br>``code contenant du `code` `` |
17
- |`^^exposant^^` |texte en ^^exposant^^ |
18
- |`,,indice,,` |texte en ,,indice,, |
19
-
20
- Voir aussi : [[WikiTexte : blocs de code|Code Blocks in WikiText]]
21
-
22
- ; Remarque
23
- * Si le code inclus est à la fin du code contenant, l'espace entre le <code>&#96;</code> et les <code>&#96;&#96;</code> est nécessaire.
@@ -1,17 +0,0 @@
1
- caption: Ligne horizontale
2
- created: 20141017091105859
3
- modified: 20141116092622611
4
- tags: WikiText
5
- title: Horizontal Rules in WikiText
6
- fr-title: Lignes horizontales en WikiText
7
- type: text/vnd.tiddlywiki
8
-
9
- Une ligne horizontale se crée avec trois caractères "moins" ou plus `---`, seuls sur une ligne :
10
-
11
- <<wikitexte-exemple "Paragraphe précédent.
12
-
13
- ---
14
- Paragraphe suivant.">>
15
-
16
- ; Remarque
17
- * La ligne vide avant la ligne horizontale est nécessaire pour que cette dernière soit interprétée correctement, et non comme un [[tiret|Dashes in WikiText]].
@@ -1,48 +0,0 @@
1
- caption: Images
2
- created: 20131205160221762
3
- fr-title: Les images dans WikiText
4
- modified: 20150601074111435
5
- tags: WikiText [[Working with TiddlyWiki]]
6
- title: Images in WikiText
7
- type: text/vnd.tiddlywiki
8
-
9
- ! Intégration d'image
10
-
11
- Les images peuvent être affichées avec WikiText avec la syntaxe suivante, selon que l'image soit déjà incluse dans un tiddler ou pointe vers une source externe&nbsp;:
12
-
13
- ```
14
- [img[Sainte Anastasie.png]]
15
- ou [img[https://tiddlywiki.com/favicon.ico]]
16
- ```
17
-
18
- [img[Sainte Anastasie.png]]
19
- ou [img[https://tiddlywiki.com/favicon.ico]]
20
-
21
- Si la source de l'image correspond au titre d'un tiddler, alors le tiddler est affiché directement. Autrement elle est interprétée comme une URL et la balise HTML `<img>` est générée muni de l'attribut `src` contenant l'URL.
22
-
23
- Une info-bulle, visible au survol par la souris, peut être spécifiée, ainsi que les attributs `width` (largeur), `height` (hauteur) et la `class` &nbsp;:
24
-
25
- ```
26
- [img width=80 class="tc-image" [Sculpture époque médiévale - France - Gard - Sainte Anastasie|Sainte Anastasie.png]]
27
- ```
28
- [img width=80 class="tc-image" [Sculpture époque médiévale - France - Gard - Sainte Anastasie|Sainte Anastasie.png]]
29
-
30
- Noter aussi que les attributs peuvent être spécifiés par des transclusions ou des références à des variables:
31
-
32
- ```
33
- [img width={{!!mywidth}} class=<<image-classes>> [Sainte Anastasie.png]]
34
- ```
35
-
36
- > La syntaxe d'image est un raccourci d'appel à la fonctionnalité ImageWidget.
37
-
38
- ! Affichage des images par transclusion
39
-
40
- Vous pouvez aussi afficher l'image incluse dans un tiddler en transcluant ce tiddler. L'inconvénient de cette méthode est qu'il n'y a alors pas de moyen directe pour contrôler la taille de l'image.
41
-
42
- ```
43
- {{Sainte Anastasie.png}}
44
- ```
45
-
46
- Affichera&nbsp;:
47
-
48
- {{Sainte Anastasie.png}}
@@ -1,14 +0,0 @@
1
- created: 20130825162000000
2
- fr-title: Importer du contenu
3
- modified: 20150531190339977
4
- tags: Features
5
- title: ImportTiddlers
6
- type: text/vnd.tiddlywiki
7
-
8
- On peut importer du contenu dans un fichier <<tw>> de plusieurs façons<<dp>>
9
-
10
- * En utilisant le bouton ''importer'' (sous l'onglet ''Outils'' dans la barre latérale, ou dans le [[Panneau de contrôle|$:/ControlPanel]]) pour choisir un ou plusieurs fichiers locaux<<pv>>
11
- * En glissant-déposant des fichiers à partir de l'explorateur Windows ou du Finder Mac OS X sur la fenêtre TiddlyWiki5 du navigateur
12
- * En collant directement le contenu du presse-papier à l'aide du raccourci clavier (contrôle-V ou commande-V)
13
- ** Coller depuis le presse-papier n'est pour l'instant possible que dans GoogleChrome
14
-