tiddlywiki 5.3.7 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.json +34 -0
- package/.claude/settings.local.json +21 -0
- package/.gitattributes +4 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +62 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +8 -2
- package/.github/workflows/ci.yml +8 -8
- package/.github/workflows/eslint.yml +40 -0
- package/.github/workflows/pr-check-build-size.yml +4 -4
- package/.github/workflows/pr-comment-build-size.yml +1 -1
- package/.github/workflows/pr-validation.yml +37 -0
- package/bin/build-site.sh +1 -24
- package/bin/build-tw-org.sh +1 -1
- package/bin/optimise-svgs.js +32 -32
- package/boot/boot.js +112 -96
- package/boot/bootprefix.js +4 -0
- package/community/docs/Community Cards Caveats.tid +5 -0
- package/community/docs/Community Cards.tid +11 -0
- package/community/docs/Displaying Community Cards.tid +26 -0
- package/community/docs/Submitting a Community Card.tid +36 -0
- package/community/people/Arlen22.tid +10 -0
- package/community/people/ChristianByron.tid +14 -0
- package/community/people/EricShulman.tid +29 -0
- package/community/people/Jermolene.tid +21 -0
- package/community/people/LinOnetwo.tid +19 -0
- package/community/people/MotovunJack.tid +11 -0
- package/community/people/PMario.tid +25 -0
- package/community/people/SaqImtiaz.tid +16 -0
- package/community/people/kjharcombe.tid +7 -0
- package/community/project/TiddlyWiki People.tid +10 -0
- package/community/project/TiddlyWiki Project.tid +10 -0
- package/community/project/Vacant Positions.tid +4 -0
- package/community/project/teams/Core Team.tid +8 -0
- package/community/project/teams/Developer Experience Team.tid +19 -0
- package/community/project/teams/Infrastructure Team.tid +16 -0
- package/community/project/teams/MultiWikiServer Team.tid +8 -0
- package/community/project/teams/Project Team.tid +15 -0
- package/community/project/teams/Quality Assurance Team.tid +11 -0
- package/community/project/teams/Succession Team.tid +13 -0
- package/community/project/teams/TiddlyWiki Newsletter Team.tid +15 -0
- package/community/project/teams/tagCommunityTeam.tid +5 -0
- package/community/readme.md +3 -0
- package/community/tools/cards/DefaultColourMappings.multids +15 -0
- package/community/tools/cards/Procedures.tid +168 -0
- package/community/tools/cards/Styles.tid +158 -0
- package/community/tools/cards/ViewTemplateBodyCascade.tid +6 -0
- package/community/tools/cards/ViewTemplateBodyTemplatePerson.tid +3 -0
- package/community/tools/cards/ViewTemplateBodyTemplateTeam.tid +3 -0
- package/community/tools/icons/person.tid +7 -0
- package/community/tools/icons/project-team.tid +7 -0
- package/community/tools/icons/team.tid +9 -0
- package/contributing.md +1 -1
- package/core/acknowledgements.tid +2 -1
- package/core/language/en-GB/ControlPanel.multids +2 -1
- package/core/language/en-GB/Draft.multids +4 -0
- package/core/language/en-GB/Import.multids +2 -0
- package/core/language/en-GB/Misc.multids +1 -0
- package/core/language/en-GB/TiddlerInfo.multids +5 -0
- package/core/modules/background-actions.js +116 -0
- package/core/modules/editor/engines/framed.js +4 -4
- package/core/modules/editor/engines/simple.js +2 -1
- package/core/modules/editor/factory.js +11 -11
- package/core/modules/editor/operations/text/excise.js +1 -1
- package/core/modules/editor/operations/text/wrap-lines.js +1 -1
- package/core/modules/editor/operations/text/wrap-selection.js +1 -1
- package/core/modules/filter-tracker.js +106 -0
- package/core/modules/filterrunprefixes/cascade.js +2 -2
- package/core/modules/filterrunprefixes/filter.js +2 -2
- package/core/modules/filterrunprefixes/let.js +39 -0
- package/core/modules/filterrunprefixes/map.js +3 -3
- package/core/modules/filterrunprefixes/reduce.js +2 -2
- package/core/modules/filterrunprefixes/sort.js +3 -3
- package/core/modules/filters/compare.js +1 -1
- package/core/modules/filters/deserialize.js +1 -1
- package/core/modules/filters/each.js +2 -2
- package/core/modules/filters/field.js +1 -1
- package/core/modules/filters/fields.js +1 -1
- package/core/modules/filters/filter.js +1 -1
- package/core/modules/filters/format/json.js +2 -6
- package/core/modules/filters/format/timestamp.js +1 -1
- package/core/modules/filters/function.js +2 -2
- package/core/modules/filters/getindex.js +1 -1
- package/core/modules/filters/json-ops.js +71 -21
- package/core/modules/filters/lookup.js +1 -1
- package/core/modules/filters/math.js +29 -25
- package/core/modules/filters/range.js +4 -4
- package/core/modules/filters/removesuffix.js +1 -1
- package/core/modules/filters/strings.js +26 -80
- package/core/modules/filters/suffix.js +1 -1
- package/core/modules/filters/title.js +3 -2
- package/core/modules/filters/unknown.js +2 -2
- package/core/modules/filters/variables.js +1 -1
- package/core/modules/filters/x-listops.js +168 -168
- package/core/modules/filters.js +92 -45
- package/core/modules/indexers/back-indexer.js +8 -8
- package/core/modules/indexers/field-indexer.js +3 -3
- package/core/modules/info/dimensions.js +86 -0
- package/core/modules/info/mediaquerytracker.js +67 -0
- package/core/modules/info/platform.js +0 -7
- package/core/modules/keyboard.js +15 -16
- package/core/modules/macros/csvtiddlers.js +8 -9
- package/core/modules/macros/displayshortcuts.js +2 -2
- package/core/modules/parsers/audioparser.js +18 -8
- package/core/modules/parsers/binaryparser.js +1 -1
- package/core/modules/parsers/csvparser.js +8 -4
- package/core/modules/parsers/imageparser.js +6 -7
- package/core/modules/parsers/parseutils.js +274 -57
- package/core/modules/parsers/pdfparser.js +4 -5
- package/core/modules/parsers/videoparser.js +7 -8
- package/core/modules/parsers/wikiparser/rules/codeblock.js +5 -5
- package/core/modules/parsers/wikiparser/rules/commentblock.js +12 -3
- package/core/modules/parsers/wikiparser/rules/commentinline.js +9 -2
- package/core/modules/parsers/wikiparser/rules/conditional.js +1 -1
- package/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js +1 -1
- package/core/modules/parsers/wikiparser/rules/entity.js +0 -2
- package/core/modules/parsers/wikiparser/rules/extlink.js +2 -2
- package/core/modules/parsers/wikiparser/rules/fnprocdef.js +4 -4
- package/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +3 -1
- package/core/modules/parsers/wikiparser/rules/html.js +10 -10
- package/core/modules/parsers/wikiparser/rules/image.js +1 -1
- package/core/modules/parsers/wikiparser/rules/import.js +0 -1
- package/core/modules/parsers/wikiparser/rules/list.js +1 -0
- package/core/modules/parsers/wikiparser/rules/macrocallblock.js +1 -1
- package/core/modules/parsers/wikiparser/rules/macrocallinline.js +2 -0
- package/core/modules/parsers/wikiparser/rules/macrodef.js +5 -3
- package/core/modules/parsers/wikiparser/rules/mvvdisplayinline.js +95 -0
- package/core/modules/parsers/wikiparser/rules/parsermode.js +8 -2
- package/core/modules/parsers/wikiparser/rules/prettyextlink.js +3 -1
- package/core/modules/parsers/wikiparser/rules/prettylink.js +1 -1
- package/core/modules/parsers/wikiparser/rules/rules.js +9 -2
- package/core/modules/parsers/wikiparser/rules/styleblock.js +4 -1
- package/core/modules/parsers/wikiparser/rules/styleinline.js +1 -1
- package/core/modules/parsers/wikiparser/rules/table.js +2 -2
- package/core/modules/parsers/wikiparser/rules/transcludeblock.js +5 -5
- package/core/modules/parsers/wikiparser/rules/transcludeinline.js +4 -4
- package/core/modules/parsers/wikiparser/rules/typedblock.js +24 -11
- package/core/modules/parsers/wikiparser/wikiparser.js +12 -12
- package/core/modules/pluginswitcher.js +4 -5
- package/core/modules/relinkers/tiddlers.js +54 -0
- package/core/modules/saver-handler.js +4 -4
- package/core/modules/savers/andtidwiki.js +6 -6
- package/core/modules/savers/custom.js +1 -1
- package/core/modules/savers/download.js +3 -1
- package/core/modules/savers/gitea.js +1 -2
- package/core/modules/savers/github.js +1 -3
- package/core/modules/savers/gitlab.js +3 -5
- package/core/modules/savers/postmessage.js +62 -0
- package/core/modules/savers/put.js +1 -1
- package/core/modules/savers/upload.js +1 -2
- package/core/modules/startup/browser-messaging.js +1 -1
- package/core/modules/startup/eventbus.js +46 -0
- package/core/modules/startup/favicon.js +10 -8
- package/core/modules/startup/info.js +10 -4
- package/core/modules/startup/load-modules.js +29 -1
- package/core/modules/startup/plugins.js +0 -1
- package/core/modules/startup/render.js +8 -3
- package/core/modules/startup/rootwidget.js +1 -1
- package/core/modules/startup/startup.js +1 -16
- package/core/modules/startup/windows.js +6 -4
- package/core/modules/storyviews/classic.js +5 -8
- package/core/modules/storyviews/pop.js +7 -11
- package/core/modules/storyviews/zoomin.js +17 -11
- package/core/modules/syncer.js +7 -7
- package/core/modules/upgraders/plugins.js +1 -2
- package/core/modules/upgraders/system.js +1 -2
- package/core/modules/upgraders/themetweaks.js +1 -2
- package/core/modules/utils/base64.js +31 -0
- package/core/modules/utils/csv.js +22 -22
- package/core/modules/utils/deprecated.js +58 -0
- package/core/modules/utils/diff-match-patch/diff_match_patch.js +2 -53
- package/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed.js +826 -1615
- package/core/modules/utils/dom/browser.js +36 -22
- package/core/modules/utils/dom/dom.js +5 -54
- package/core/modules/utils/dom/dragndrop.js +5 -6
- package/core/modules/utils/dom/http.js +8 -9
- package/core/modules/utils/dom/keyboard.js +1 -1
- package/core/modules/utils/dom/modal.js +9 -10
- package/core/modules/utils/dom/notifier.js +0 -2
- package/core/modules/utils/dom/popup.js +6 -6
- package/core/modules/utils/dom/scroller.js +2 -2
- package/core/modules/utils/errors.js +1 -0
- package/core/modules/utils/escapecss.js +2 -88
- package/core/modules/utils/fakedom.js +4 -4
- package/core/modules/utils/linked-list.js +1 -1
- package/core/modules/utils/logger.js +1 -1
- package/core/modules/utils/messaging.js +121 -0
- package/core/modules/utils/parsetree.js +16 -0
- package/core/modules/utils/performance.js +3 -3
- package/core/modules/utils/pluginmaker.js +5 -5
- package/core/modules/utils/transliterate.js +2 -2
- package/core/modules/utils/utils.js +137 -158
- package/core/modules/widgets/action-confirm.js +1 -1
- package/core/modules/widgets/action-createtiddler.js +4 -4
- package/core/modules/widgets/action-listops.js +2 -4
- package/core/modules/widgets/action-log.js +17 -9
- package/core/modules/widgets/audio.js +101 -0
- package/core/modules/widgets/browse.js +1 -1
- package/core/modules/widgets/button.js +23 -11
- package/core/modules/widgets/checkbox.js +3 -3
- package/core/modules/widgets/data.js +1 -1
- package/core/modules/widgets/diff-text.js +27 -10
- package/core/modules/widgets/draggable.js +3 -3
- package/core/modules/widgets/droppable.js +3 -4
- package/core/modules/widgets/dropzone.js +21 -22
- package/core/modules/widgets/edit-binary.js +2 -3
- package/core/modules/widgets/edit-bitmap.js +0 -1
- package/core/modules/widgets/element.js +3 -1
- package/core/modules/widgets/eventcatcher.js +239 -80
- package/core/modules/widgets/fields.js +5 -5
- package/core/modules/widgets/genesis.js +1 -1
- package/core/modules/widgets/image.js +33 -9
- package/core/modules/widgets/importvariables.js +4 -3
- package/core/modules/widgets/jsontiddler.js +0 -1
- package/core/modules/widgets/keyboard.js +8 -9
- package/core/modules/widgets/let.js +6 -5
- package/core/modules/widgets/link.js +27 -13
- package/core/modules/widgets/linkcatcher.js +3 -3
- package/core/modules/widgets/list.js +12 -12
- package/core/modules/widgets/log.js +2 -2
- package/core/modules/widgets/messagecatcher.js +1 -1
- package/core/modules/widgets/navigator.js +29 -29
- package/core/modules/widgets/parameters.js +5 -2
- package/core/modules/widgets/password.js +1 -1
- package/core/modules/widgets/radio.js +1 -1
- package/core/modules/widgets/range.js +7 -21
- package/core/modules/widgets/reveal.js +33 -12
- package/core/modules/widgets/scrollable.js +4 -5
- package/core/modules/widgets/select.js +19 -10
- package/core/modules/widgets/setmultiplevariables.js +31 -31
- package/core/modules/widgets/slot.js +0 -1
- package/core/modules/widgets/testcase.js +1 -1
- package/core/modules/widgets/transclude.js +64 -32
- package/core/modules/widgets/void.js +23 -0
- package/core/modules/widgets/widget.js +179 -64
- package/core/modules/widgets/wikify.js +5 -5
- package/core/modules/wiki-bulkops.js +5 -41
- package/core/modules/wiki.js +45 -59
- package/core/palettes/BrightMute.tid +11 -6
- package/core/palettes/FlexokiDark.tid +2 -2
- package/core/stylesheets/custom-properties.tid +30 -0
- package/core/templates/external-js/save-all-external-js.tid +1 -1
- package/core/templates/external-js/save-offline-external-js.tid +1 -1
- package/core/templates/external-js/tiddlywiki5-external-js.html.tid +8 -6
- package/core/templates/save-all.tid +1 -1
- package/core/templates/save-empty.tid +1 -1
- package/core/templates/save-lazy-all.tid +1 -1
- package/core/templates/save-lazy-images.tid +1 -1
- package/core/ui/AdvancedSearch/Filter.tid +23 -17
- package/core/ui/AdvancedSearch/Shadows.tid +9 -3
- package/core/ui/AdvancedSearch/Standard.tid +13 -7
- package/core/ui/AdvancedSearch/System.tid +9 -3
- package/core/ui/AlertTemplate.tid +3 -3
- package/core/ui/ControlPanel/Basics.tid +1 -0
- package/core/ui/EditTemplate/body-editor.tid +1 -1
- package/core/ui/EditTemplate/body-toolbar-button.tid +4 -2
- package/core/ui/EditTemplate/fields.tid +163 -139
- package/core/ui/EditTemplate/title.tid +5 -1
- package/core/ui/EditTemplate/type.tid +17 -2
- package/core/ui/Filters/StoryList.tid +1 -1
- package/core/ui/ImportListing.tid +35 -15
- package/core/ui/LayoutSwitcher.tid +18 -19
- package/core/ui/PageStylesheet.tid +2 -0
- package/core/ui/PageTemplate/alerts.tid +2 -2
- package/core/ui/SideBar/Open.tid +1 -1
- package/core/ui/SideBar/Tools.tid +1 -1
- package/core/ui/SideBarSegments/search.tid +11 -5
- package/core/ui/TiddlerInfo/Advanced/CascadeInfo.tid +43 -0
- package/core/ui/TiddlerInfo.tid +1 -1
- package/core/ui/ViewTemplate/title.tid +7 -3
- package/core/ui/WikiInformation.tid +3 -0
- package/core/wiki/config/MediaQueryTrackers/DarkLightPreferred.tid +5 -0
- package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
- package/core/wiki/config/TiddlerInfoMode.tid +1 -1
- package/core/wiki/languageswitcher.tid +12 -12
- package/core/wiki/macros/CSS-property.tid +39 -0
- package/core/wiki/macros/CSS.tid +0 -50
- package/core/wiki/macros/colour-picker.tid +22 -19
- package/core/wiki/macros/deprecated.tid +43 -0
- package/core/wiki/macros/dumpvariables.tid +1 -1
- package/core/wiki/macros/image-picker.tid +16 -13
- package/core/wiki/macros/keyboard-driven-input.tid +16 -10
- package/core/wiki/macros/list.tid +83 -69
- package/core/wiki/macros/tabs.tid +4 -3
- package/core/wiki/macros/tag-picker.tid +3 -2
- package/core/wiki/macros/toc.tid +32 -5
- package/core/wiki/macros/translink.tid +13 -13
- package/core/wiki/macros/tree.tid +24 -20
- package/core/wiki/minifocuseditswitcher.tid +8 -0
- package/core/wiki/tags/TiddlerInfoAdvanced.tid +1 -1
- package/core/wiki/themeswitcher.tid +10 -9
- package/core/wiki/viewswitcher.tid +5 -4
- package/core-server/commander.js +176 -0
- package/core-server/commands/commands.js +36 -0
- package/core-server/commands/deletetiddlers.js +36 -0
- package/core-server/commands/fetch.js +170 -0
- package/core-server/commands/import.js +42 -0
- package/core-server/commands/init.js +53 -0
- package/core-server/commands/listen.js +42 -0
- package/core-server/commands/load.js +44 -0
- package/core-server/commands/output.js +32 -0
- package/core-server/commands/render.js +63 -0
- package/core-server/commands/rendertiddlers.js +62 -0
- package/core-server/commands/save.js +62 -0
- package/core-server/commands/savetiddlers.js +49 -0
- package/core-server/commands/savewikifolder.js +221 -0
- package/core-server/commands/server.js +49 -0
- package/core-server/commands/setfield.js +50 -0
- package/core-server/filesystem.js +541 -0
- package/core-server/plugin.info +11 -0
- package/core-server/readme.tid +7 -0
- package/core-server/server/authenticators/basic.js +87 -0
- package/core-server/server/routes/delete-tiddler.js +26 -0
- package/core-server/server/routes/get-favicon.js +22 -0
- package/core-server/server/routes/get-file.js +73 -0
- package/core-server/server/routes/get-index.js +25 -0
- package/core-server/server/routes/get-login-basic.js +34 -0
- package/core-server/server/routes/get-status.js +31 -0
- package/core-server/server/routes/get-tiddler-html.js +42 -0
- package/core-server/server/routes/get-tiddler.js +44 -0
- package/core-server/server/routes/get-tiddlers-json.js +48 -0
- package/core-server/server/routes/put-tiddler.js +50 -0
- package/core-server/server/server.js +393 -0
- package/core-server/utils/base64.js +30 -0
- package/core-server/utils/escapecss.js +95 -0
- package/core-server/utils/repository.js +45 -0
- package/editions/de-AT/tiddlers/external/tiddlywiki.files +2 -2
- package/editions/de-AT/tiddlers/system/$__editions_de-AT-DE_download-empty.tid +1 -1
- package/editions/de-AT/tiddlywiki.info +1 -2
- package/editions/de-DE/tiddlywiki.info +1 -2
- package/editions/dev/tiddlers/$__StoryList.tid +3 -0
- package/editions/dev/tiddlers/How to Create a Custom Cascade Entry.tid +127 -0
- package/editions/dev/tiddlers/build/Releasing a new version of TiddlyWiki.tid +11 -6
- package/editions/dev/tiddlers/from Heigele and Jurke/RootWidget and Rendering Startup.tid +5 -1
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +1 -1
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +1 -1
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +1 -1
- package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +1 -1
- package/editions/empty/tiddlywiki.info +1 -2
- package/editions/es-ES/tiddlers/system/download-empty.tid +1 -1
- package/editions/es-ES/tiddlywiki.info +1 -2
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_railroad_macro-parameter-value.tid +3 -1
- package/editions/fr-FR/tiddlers/Macro_Call_Syntax.tid +1 -1
- package/editions/fr-FR/tiddlers/Macro_Definition_Syntax.tid +1 -1
- package/editions/fr-FR/tiddlers/ReleaseTemplate.tid +1 -0
- package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +17 -0
- package/editions/fr-FR/tiddlers/system/download-empty.tid +1 -1
- package/editions/fr-FR/tiddlywiki.info +1 -2
- package/editions/ja-JP/tiddlers/Concatenating a text reference to create a URL.tid +15 -0
- package/editions/ja-JP/tiddlers/Concatenating variables to create a URL.tid +15 -0
- package/editions/ja-JP/tiddlers/TiddlyWiki Docs PR Maker.tid +4 -5
- package/editions/ja-JP/tiddlers/Welcome.tid +10 -0
- package/editions/ja-JP/tiddlers/_TiddlyStudy_ by Kebi.tid +28 -0
- package/editions/ja-JP/tiddlers/_tw_shared/doc-utilities/wikitext-macros.tid +91 -0
- package/editions/ja-JP/tiddlers/about/Archive.tid +3 -3
- package/editions/ja-JP/tiddlers/about/Developers.tid +3 -21
- package/editions/ja-JP/tiddlers/about/Donations.tid +17 -0
- package/editions/ja-JP/tiddlers/about/Funding TiddlyWiki.tid +1 -1
- package/editions/ja-JP/tiddlers/about/History of TiddlyWiki.tid +7 -81
- package/editions/ja-JP/tiddlers/about/The Story of TiddlyWiki.tid +71 -0
- package/editions/ja-JP/tiddlers/about/TiddlyWiki Anniversaries.tid +33 -0
- package/editions/ja-JP/tiddlers/commands/BuildCommand.tid +13 -0
- package/editions/ja-JP/tiddlers/commands/ClearPasswordCommand.tid +6 -0
- package/editions/ja-JP/tiddlers/commands/Commands.tid +17 -0
- package/editions/ja-JP/tiddlers/commands/CommandsCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/DeleteTiddlersCommand.tid +9 -0
- package/editions/ja-JP/tiddlers/commands/EditionsCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/FetchCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/HelpCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/ImportCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/InitCommand.tid +14 -0
- package/editions/ja-JP/tiddlers/commands/ListenCommand.tid +12 -0
- package/editions/ja-JP/tiddlers/commands/LoadCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/MakeLibraryCommand.tid +12 -0
- package/editions/ja-JP/tiddlers/commands/OutputCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/PasswordCommand.tid +6 -0
- package/editions/ja-JP/tiddlers/commands/RenderCommand.tid +18 -0
- package/editions/ja-JP/tiddlers/commands/RenderTiddlerCommand.tid +9 -0
- package/editions/ja-JP/tiddlers/commands/RenderTiddlersCommand.tid +9 -0
- package/editions/ja-JP/tiddlers/commands/SaveCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/SaveTiddlerCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/SaveTiddlersCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/SaveWikiFolderCommand.tid +9 -0
- package/editions/ja-JP/tiddlers/commands/ServerCommand.tid +16 -0
- package/editions/ja-JP/tiddlers/commands/SetFieldCommand.tid +9 -0
- package/editions/ja-JP/tiddlers/commands/UnpackPluginCommand.tid +10 -0
- package/editions/ja-JP/tiddlers/commands/VerboseCommand.tid +6 -0
- package/editions/ja-JP/tiddlers/commands/VersionCommand.tid +6 -0
- package/editions/ja-JP/tiddlers/community/Articles.tid +3 -3
- package/editions/ja-JP/tiddlers/community/Community Editions.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Community Links Aggregator.tid +13 -0
- package/editions/ja-JP/tiddlers/community/Community Palettes.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Community Plugins.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Community Themes.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Community.tid +4 -6
- package/editions/ja-JP/tiddlers/community/Examples.tid +3 -3
- package/editions/ja-JP/tiddlers/community/Forums.tid +9 -18
- package/editions/ja-JP/tiddlers/community/Improving TiddlyWiki Documentation.tid +55 -0
- package/editions/ja-JP/tiddlers/community/Latest.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Meetups.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Other Resources.tid +2 -2
- package/editions/ja-JP/tiddlers/community/Resources.tid +13 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2016.tid +17 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2017.tid +13 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki Hangouts.tid +1 -1
- package/editions/ja-JP/tiddlers/community/TiddlyWiki Newsletter.tid +12 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki on the Web.tid +3 -3
- package/editions/ja-JP/tiddlers/community/Translate TiddlyWiki into your language.tid +18 -0
- package/editions/ja-JP/tiddlers/community/Tutorials.tid +2 -2
- package/editions/ja-JP/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +21 -0
- package/editions/ja-JP/tiddlers/community/articles/_Notizen mit TiddlyWiki systemubergreifend nutzen_ by Michael Sonntag.tid +19 -0
- package/editions/ja-JP/tiddlers/community/articles/_Setting Up a Personal TiddlyWiki Server on OS X_ by Kris Johnson.tid +24 -0
- package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki 5 im Betatest_ by besim.tid +17 -0
- package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki_ by Sander de Boer.tid +17 -0
- package/editions/ja-JP/tiddlers/community/docs/Community Cards Caveats.tid +7 -0
- package/editions/ja-JP/tiddlers/community/docs/Community Cards.tid +13 -0
- package/editions/ja-JP/tiddlers/community/docs/Displaying Community Cards.tid +28 -0
- package/editions/ja-JP/tiddlers/community/docs/Submitting a Community Card.tid +38 -0
- package/editions/ja-JP/tiddlers/community/editions/Drift by Tony K.tid +20 -0
- package/editions/ja-JP/tiddlers/community/editions/Stroll by David Gifford.tid +20 -0
- package/editions/ja-JP/tiddlers/community/editions/Tidme by oflg.tid +18 -0
- package/editions/ja-JP/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +23 -0
- package/editions/ja-JP/tiddlers/community/examples/GitFixUm.tid +0 -1
- package/editions/ja-JP/tiddlers/community/examples/PETTIL.tid +1 -1
- package/editions/ja-JP/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
- package/editions/ja-JP/tiddlers/community/plugins/GSD5.tid +16 -0
- package/editions/ja-JP/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +22 -0
- package/editions/ja-JP/tiddlers/community/plugins/TiddlyWiki for Scholars.tid +16 -0
- package/editions/ja-JP/tiddlers/community/project/TiddlyWiki People.tid +13 -0
- package/editions/ja-JP/tiddlers/community/project/TiddlyWiki Project.tid +13 -0
- package/editions/ja-JP/tiddlers/community/project/Vacant Positions.tid +5 -0
- package/editions/ja-JP/tiddlers/community/resources/Projectify by Nicolas Petton.tid +24 -0
- package/editions/ja-JP/tiddlers/community/resources/TiddlyWiki Posts.tid +16 -0
- package/editions/ja-JP/tiddlers/community/resources/Wikilabs by PMario.tid +18 -0
- package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +18 -0
- package/editions/ja-JP/tiddlers/community/tools/cards/Procedures.tid +168 -0
- package/editions/ja-JP/tiddlers/concepts/ExternalImages.tid +29 -11
- package/editions/ja-JP/tiddlers/concepts/Filters.tid +2 -1
- package/editions/ja-JP/tiddlers/concepts/TemplateTiddlers.tid +20 -0
- package/editions/ja-JP/tiddlers/concepts/TextReference.tid +36 -0
- package/editions/ja-JP/tiddlers/concepts/Transclusion.tid +31 -0
- package/editions/ja-JP/tiddlers/concepts/WikiText.tid +17 -0
- package/editions/ja-JP/tiddlers/definitions/Base64.tid +9 -0
- package/editions/ja-JP/tiddlers/definitions/Cascading Style Sheets.tid +9 -0
- package/editions/ja-JP/tiddlers/definitions/Definitions.tid +12 -0
- package/editions/ja-JP/tiddlers/definitions/Tiddlyhost.tid +13 -0
- package/editions/ja-JP/tiddlers/features/Future Proof.tid +3 -3
- package/editions/ja-JP/tiddlers/filters/syntax/Filter Run Prefix.tid +0 -1
- package/editions/ja-JP/tiddlers/filters/syntax/Filter Step.tid +5 -5
- package/editions/ja-JP/tiddlers/functions/Functions.tid +30 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +1 -1
- package/editions/ja-JP/tiddlers/hellothere/Find Out More.tid +2 -2
- package/editions/ja-JP/tiddlers/hellothere/HelloThere.tid +28 -6
- package/editions/ja-JP/tiddlers/hellothere/HelloThumbnail.tid +7 -0
- package/editions/ja-JP/tiddlers/hellothere/Testimonials and Reviews.tid +2 -2
- package/editions/ja-JP/tiddlers/hellothere/quickstart/Quick Start.tid +2 -2
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +12 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +1 -1
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
- package/editions/ja-JP/tiddlers/hiddensettings/Hidden Setting Default Tiddler Colour.tid +3 -3
- package/editions/ja-JP/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +16 -0
- package/editions/ja-JP/tiddlers/hire-jeremy/HireJeremy.tid +59 -0
- package/editions/ja-JP/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
- package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS.tid +28 -0
- package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS_-_Example.tid +16 -0
- package/editions/ja-JP/tiddlers/howtos/Windows HTA Hack.tid +2 -1
- package/editions/ja-JP/tiddlers/marketplace/TiddlyWiki Marketplace.tid +20 -0
- package/editions/ja-JP/tiddlers/plugins/Dynaview Plugin.tid +1 -1
- package/editions/ja-JP/tiddlers/plugins/Innerwiki Plugin.tid +1 -1
- package/editions/ja-JP/tiddlers/plugins/Share Plugin.tid +6 -4
- package/editions/ja-JP/tiddlers/procedures/Procedure Calls.tid +58 -0
- package/editions/ja-JP/tiddlers/procedures/Procedure Definitions.tid +47 -0
- package/editions/ja-JP/tiddlers/procedures/Procedure Parameter Handling.tid +26 -0
- package/editions/ja-JP/tiddlers/reference/Reference.tid +17 -0
- package/editions/ja-JP/tiddlers/roadmap/RoadMap.tid +9 -4
- package/editions/ja-JP/tiddlers/saving/Encryption.tid +3 -3
- package/editions/ja-JP/tiddlers/saving/Saving via WebDAV.tid +9 -1
- package/editions/ja-JP/tiddlers/saving/Saving with TiddlyIE.tid +2 -1
- package/editions/ja-JP/tiddlers/saving/Saving.tid +2 -2
- package/editions/ja-JP/tiddlers/system/TableOfContents.tid +1 -1
- package/editions/ja-JP/tiddlers/system/download-empty.tid +1 -1
- package/editions/ja-JP/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +13 -0
- package/editions/ja-JP/tiddlers/wikitext/Anchor Links using HTML.tid +202 -0
- package/editions/ja-JP/tiddlers/wikitext/Block Quotes in WikiText.tid +106 -0
- package/editions/ja-JP/tiddlers/wikitext/Code Blocks in WikiText.tid +43 -0
- package/editions/ja-JP/tiddlers/wikitext/Conditional Shortcut Syntax.tid +64 -0
- package/editions/ja-JP/tiddlers/wikitext/Dashes in WikiText.tid +14 -0
- package/editions/ja-JP/tiddlers/wikitext/Description Lists in WikiText.tid +16 -0
- package/editions/ja-JP/tiddlers/wikitext/Filtered Attribute Values.tid +18 -0
- package/editions/ja-JP/tiddlers/wikitext/Formatting in WikiText.tid +62 -0
- package/editions/ja-JP/tiddlers/wikitext/HTML Entities.tid +68 -0
- package/editions/ja-JP/tiddlers/wikitext/HTML in WikiText.tid +94 -0
- package/editions/ja-JP/tiddlers/wikitext/HTML_Links_in_WikiText.tid +19 -0
- package/editions/ja-JP/tiddlers/wikitext/Hard Linebreaks in WikiText.tid +24 -0
- package/editions/ja-JP/tiddlers/wikitext/Headings in WikiText.tid +22 -0
- package/editions/ja-JP/tiddlers/wikitext/Horizontal Rules in WikiText.tid +12 -0
- package/editions/ja-JP/tiddlers/wikitext/Linking in WikiText.tid +127 -0
- package/editions/ja-JP/tiddlers/wikitext/Lists in WikiText.tid +94 -0
- package/editions/ja-JP/tiddlers/wikitext/Literal Attribute Values.tid +32 -0
- package/editions/ja-JP/tiddlers/wikitext/Macro Calls.tid +60 -0
- package/editions/ja-JP/tiddlers/wikitext/Macro Definitions.tid +69 -0
- package/editions/ja-JP/tiddlers/wikitext/Macro Parameter Handling.tid +80 -0
- package/editions/ja-JP/tiddlers/wikitext/Paragraphs in WikiText.tid +25 -0
- package/editions/ja-JP/tiddlers/wikitext/Substituted Attribute Values.tid +35 -0
- package/editions/ja-JP/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +22 -0
- package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +83 -0
- package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText.tid +74 -0
- package/editions/ja-JP/tiddlers/wikitext/Transcluded Attribute Values.tid +16 -0
- package/editions/ja-JP/tiddlers/wikitext/Transclusion Basic Usage.tid +47 -0
- package/editions/ja-JP/tiddlers/wikitext/Transclusion and Substitution.tid +62 -0
- package/editions/ja-JP/tiddlers/wikitext/Transclusion in WikiText.tid +78 -0
- package/editions/ja-JP/tiddlers/wikitext/Transclusion with Templates.tid +62 -0
- package/editions/ja-JP/tiddlers/wikitext/Typed Blocks in WikiText.tid +69 -0
- package/editions/ja-JP/tiddlers/wikitext/Utility Classes.tid +23 -0
- package/editions/ja-JP/tiddlers/wikitext/Variable Attribute Values.tid +19 -0
- package/editions/ja-JP/tiddlers/wikitext/Widget Attributes.tid +28 -0
- package/editions/ja-JP/tiddlers/wikitext/Widgets in WikiText.tid +33 -0
- package/editions/ja-JP/tiddlers/wikitext/parser/WikiText Parser Modes.tid +20 -0
- package/editions/ja-JP/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +58 -0
- package/editions/ja-JP/tiddlers/wikitext/parser/table-example.tid +10 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +3 -3
- package/editions/ja-JP/tiddlywiki.info +1 -2
- package/editions/ko-KR/tiddlers/system/download-empty.tid +1 -1
- package/editions/ko-KR/tiddlywiki.info +1 -2
- package/editions/prerelease/tiddlers/system/DefaultTiddlers.tid +1 -1
- package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +1 -0
- package/editions/prerelease/tiddlers/system/download-empty.tid +1 -1
- package/editions/prerelease/tiddlywiki.info +2 -1
- package/editions/test/playwright.spec.js +17 -17
- package/editions/test/tiddlers/$__StoryList.tid +2 -0
- package/editions/test/tiddlers/tests/data/functions/FunctionDefaultValues.tid +16 -0
- package/editions/test/tiddlers/tests/data/functions/FunctionSubstituteResolution.tid +38 -0
- package/editions/test/tiddlers/tests/data/functions/VariableLeakage.tid +15 -0
- package/editions/test/tiddlers/tests/data/functions/VariablesEnumeration.tid +14 -0
- package/editions/test/tiddlers/tests/data/genesis-widget/Block.tid +1 -1
- package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultList.tid +12 -0
- package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultListUnnamedVariable.tid +12 -0
- package/editions/test/tiddlers/tests/data/let-filter-prefix/ShortcutSyntax.tid +12 -0
- package/editions/test/tiddlers/tests/data/let-filter-prefix/Simple.tid +12 -0
- package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Attribute.tid +26 -0
- package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Standalone.tid +23 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/AttributeFirstValue.tid +16 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/DefaultParameterMVV.tid +19 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/Function.tid +18 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplay.tid +16 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplaySeparator.tid +16 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplay.tid +14 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplaySeparator.tid +14 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/MissingVariable.tid +12 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/NegatedTitle.tid +18 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/Operands.tid +18 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/Parameters.tid +21 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/ParametersShortcut.tid +21 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/Simple.tid +17 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameter.tid +19 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterDirectly.tid +19 -0
- package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterFunction.tid +17 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-named.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-non-strict.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-equals-no-value.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-equals.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-filtered-value.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-indirect-value.tid +17 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-mvv-value.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-nested-macro.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-substituted-value.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-positional-gt.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-multiline.tid +17 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-quoted-gt.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-single-line.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-equals-noval.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-malformed-mvv.tid +13 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-mvv-value.tid +14 -0
- package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-substituted-value.tid +13 -0
- package/editions/test/tiddlers/tests/data/procedures/Calls.tid +28 -0
- package/editions/test/tiddlers/tests/data/serialize/Attribute.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/BlockRule.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/BoldEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/CodeBlock.tid +17 -0
- package/editions/test/tiddlers/tests/data/serialize/CommentBlock.tid +11 -0
- package/editions/test/tiddlers/tests/data/serialize/CommentInline.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/Conditional.tid +21 -0
- package/editions/test/tiddlers/tests/data/serialize/Dash.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/DynamicMacroMixed.tid +9 -0
- package/editions/test/tiddlers/tests/data/serialize/DynamicMacroParams.tid +9 -0
- package/editions/test/tiddlers/tests/data/serialize/DynamicWidgetAttribute.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/Entity.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/ExtLink.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeBlock.tid +13 -0
- package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeInline.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/FunctionDefinition.tid +15 -0
- package/editions/test/tiddlers/tests/data/serialize/HardLineBreaks.tid +12 -0
- package/editions/test/tiddlers/tests/data/serialize/Heading.tid +29 -0
- package/editions/test/tiddlers/tests/data/serialize/Html.tid +15 -0
- package/editions/test/tiddlers/tests/data/serialize/Image.tid +10 -0
- package/editions/test/tiddlers/tests/data/serialize/Import.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/ItalicEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/List.tid +40 -0
- package/editions/test/tiddlers/tests/data/serialize/MacroCallBlock.tid +13 -0
- package/editions/test/tiddlers/tests/data/serialize/MacroCallInline.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/MacroDef.tid +9 -0
- package/editions/test/tiddlers/tests/data/serialize/Parameters.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/ParserMode.tid +9 -0
- package/editions/test/tiddlers/tests/data/serialize/PrettyExtLink.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/PrettyLink.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/QuoteBlock.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/RulesPragma.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/SimpleText.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/SoftLineBreak.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/StrikethroughEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/StyleBlock.tid +17 -0
- package/editions/test/tiddlers/tests/data/serialize/StyleBlock2.tid +13 -0
- package/editions/test/tiddlers/tests/data/serialize/StyleInline.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/SubscriptEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/SuperscriptEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/SysLink.tid +6 -0
- package/editions/test/tiddlers/tests/data/serialize/Table.tid +11 -0
- package/editions/test/tiddlers/tests/data/serialize/TranscludeBlock.tid +21 -0
- package/editions/test/tiddlers/tests/data/serialize/TranscludeInline.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/TypedBlock1.tid +15 -0
- package/editions/test/tiddlers/tests/data/serialize/TypedBlock2.tid +19 -0
- package/editions/test/tiddlers/tests/data/serialize/UnderscoreEmphasis.tid +5 -0
- package/editions/test/tiddlers/tests/data/serialize/VoidElements.tid +12 -0
- package/editions/test/tiddlers/tests/data/serialize/WikiLink.tid +7 -0
- package/editions/test/tiddlers/tests/data/serialize/WikiLinkPrefix.tid +5 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-a.tid +1 -1
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-all.tid +1 -1
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-vertical.tid +1 -1
- package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttribute.tid +34 -0
- package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeFiltered.tid +20 -0
- package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeVariable.tid +13 -0
- package/editions/test/tiddlers/tests/data/transclude/Parameterised-ParseTreeNodes.tid +1 -1
- package/editions/test/tiddlers/tests/data/transclude/Procedures-Dollar-Param.tid +22 -0
- package/editions/test/tiddlers/tests/modules/utils/test-csv.js +4 -4
- package/editions/test/tiddlers/tests/test-action-deletefield.js +120 -120
- package/editions/test/tiddlers/tests/test-action-widgets.js +73 -76
- package/editions/test/tiddlers/tests/test-backlinks.js +53 -53
- package/editions/test/tiddlers/tests/test-backtranscludes.js +119 -119
- package/editions/test/tiddlers/tests/test-checkbox-widget.js +491 -493
- package/editions/test/tiddlers/tests/test-compare-filter.js +1 -4
- package/editions/test/tiddlers/tests/test-deserialize-operator.js +18 -21
- package/editions/test/tiddlers/tests/test-deserializers.js +17 -19
- package/editions/test/tiddlers/tests/test-filters.js +123 -123
- package/editions/test/tiddlers/tests/test-html-parser.js +377 -50
- package/editions/test/tiddlers/tests/test-json-filters.js +29 -5
- package/editions/test/tiddlers/tests/test-linked-list.js +4 -4
- package/editions/test/tiddlers/tests/test-parsetextreference.js +1 -1
- package/editions/test/tiddlers/tests/test-prefixes-filter.js +9 -7
- package/editions/test/tiddlers/tests/test-tags-operator.js +45 -45
- package/editions/test/tiddlers/tests/test-tags.js +155 -155
- package/editions/test/tiddlers/tests/test-utils.js +10 -10
- package/editions/test/tiddlers/tests/test-widget-event.js +9 -9
- package/editions/test/tiddlers/tests/test-widget-getVariableInfo.js +7 -18
- package/editions/test/tiddlers/tests/test-widget.js +117 -93
- package/editions/test/tiddlers/tests/test-wikitext-parser.js +89 -80
- package/editions/test/tiddlers/tests/test-wikitext-serialize.js +18 -0
- package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +4 -4
- package/editions/test/tiddlers/tests/test-wikitext.js +1 -1
- package/editions/test/tiddlywiki.info +1 -0
- package/editions/testcommonjs/tiddlers/absolute/program.js +5 -5
- package/editions/testcommonjs/tiddlers/absolute/submodule/a.js +1 -1
- package/editions/testcommonjs/tiddlers/allTests.js +11 -11
- package/editions/testcommonjs/tiddlers/cyclic/a.js +2 -2
- package/editions/testcommonjs/tiddlers/cyclic/b.js +2 -2
- package/editions/testcommonjs/tiddlers/cyclic/program.js +8 -8
- package/editions/testcommonjs/tiddlers/determinism/program.js +3 -3
- package/editions/testcommonjs/tiddlers/determinism/submodule/a.js +5 -5
- package/editions/testcommonjs/tiddlers/exactExports/a.js +1 -1
- package/editions/testcommonjs/tiddlers/exactExports/program.js +4 -4
- package/editions/testcommonjs/tiddlers/hasOwnProperty/program.js +4 -4
- package/editions/testcommonjs/tiddlers/method/a.js +4 -4
- package/editions/testcommonjs/tiddlers/method/program.js +6 -6
- package/editions/testcommonjs/tiddlers/missing/program.js +5 -5
- package/editions/testcommonjs/tiddlers/monkeys/a.js +1 -1
- package/editions/testcommonjs/tiddlers/monkeys/program.js +4 -4
- package/editions/testcommonjs/tiddlers/nested/a/b/c/d.js +1 -1
- package/editions/testcommonjs/tiddlers/nested/program.js +3 -3
- package/editions/testcommonjs/tiddlers/relative/program.js +5 -5
- package/editions/testcommonjs/tiddlers/relative/submodule/a.js +1 -1
- package/editions/testcommonjs/tiddlers/test.js +9 -9
- package/editions/testcommonjs/tiddlers/transitive/a.js +1 -1
- package/editions/testcommonjs/tiddlers/transitive/b.js +1 -1
- package/editions/testcommonjs/tiddlers/transitive/c.js +1 -1
- package/editions/testcommonjs/tiddlers/transitive/program.js +3 -3
- package/editions/tiddlywiki-surveys/scripts/extract-text-tiddlers-via-console.js +4 -4
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00001.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00002.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00003.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00004.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00005.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00006.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00007.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00008.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00009.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00010.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00011.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00012.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00013.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00014.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00015.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00016.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00017.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00018.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00019.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00020.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00021.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00022.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00023.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00024.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00025.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00026.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00027.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00028.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00029.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00030.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00031.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00032.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00033.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00034.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00035.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00036.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00037.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00038.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00039.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00040.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00041.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00042.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00043.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00044.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00045.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00046.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00047.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00048.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00049.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00050.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00051.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00052.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00053.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00054.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00055.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00056.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00057.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00058.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00059.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00060.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00061.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00062.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00063.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00064.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00065.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00066.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00067.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00068.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00069.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00070.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00071.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00072.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00073.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00074.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00075.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00076.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00077.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00078.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00079.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00080.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00081.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00082.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00083.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00084.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00085.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00086.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00087.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00088.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00089.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00090.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00091.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00092.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00093.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00094.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00095.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00096.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00097.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00098.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00099.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00100.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00101.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00102.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00103.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00104.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00105.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00106.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00107.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00108.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00109.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00110.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00111.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00112.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00113.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00114.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00115.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00116.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00117.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00118.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00119.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00120.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00121.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00122.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00123.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00124.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00125.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00126.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00127.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00128.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00129.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00130.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00131.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00132.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00133.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00134.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00135.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00136.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00137.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00138.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00139.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00140.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00141.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00142.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00143.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00144.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00145.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00146.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00147.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00148.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00149.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00150.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00151.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00152.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00153.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00154.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00155.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00156.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00157.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00158.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00159.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00160.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00161.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00162.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00163.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00164.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00165.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00166.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00167.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00168.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00169.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00170.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00171.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00172.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00173.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00174.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00175.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00176.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00177.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00178.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00179.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00180.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00181.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00182.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00183.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00184.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00185.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00186.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00187.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00188.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00189.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00190.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00191.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00192.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00193.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00194.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00195.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00196.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00197.tid +33 -0
- package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00198.json +37 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/DefaultTiddlers.tid +1 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/Definitions.tid +66 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/HelloThere.tid +11 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/Questions.json +225 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/Styles.tid +4 -4
- package/editions/tiddlywiki-surveys/tiddlers/app/The Great TiddlyWiki Interview Project 2010.tid +1 -1
- package/editions/tiddlywiki-surveys/tiddlers/app/TiddlyWiki Community Survey 2025.tid +5 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/ViewTemplate.tid +8 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/row.tid +8 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/sheet.tid +10 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/workbook.tid +8 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/default-import-spec.tid +6 -0
- package/editions/tiddlywiki-surveys/tiddlers/app/open-state.multids +9 -0
- package/editions/tiddlywiki-surveys/tiddlywiki.info +5 -0
- package/editions/translators/tiddlers/Instructions for Translators.tid +1 -0
- package/editions/translators/tiddlers/system/$__status_UserName.tid +3 -0
- package/editions/translators/tiddlywiki.info +1 -0
- package/editions/tw5.com/tiddlers/Concatenating a text reference to create a URL.tid +13 -0
- package/editions/tw5.com/tiddlers/Concatenating variables to create a URL.tid +13 -0
- package/editions/tw5.com/tiddlers/Core CSS Variables.tid +11 -0
- package/editions/tw5.com/tiddlers/Deprecated Core Classes.tid +13 -0
- package/editions/tw5.com/tiddlers/Deprecated core macros.tid +31 -0
- package/editions/tw5.com/tiddlers/TiddlyWiki Docs PR Maker.tid +3 -4
- package/editions/tw5.com/tiddlers/Writing stylesheets in vanilla CSS.tid +69 -0
- package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-macros.tid +44 -6
- package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-styles.tid +15 -2
- package/editions/tw5.com/tiddlers/about/Archive.tid +2 -2
- package/editions/tw5.com/tiddlers/about/Developers.tid +2 -13
- package/editions/tw5.com/tiddlers/about/Donations.tid +16 -0
- package/editions/tw5.com/tiddlers/about/Filter Syntax History.tid +42 -0
- package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +1 -1
- package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +6 -80
- package/editions/tw5.com/tiddlers/about/The Story of TiddlyWiki.tid +69 -0
- package/editions/tw5.com/tiddlers/about/TiddlyWiki Anniversaries.tid +31 -0
- package/editions/tw5.com/tiddlers/commands/RenderCommand.tid +2 -1
- package/editions/tw5.com/tiddlers/community/Articles.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Community Editions.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Community Palettes.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Community Plugins.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Community Survey 2025.tid +25 -0
- package/editions/tw5.com/tiddlers/community/Community Themes.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Community.tid +3 -5
- package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -2
- package/editions/tw5.com/tiddlers/community/Examples.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Forums.tid +9 -17
- package/editions/tw5.com/tiddlers/community/Improving TiddlyWiki Documentation.tid +2 -2
- package/editions/tw5.com/tiddlers/community/Latest.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Meetups.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Other Resources.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Resources.tid +11 -0
- package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
- package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter.tid +5 -5
- package/editions/tw5.com/tiddlers/community/Tutorials.tid +1 -1
- package/editions/tw5.com/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +2 -1
- package/editions/tw5.com/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +9 -2
- package/editions/tw5.com/tiddlers/community/examples/PETTIL.tid +1 -1
- package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +1 -1
- package/editions/tw5.com/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
- package/editions/tw5.com/tiddlers/community/plugins/IndexedDB Plugin by Andreas Abeck.tid +2 -1
- package/editions/tw5.com/tiddlers/community/plugins/Slider by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +20 -0
- package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +16 -0
- package/editions/tw5.com/tiddlers/community/tutorials/Un wiki sur votre BiblioBox avec TiddlyWiki.tid +2 -1
- package/editions/tw5.com/tiddlers/communitycards/tiddlywiki.files +11 -0
- package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Date Fields.tid +3 -2
- package/editions/tw5.com/tiddlers/concepts/DefaultTiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/concepts/Filters.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/TiddlyWiki.tid +1 -1
- package/editions/tw5.com/tiddlers/css-variables/--tp-animation-duration CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-body-font-size Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-body-line-height Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-code-font-family Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-code-wrapping Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-editor-font-family Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-font-family Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-font-size Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-line-height Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-breakpoint CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-width CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-story-left CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-story-right CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-story-top CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-story-width CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tp-tiddler-width CSS Variable.tid +8 -0
- package/editions/tw5.com/tiddlers/css-variables/--tpc-_ variables.tid +16 -0
- package/editions/tw5.com/tiddlers/definitions/BT.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/ContentType.tid +9 -8
- package/editions/tw5.com/tiddlers/definitions/Intertwingled Innovations.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/JeremyRuston.tid +1 -13
- package/editions/tw5.com/tiddlers/definitions/Jermolene.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +1 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +5 -2
- package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +4 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Simple Example.tid +36 -4
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExample.tid +9 -9
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +7 -3
- package/editions/tw5.com/tiddlers/features/DateFormat.tid +18 -17
- package/editions/tw5.com/tiddlers/filters/examples/days.tid +5 -7
- package/editions/tw5.com/tiddlers/filters/examples/jsondelete.tid +59 -0
- package/editions/tw5.com/tiddlers/filters/examples/substitute Operator (Examples).tid +45 -22
- package/editions/tw5.com/tiddlers/filters/function.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/jsondelete.tid +54 -0
- package/editions/tw5.com/tiddlers/filters/range.tid +36 -22
- package/editions/tw5.com/tiddlers/filters/substitute Operator.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +2 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +11 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Step.tid +8 -8
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Syntax.tid +1 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Interchangeable Filter Run Prefixes.tid +3 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +10 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix (Examples).tid +13 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix.tid +30 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +11 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Shortcut Filter Run Prefixes.tid +4 -3
- package/editions/tw5.com/tiddlers/filters/syntax/then Filter Run Prefix.tid +1 -1
- package/editions/tw5.com/tiddlers/filters/title.tid +2 -0
- package/editions/tw5.com/tiddlers/functions/Functions.tid +6 -5
- package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +9 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +1 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +11 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
- package/editions/tw5.com/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +15 -0
- package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremy.tid +56 -0
- package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyDefinitions.tid +24 -0
- package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyStyles.tid +163 -0
- package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
- package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +4 -1
- package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +49 -38
- package/editions/tw5.com/tiddlers/images/Blurry Lawn.jpg +0 -0
- package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp +0 -0
- package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp +0 -0
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp.meta +3 -0
- package/editions/tw5.com/tiddlers/images/MWS Banner.webp +0 -0
- package/editions/tw5.com/tiddlers/images/MWS Banner.webp.meta +6 -0
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp +0 -0
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.webp +0 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/TW5-Graph.png +0 -0
- package/editions/tw5.com/tiddlers/images/TW5-Graph.png.meta +4 -0
- package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp +0 -0
- package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp.meta +5 -0
- package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp +0 -0
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp.meta +4 -0
- package/editions/tw5.com/tiddlers/macros/StylesheetMacros.tid +2 -17
- package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +4 -1
- package/editions/tw5.com/tiddlers/macros/examples/tabs.tid +12 -0
- package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +26 -8
- package/editions/tw5.com/tiddlers/macros/list-tagged-draggable Macro.tid +20 -6
- package/editions/tw5.com/tiddlers/macros/syntax/Call Syntax.tid +43 -0
- package/editions/tw5.com/tiddlers/macros/syntax/CallParameterValue.tid +13 -0
- package/editions/tw5.com/tiddlers/macros/syntax/Macro Call Syntax.tid +3 -27
- package/editions/tw5.com/tiddlers/macros/syntax/Macro Definition Syntax.tid +1 -1
- package/editions/tw5.com/tiddlers/macros/syntax/Procedure Call Syntax.tid +2 -29
- package/editions/tw5.com/tiddlers/macros/syntax/Procedure Definition Syntax.tid +2 -2
- package/editions/tw5.com/tiddlers/macros/syntax/Procedure Syntax.tid +1 -1
- package/editions/tw5.com/tiddlers/macros/tag-pill_Macro.tid +13 -8
- package/editions/tw5.com/tiddlers/mechanisms/Background Actions.tid +28 -0
- package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +30 -3
- package/editions/tw5.com/tiddlers/mechanisms/MediaQueryTrackerMechanism.tid +13 -0
- package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +1 -0
- package/editions/tw5.com/tiddlers/plugins/Plugin_Fields.tid +2 -1
- package/editions/tw5.com/tiddlers/pragmas/Pragma_ _function.tid +1 -1
- package/editions/tw5.com/tiddlers/pragmas/Pragma_ _procedure.tid +1 -1
- package/editions/tw5.com/tiddlers/procedures/Procedure Calls.tid +2 -51
- package/editions/tw5.com/tiddlers/procedures/Procedures.tid +2 -2
- package/editions/tw5.com/tiddlers/procedures/calls/Calls.tid +64 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9133.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9166.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9175.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9184.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9185.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/32caeb69c3e7b75a80a84a1e14363e87175b164e.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/75502266176de9d4a5e1f89cd7f2e455b7a2f6da.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.3.8/93d30f374da4a6b2037b335f7f7d4eddce8192db.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#7898.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8093.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8249-aes-256-bit.tid +25 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8258.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8810.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8972.tid +16 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9015-muted-palette-adjustments.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9024 - audio-parser-widget-intercept.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9050.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9055.tid +27 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9078.tid +16 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9097.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9103.tid +18 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9107 - update-configuration-defaults.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9118.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119 - sticky-flag.tid +7 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131 - strikethrough.tid +9 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9135.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9148.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9154.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9167.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9177.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183 - core-server-pluginisation.tid +9 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9203.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid +17 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9214 - configure-edit-focus.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9235.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242 - deprecate-css-macros.tid +7 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9243.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253 - textencoder.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9254-list-links-draggable-parameter-missing.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259_impacts_deprecate-eventcatcher-attributes.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid +29 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275 - remove-range-widget-ie.tid +7 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9277.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9280.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9281-add-th-debug-element.tid +17 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9287.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9293-draft-moduls-not-executed.tid +19 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9295.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9297.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9305.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9313.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316 - currentcolor.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9317-eslint-ignore-output.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9328.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9333.tid +49 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337 - math-filters .tid +7 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337.tid +18 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9341.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9347.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9348.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9349 - cjk-text-spacing.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350 - deprecation.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350.tid +20 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9358.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9368 - fix-image-paste-rename-ux.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9371.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9375.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9401.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9422.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9427.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9439.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9445.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9453 - diff-text-editcost-param.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9454 - edit-text-rows-precedence.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9465.tid +15 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9466.tid +15 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9489.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9494.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9495.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9538.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9548.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9551.tid +15 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9570.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9582.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9585 - button-classes.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9598.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9600.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609.tid +24 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609_impacts_event detail variables in eventcatcher.json +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9612-toc-level.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9617 - select-widget-refresh-default.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9621 - list-widget-macros-start-endactions.tid +16 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9626.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9634-cascade-info-tab.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9641.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9655 - german-translations.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9660.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9676.tid +48 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9703.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9782 - Greek translation.tid +13 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/Release 5.4.0.tid +21 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/add-stylesheet-wiki-info.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/bump-markdown-it.tid +18 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func - deprecation.tid +8 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/draft-i18n.tid +15 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/escapecss-split.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/improve-alert-a11y.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/leilei332-update-eslint-config.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es - api.tid +11 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es.tid +10 -0
- package/editions/tw5.com/tiddlers/releasenotes/5.4.0/refactor-base64-util.tid +14 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes Internals.tid +65 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes.tid +59 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +1 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesInfo.multids +67 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesProcedures.tid +397 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesStyles.tid +205 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesSummaryLists.tid +3 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesTabTemplate.tid +12 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyChangeNote.tid +6 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyFilters.tid +6 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyImpactNote.tid +6 -0
- package/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid +6 -4
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.1.23.tid +298 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.0.tid +302 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.4.tid +145 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.6.tid +149 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.2.tid +184 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.7.tid +140 -0
- package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.8.tid +19 -0
- package/editions/tw5.com/tiddlers/roadmap/RoadMap.tid +7 -3
- package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MultiWikiServer.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Encrypted Wiki Import Problems.tid +22 -0
- package/editions/tw5.com/tiddlers/saving/Encryption.tid +4 -4
- package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +8 -1
- package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 fallback saver.tid +1 -1
- package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +1 -1
- package/editions/tw5.com/tiddlers/system/DefaultTiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/system/Sources.tid +1 -1
- package/editions/tw5.com/tiddlers/system/TableOfContents.tid +1 -1
- package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -1
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +2 -2
- package/editions/tw5.com/tiddlers/tag-pill Macro (Examples).tid +7 -1
- package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureDynamicAttributes.tid +40 -0
- package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureStaticAttributes.tid +48 -0
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/AccordionSlider.tid +1 -1
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/Popup.tid +1 -1
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/SimpleReveal.tid +1 -1
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/TextReference.tid +1 -1
- package/editions/tw5.com/tiddlers/v5.4.0/Improvements to Macro Calls.tid +48 -0
- package/editions/tw5.com/tiddlers/variables/Behaviour of called variables depends on how the variable was declared.tid +52 -0
- package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via filter expression function call.tid +1 -1
- package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +3 -1
- package/editions/tw5.com/tiddlers/variables/Multi-Valued Variables.tid +118 -0
- package/editions/tw5.com/tiddlers/variables/Variables.tid +5 -3
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get File.tid +14 -3
- package/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid +45 -18
- package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +7 -4
- package/editions/tw5.com/tiddlers/widgets/DiffTextWidget.tid +57 -33
- package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +12 -13
- package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +109 -45
- package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +18 -1
- package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +14 -2
- package/editions/tw5.com/tiddlers/widgets/LinkWidget.tid +19 -2
- package/editions/tw5.com/tiddlers/widgets/LogWidget.tid +43 -17
- package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +46 -29
- package/editions/tw5.com/tiddlers/widgets/examples/RevealWidget (Popup Clamping Example).tid +68 -0
- package/editions/tw5.com/tiddlers/wikitext/Definitions in WikiText.tid +3 -10
- package/editions/tw5.com/tiddlers/wikitext/Description Lists in WikiText.tid +44 -0
- package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +1 -1
- package/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +5 -1
- package/editions/tw5.com/tiddlers/wikitext/Macro Calls.tid +1 -52
- package/editions/tw5.com/tiddlers/wikitext/Multi-Valued Variable Attribute Values.tid +37 -0
- package/editions/tw5.com/tiddlers/wikitext/Substituted Attribute Values.tid +5 -15
- package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +11 -0
- package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +22 -0
- package/editions/tw5.com/tiddlers/wikitext/Typed Blocks in WikiText.tid +31 -42
- package/editions/tw5.com/tiddlers/wikitext/Widget Attributes.tid +3 -1
- package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +1 -1
- package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +2 -2
- package/editions/tw5.com/tiddlers/workingwithtw/TiddlyWiki Privacy and Security.tid +2 -1
- package/editions/tw5.com/tiddlywiki.info +3 -3
- package/editions/zh-Hans/tiddlers/system/download-empty-zh-Hans.tid +1 -1
- package/editions/zh-Hans/tiddlywiki.info +1 -2
- package/editions/zh-Hant/tiddlers/system/download-empty-zh-Hant.tid +1 -1
- package/editions/zh-Hant/tiddlywiki.info +1 -2
- package/eslint.config.mjs +327 -0
- package/languages/ca-ES/ControlPanel.multids +1 -1
- package/languages/da-DK/ControlPanel.multids +1 -1
- package/languages/de-DE/ControlPanel.multids +7 -3
- package/languages/de-DE/Draft.multids +4 -0
- package/languages/de-DE/Import.multids +3 -1
- package/languages/de-DE/Misc.multids +1 -0
- package/languages/de-DE/TiddlerInfo.multids +5 -0
- package/languages/el-GR/Buttons.multids +73 -0
- package/languages/el-GR/ControlPanel.multids +119 -57
- package/languages/el-GR/Dates.multids +67 -0
- package/languages/el-GR/Docs/ModuleTypes.multids +8 -0
- package/languages/el-GR/Docs/PaletteColours.multids +26 -1
- package/languages/el-GR/Draft.multids +4 -0
- package/languages/el-GR/EditTemplate.multids +21 -2
- package/languages/el-GR/Exporters.multids +3 -2
- package/languages/el-GR/Fields.multids +12 -0
- package/languages/el-GR/Filters.multids +5 -0
- package/languages/el-GR/Help/help.tid +10 -0
- package/languages/el-GR/Help/unpackplugin.tid +8 -0
- package/languages/el-GR/Help/version.tid +8 -0
- package/languages/el-GR/Import.multids +9 -1
- package/languages/el-GR/Misc.multids +46 -6
- package/languages/el-GR/NewJournal.multids +2 -0
- package/languages/el-GR/Notifications.multids +2 -0
- package/languages/el-GR/Search.multids +13 -0
- package/languages/el-GR/SideBar.multids +15 -0
- package/languages/el-GR/SiteSubtitle.tid +1 -0
- package/languages/el-GR/ThemeTweaks.multids +24 -2
- package/languages/el-GR/TiddlerInfo.multids +19 -0
- package/languages/el-GR/Types/image_gif.tid +4 -0
- package/languages/el-GR/Types/image_jpeg.tid +4 -0
- package/languages/el-GR/Types/image_png.tid +4 -0
- package/languages/el-GR/Types/text_html.tid +4 -0
- package/languages/el-GR/Types/text_plain.tid +4 -0
- package/languages/el-GR/Types/text_vnd.tiddlywiki.tid +4 -0
- package/languages/es-ES/ControlPanel.multids +16 -10
- package/languages/es-ES/Fields.multids +3 -3
- package/languages/es-ES/Misc.multids +1 -1
- package/languages/fa-IR/plugin.info +1 -1
- package/languages/fr-FR/ControlPanel.multids +15 -7
- package/languages/fr-FR/Misc.multids +1 -0
- package/languages/it-IT/ControlPanel.multids +1 -1
- package/languages/ja-JP/Buttons.multids +15 -4
- package/languages/ja-JP/ControlPanel.multids +35 -7
- package/languages/ja-JP/Docs/ModuleTypes.multids +10 -1
- package/languages/ja-JP/Docs/PaletteColours.multids +15 -0
- package/languages/ja-JP/Draft.multids +4 -0
- package/languages/ja-JP/EditTemplate.multids +2 -0
- package/languages/ja-JP/Exporters.multids +4 -1
- package/languages/ja-JP/Fields.multids +14 -8
- package/languages/ja-JP/GettingStarted.tid +7 -14
- package/languages/ja-JP/Help/commands.tid +18 -0
- package/languages/ja-JP/Help/deletetiddlers.tid +8 -0
- package/languages/ja-JP/Help/fetch.tid +38 -0
- package/languages/ja-JP/Help/import.tid +24 -0
- package/languages/ja-JP/Help/listen.tid +34 -0
- package/languages/ja-JP/Help/load.tid +5 -2
- package/languages/ja-JP/Help/password.tid +1 -1
- package/languages/ja-JP/Help/render.tid +36 -0
- package/languages/ja-JP/Help/rendertiddler.tid +19 -3
- package/languages/ja-JP/Help/rendertiddlers.tid +9 -3
- package/languages/ja-JP/Help/save.tid +25 -0
- package/languages/ja-JP/Help/savetiddler.tid +7 -1
- package/languages/ja-JP/Help/savetiddlers.tid +8 -6
- package/languages/ja-JP/Help/savewikifolder.tid +34 -0
- package/languages/ja-JP/Help/server.tid +24 -13
- package/languages/ja-JP/Import.multids +3 -1
- package/languages/ja-JP/Misc.multids +36 -35
- package/languages/ja-JP/NewJournal.multids +1 -1
- package/languages/ja-JP/NewJournalTags.tid +3 -0
- package/languages/ja-JP/Notifications.multids +2 -0
- package/languages/ja-JP/Search.multids +3 -1
- package/languages/ja-JP/SideBar.multids +1 -1
- package/languages/ja-JP/SiteTitle.tid +1 -1
- package/languages/ja-JP/Snippets/FunctionDefinition.tid +7 -0
- package/languages/ja-JP/Snippets/ListByTag.tid +5 -0
- package/languages/ja-JP/Snippets/MacroDefinition.tid +7 -0
- package/languages/ja-JP/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/ja-JP/Snippets/Table4x3.tid +8 -0
- package/languages/ja-JP/Snippets/TableOfContents.tid +9 -0
- package/languages/ja-JP/ThemeTweaks.multids +42 -0
- package/languages/ja-JP/TiddlerInfo.multids +6 -1
- package/languages/ja-JP/Types/application_javascript.tid +5 -0
- package/languages/ja-JP/Types/application_json.tid +5 -0
- package/languages/ja-JP/Types/application_x-tiddler-dictionary.tid +5 -0
- package/languages/ja-JP/Types/image_gif.tid +5 -0
- package/languages/ja-JP/Types/image_jpeg.tid +5 -0
- package/languages/ja-JP/Types/image_png.tid +5 -0
- package/languages/ja-JP/Types/image_svg+xml.tid +5 -0
- package/languages/ja-JP/Types/text_css.tid +5 -0
- package/languages/ja-JP/Types/text_html.tid +5 -0
- package/languages/ja-JP/Types/text_plain.tid +5 -0
- package/languages/ja-JP/Types/text_vnd.tiddlywiki-multiple.tid +5 -0
- package/languages/ja-JP/Types/text_vnd.tiddlywiki.tid +5 -0
- package/languages/mk-MK/ControlPanel.multids +1 -1
- package/languages/nl-NL/ControlPanel.multids +1 -1
- package/languages/pl-PL/ControlPanel.multids +12 -8
- package/languages/pl-PL/Fields.multids +1 -0
- package/languages/pt-BR/ControlPanel.multids +1 -1
- package/languages/pt-PT/ControlPanel.multids +1 -1
- package/languages/sl-SI/ControlPanel.multids +1 -1
- package/languages/zh-Hans/ControlPanel.multids +6 -2
- package/languages/zh-Hans/Draft.multids +4 -0
- package/languages/zh-Hans/Import.multids +2 -0
- package/languages/zh-Hans/Misc.multids +1 -0
- package/languages/zh-Hans/TiddlerInfo.multids +5 -0
- package/languages/zh-Hant/ControlPanel.multids +7 -3
- package/languages/zh-Hant/Draft.multids +4 -0
- package/languages/zh-Hant/Import.multids +2 -0
- package/languages/zh-Hant/Misc.multids +1 -0
- package/languages/zh-Hant/TiddlerInfo.multids +5 -0
- package/licenses/cla-individual.md +26 -0
- package/package.json +9 -6
- package/playwright.config.js +5 -0
- package/plugins/tiddlywiki/aws/modules/command.js +2 -6
- package/plugins/tiddlywiki/aws/modules/init.js +1 -1
- package/plugins/tiddlywiki/bibtex/deserializer.js +1 -1
- package/plugins/tiddlywiki/browser-sniff/browser.js +1 -2
- package/plugins/tiddlywiki/browser-storage/settings.tid +1 -1
- package/plugins/tiddlywiki/browser-storage/startup.js +4 -10
- package/plugins/tiddlywiki/browser-storage/util.js +72 -74
- package/plugins/tiddlywiki/codemirror/engine.js +48 -46
- package/plugins/tiddlywiki/confetti/confetti-widget.js +0 -2
- package/plugins/tiddlywiki/dom-to-image/docs.tid +66 -0
- package/plugins/tiddlywiki/dom-to-image/files/LICENSE +29 -0
- package/plugins/tiddlywiki/dom-to-image/files/dom-to-image-more.min.js +3 -0
- package/plugins/tiddlywiki/dom-to-image/files/tiddlywiki.files +21 -0
- package/plugins/tiddlywiki/dom-to-image/plugin.info +7 -0
- package/plugins/tiddlywiki/dom-to-image/readme.tid +3 -0
- package/plugins/tiddlywiki/dom-to-image/startup.js +92 -0
- package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -12
- package/plugins/tiddlywiki/dynannotate/modules/element-spotlight.js +1 -1
- package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +4 -4
- package/plugins/tiddlywiki/dynannotate/modules/textmap.js +5 -5
- package/plugins/tiddlywiki/dynaview/dynaview.js +1 -1
- package/plugins/tiddlywiki/evernote/modules/enex-deserializer.js +5 -5
- package/plugins/tiddlywiki/external-attachments/startup.js +2 -2
- package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +1 -3
- package/plugins/tiddlywiki/filesystem/plugin.info +1 -0
- package/plugins/tiddlywiki/freelinks/aho-corasick.js +190 -0
- package/plugins/tiddlywiki/freelinks/config-Freelinks-WordBoundary.tid +2 -0
- package/plugins/tiddlywiki/freelinks/readme.tid +26 -5
- package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
- package/plugins/tiddlywiki/freelinks/text.js +229 -113
- package/plugins/tiddlywiki/geospatial/geotools.js +2 -2
- package/plugins/tiddlywiki/geospatial/operators/lookup.js +1 -1
- package/plugins/tiddlywiki/geospatial/operators/olc.js +3 -4
- package/plugins/tiddlywiki/geospatial/operators/transformation.js +2 -3
- package/plugins/tiddlywiki/geospatial/widgets/geomap.js +9 -9
- package/plugins/tiddlywiki/googleanalytics/googleanalytics.js +1 -1
- package/plugins/tiddlywiki/highlight/files/highlight.min.js +1132 -1289
- package/plugins/tiddlywiki/highlight/highlightblock.js +4 -4
- package/plugins/tiddlywiki/highlight/readme.tid +1 -1
- package/plugins/tiddlywiki/highlight/usage.tid +2 -2
- package/plugins/tiddlywiki/innerwiki/innerwiki.js +2 -3
- package/plugins/tiddlywiki/innerwiki/screenshot.js +1 -3
- package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +12 -3
- package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +3 -5
- package/plugins/tiddlywiki/jasmine/startup.js +1 -1
- package/plugins/tiddlywiki/jszip/startup.js +3 -3
- package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -1
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
- package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
- package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
- package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
- package/plugins/tiddlywiki/katex/latex-parser.js +1 -1
- package/plugins/tiddlywiki/katex/readme.tid +1 -1
- package/plugins/tiddlywiki/katex/styles.tid +40 -20
- package/plugins/tiddlywiki/katex/wrapper.js +1 -1
- package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +1 -1
- package/plugins/tiddlywiki/markdown/files/markdown-it-deflist.min.js +2 -7
- package/plugins/tiddlywiki/markdown/files/markdown-it-footnote.min.js +2 -1
- package/plugins/tiddlywiki/markdown/files/markdown-it-ins.min.js +2 -2
- package/plugins/tiddlywiki/markdown/files/markdown-it-mark.min.js +2 -2
- package/plugins/tiddlywiki/markdown/files/markdown-it-sub.min.js +2 -2
- package/plugins/tiddlywiki/markdown/files/markdown-it-sup.min.js +2 -2
- package/plugins/tiddlywiki/markdown/files/markdown-it.min.js +2 -3
- package/plugins/tiddlywiki/markdown/markdown-it-katex.js +131 -131
- package/plugins/tiddlywiki/markdown/markdown-it-tiddlywiki.js +102 -104
- package/plugins/tiddlywiki/markdown/styles.tid +3 -0
- package/plugins/tiddlywiki/markdown/wrapper.js +32 -23
- package/plugins/tiddlywiki/markdown-legacy/wrapper.js +143 -144
- package/plugins/tiddlywiki/qrcode/makeqr.js +1 -1
- package/plugins/tiddlywiki/railroad/components.js +21 -21
- package/plugins/tiddlywiki/railroad/parser.js +4 -4
- package/plugins/tiddlywiki/railroad/typed-parser.js +5 -5
- package/plugins/tiddlywiki/railroad/wrapper.js +1 -1
- package/plugins/tiddlywiki/stacked-view/stacked.js +0 -1
- package/plugins/tiddlywiki/text-slicer/modules/commands/slice.js +15 -16
- package/plugins/tiddlywiki/text-slicer/modules/slicer.js +69 -70
- package/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup.js +1 -1
- package/plugins/tiddlywiki/tiddlyweb/config-tiddlers-filter.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/save-offline.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +5 -7
- package/plugins/tiddlywiki/translators/output-file-templates/Draft.multids.tid +3 -0
- package/plugins/tiddlywiki/translators/output-file-templates/Misc.multids.tid +1 -0
- package/plugins/tiddlywiki/translators/ui/group/Draft.tid +28 -0
- package/plugins/tiddlywiki/translators/ui/group/Miscellaneous.tid +1 -0
- package/plugins/tiddlywiki/tw2parser/classictransclude.js +3 -4
- package/plugins/tiddlywiki/tw2parser/entry.js +1 -1
- package/plugins/tiddlywiki/tw2parser/parameteradapter.js +6 -5
- package/plugins/tiddlywiki/tw2parser/wikitextrules.js +594 -598
- package/plugins/tiddlywiki/tw5.com-docs/readme.tid +1 -1
- package/plugins/tiddlywiki/twitter/twitter-widget.js +3 -3
- package/plugins/tiddlywiki/twitter-archivist/archivist.js +41 -10
- package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +5 -7
- package/plugins/tiddlywiki/twitter-archivist/startup.js +4 -4
- package/plugins/tiddlywiki/upgrade/save-tiddler-filter.tid +1 -1
- package/plugins/tiddlywiki/wikitext-serialize/plugin.info +7 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/codeblock.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/codeinline.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/commentblock.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/commentinline.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/conditional.js +42 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/dash.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/bold.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/italic.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/strikethrough.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/subscript.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/superscript.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/underscore.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/entity.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/extlink.js +17 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeblock.js +24 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeinline.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/fnprocdef.js +24 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/hardlinebreaks.js +20 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/heading.js +17 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/horizrule.js +13 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/html.js +34 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/image.js +18 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/import.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/list.js +76 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallblock.js +27 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallinline.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/macrodef.js +21 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/parameters.js +16 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/parsermode.js +14 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/prettyextlink.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/prettylink.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/quoteblock.js +24 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/rules.js +26 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/styleblock.js +57 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/styleinline.js +28 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/syslink.js +18 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/table.js +39 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeblock.js +57 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeinline.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/typedblock.js +16 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/wikilink.js +17 -0
- package/plugins/tiddlywiki/wikitext-serialize/rules/wikilinkprefix.js +15 -0
- package/plugins/tiddlywiki/wikitext-serialize/utils/parsetree.js +132 -0
- package/plugins/tiddlywiki/xlsx-utils/deserializer.js +1 -2
- package/plugins/tiddlywiki/xlsx-utils/importer.js +30 -18
- package/plugins/tiddlywiki/xlsx-utils/xlsx-import-command.js +1 -2
- package/readme.md +2 -5
- package/themes/tiddlywiki/snowwhite/base.tid +34 -20
- package/themes/tiddlywiki/vanilla/base.tid +135 -50
- package/themes/tiddlywiki/vanilla/options.multids +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -67
- package/.github/workflows/pr-path-validation.yml +0 -18
- package/core/modules/commander.js +0 -172
- package/core/modules/commands/commands.js +0 -36
- package/core/modules/commands/deletetiddlers.js +0 -37
- package/core/modules/commands/fetch.js +0 -170
- package/core/modules/commands/import.js +0 -43
- package/core/modules/commands/init.js +0 -54
- package/core/modules/commands/listen.js +0 -43
- package/core/modules/commands/load.js +0 -46
- package/core/modules/commands/output.js +0 -33
- package/core/modules/commands/render.js +0 -65
- package/core/modules/commands/rendertiddlers.js +0 -64
- package/core/modules/commands/save.js +0 -63
- package/core/modules/commands/savetiddlers.js +0 -51
- package/core/modules/commands/savewikifolder.js +0 -220
- package/core/modules/commands/server.js +0 -50
- package/core/modules/commands/setfield.js +0 -53
- package/core/modules/server/authenticators/basic.js +0 -89
- package/core/modules/server/routes/delete-tiddler.js +0 -22
- package/core/modules/server/routes/get-favicon.js +0 -18
- package/core/modules/server/routes/get-file.js +0 -42
- package/core/modules/server/routes/get-index.js +0 -21
- package/core/modules/server/routes/get-login-basic.js +0 -30
- package/core/modules/server/routes/get-status.js +0 -27
- package/core/modules/server/routes/get-tiddler-html.js +0 -38
- package/core/modules/server/routes/get-tiddler.js +0 -40
- package/core/modules/server/routes/get-tiddlers-json.js +0 -44
- package/core/modules/server/routes/put-tiddler.js +0 -46
- package/core/modules/server/server.js +0 -373
- package/core/modules/utils/base64-utf8/base64-utf8.module.js +0 -142
- package/core/modules/utils/base64-utf8/base64-utf8.module.min.js +0 -9
- package/core/modules/utils/base64-utf8/tiddlywiki.files +0 -14
- package/core/modules/utils/filesystem.js +0 -542
- package/core/modules/utils/repository.js +0 -46
- package/editions/d3demo/tiddlers/CloudData.tid +0 -44
- package/editions/d3demo/tiddlers/DefaultTiddlers.tid +0 -3
- package/editions/d3demo/tiddlers/GraphData.tid +0 -10
- package/editions/d3demo/tiddlers/HelloThere.tid +0 -17
- package/editions/d3demo/tiddlers/SiteSubtitle.tid +0 -3
- package/editions/d3demo/tiddlers/SiteTitle.tid +0 -3
- package/editions/d3demo/tiddlers/grouped.tid +0 -3
- package/editions/d3demo/tiddlers/spiral.tid +0 -3
- package/editions/d3demo/tiddlywiki.info +0 -16
- package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -17
- package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -18
- package/editions/ja-JP/tiddlers/hellothere/Welcome.tid +0 -8
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -10
- package/editions/tahoelafs/tiddlers/DefaultTiddlers.tid +0 -3
- package/editions/tahoelafs/tiddlers/HelloThere.tid +0 -6
- package/editions/tahoelafs/tiddlers/SiteSubtitle.tid +0 -3
- package/editions/tahoelafs/tiddlers/SiteTitle.tid +0 -3
- package/editions/tahoelafs/tiddlywiki.info +0 -14
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project.htm +0 -23430
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(1) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(10) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(11) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(12) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(13) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(14) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(15) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(16) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(17) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(18) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(19) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(2) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(20) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(21) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(22) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(23) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(24) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(3) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(4) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(5) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(6) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(7) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(8) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(9) +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/app.css +0 -191
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.html +0 -95
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.js +0 -360
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs +0 -373
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.identities +0 -42
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.space +0 -108
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.users +0 -57
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/help.png +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/jquery.js +0 -11
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/normalize.css +0 -406
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/publicIcon +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/search.png +0 -0
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/status.js +0 -2
- package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/ts.js +0 -766
- package/editions/tiddlywiki-surveys/great-interview-project-2010/readme.md +0 -3
- package/editions/tiddlywiki-surveys/tiddlers/$__StoryList.tid +0 -2
- package/editions/tw5.com/tiddlers/$__StoryList.tid +0 -3
- package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter Team.tid +0 -60
- package/editions/tw5.com/tiddlers/community/resources/_TWeb.at_ by Mario Pietsch.tid +0 -16
- package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -16
- package/editions/tw5.com/tiddlers/definitions/TiddlyIE.tid +0 -9
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +0 -10
- package/editions/tw5.com/tiddlers/hellothere/Welcome.tid +0 -7
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -9
- package/editions/tw5.com/tiddlers/howtos/Windows HTA Hack.tid +0 -17
- package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
- package/editions/tw5.com/tiddlers/images/Funding.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png +0 -0
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png.meta +0 -3
- package/editions/tw5.com/tiddlers/images/MWS Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/MWS Banner.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/Tiddler Poster.png +0 -0
- package/editions/tw5.com/tiddlers/images/Tiddler Poster.png.meta +0 -5
- package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png.meta +0 -4
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png.meta +0 -6
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png.meta +0 -6
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png +0 -0
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png.meta +0 -4
- package/editions/tw5.com/tiddlers/macros/syntax/MacroParameterValue.tid +0 -11
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +0 -298
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +0 -302
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +0 -145
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.6.tid +0 -149
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +0 -184
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.7.tid +0 -140
- package/editions/tw5.com/tiddlers/saving/Saving with TiddlyIE.tid +0 -25
- package/editions/tw5.com/tiddlers/variables/Behaviour of invoked variables depends on how the variable was declared.tid +0 -52
- package/eslint.config.js +0 -333
- package/languages/ja-JP/Types/application%2Fjavascript.tid +0 -4
- package/languages/ja-JP/Types/application%2Fjson.tid +0 -4
- package/languages/ja-JP/Types/application%2Fx-tiddler-dictionary.tid +0 -4
- package/languages/ja-JP/Types/image%2Fgif.tid +0 -4
- package/languages/ja-JP/Types/image%2Fjpeg.tid +0 -4
- package/languages/ja-JP/Types/image%2Fpng.tid +0 -4
- package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +0 -4
- package/languages/ja-JP/Types/text%2Fcss.tid +0 -4
- package/languages/ja-JP/Types/text%2Fhtml.tid +0 -4
- package/languages/ja-JP/Types/text%2Fplain.tid +0 -4
- package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +0 -4
- package/plugins/tiddlywiki/blog/docs.tid +0 -6
- package/plugins/tiddlywiki/blog/plugin.info +0 -7
- package/plugins/tiddlywiki/blog/readme.tid +0 -5
- package/plugins/tiddlywiki/blog/templates/html-page/page.tid +0 -31
- package/plugins/tiddlywiki/blog/templates/html-page/post.tid +0 -32
- package/plugins/tiddlywiki/blog/templates/menu.tid +0 -15
- package/plugins/tiddlywiki/blog/templates/tiddler.tid +0 -35
- package/plugins/tiddlywiki/cecily/cecily.js +0 -140
- package/plugins/tiddlywiki/cecily/plugin.info +0 -7
- package/plugins/tiddlywiki/cecily/readme.tid +0 -9
- package/plugins/tiddlywiki/cecily/storyview-cecily.tid +0 -8
- package/plugins/tiddlywiki/d3/barwidget.js +0 -199
- package/plugins/tiddlywiki/d3/base.tid +0 -18
- package/plugins/tiddlywiki/d3/cloudwidget.js +0 -128
- package/plugins/tiddlywiki/d3/files/LICENSE +0 -26
- package/plugins/tiddlywiki/d3/files/cloud/LICENSE +0 -26
- package/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud.js +0 -401
- package/plugins/tiddlywiki/d3/files/d3.min.js +0 -5
- package/plugins/tiddlywiki/d3/files/tiddlywiki.files +0 -22
- package/plugins/tiddlywiki/d3/plugin.info +0 -7
- package/plugins/tiddlywiki/d3/readme.tid +0 -7
- package/plugins/tiddlywiki/hammerjs/files/LICENSE.markdown +0 -21
- package/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8.js +0 -6
- package/plugins/tiddlywiki/hammerjs/files/tiddlywiki.files +0 -20
- package/plugins/tiddlywiki/hammerjs/plugin.info +0 -8
- package/plugins/tiddlywiki/hammerjs/readme.tid +0 -3
- package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +0 -9
- package/plugins/tiddlywiki/highlight-legacy/files/default.css +0 -99
- package/plugins/tiddlywiki/highlight-legacy/files/highlight.pack.js +0 -2
- package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +0 -22
- package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +0 -38
- package/plugins/tiddlywiki/highlight-legacy/license.tid +0 -27
- package/plugins/tiddlywiki/highlight-legacy/plugin.info +0 -8
- package/plugins/tiddlywiki/highlight-legacy/readme.tid +0 -65
- package/plugins/tiddlywiki/highlight-legacy/styles.tid +0 -82
- package/plugins/tiddlywiki/highlight-legacy/usage.tid +0 -28
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/plugins/tiddlywiki/mobiledragdrop/files/LICENSE +0 -7
- package/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop.js +0 -477
- package/plugins/tiddlywiki/mobiledragdrop/files/tiddlywiki.files +0 -18
- package/plugins/tiddlywiki/mobiledragdrop/plugin.info +0 -8
- package/plugins/tiddlywiki/mobiledragdrop/rawmarkup.tid +0 -7
- package/plugins/tiddlywiki/mobiledragdrop/readme.tid +0 -5
- package/plugins/tiddlywiki/mobiledragdrop/startup.js +0 -20
- package/plugins/tiddlywiki/nodewebkitsaver/nodewebkit.js +0 -59
- package/plugins/tiddlywiki/nodewebkitsaver/plugin.info +0 -7
- package/plugins/tiddlywiki/nodewebkitsaver/readme.tid +0 -5
- package/plugins/tiddlywiki/tahoelafs/plugin.info +0 -7
- package/plugins/tiddlywiki/tahoelafs/readme.tid +0 -7
- package/plugins/tiddlywiki/tahoelafs/saver.js +0 -52
- /package/{core/modules → core-server}/commands/build.js +0 -0
- /package/{core/modules → core-server}/commands/clearpassword.js +0 -0
- /package/{core/modules → core-server}/commands/editions.js +0 -0
- /package/{core/modules → core-server}/commands/help.js +0 -0
- /package/{core/modules → core-server}/commands/makelibrary.js +0 -0
- /package/{core/modules → core-server}/commands/password.js +0 -0
- /package/{core/modules → core-server}/commands/rendertiddler.js +0 -0
- /package/{core/modules → core-server}/commands/savelibrarytiddlers.js +0 -0
- /package/{core/modules → core-server}/commands/savetiddler.js +0 -0
- /package/{core/modules → core-server}/commands/unpackplugin.js +0 -0
- /package/{core/modules → core-server}/commands/verbose.js +0 -0
- /package/{core/modules → core-server}/commands/version.js +0 -0
- /package/{core/modules → core-server}/server/authenticators/header.js +0 -0
- /package/{core/modules → core-server}/startup/commands.js +0 -0
- /package/{core/modules → core-server}/utils/edition-info.js +0 -0
- /package/editions/ja-JP/tiddlers/hiddensettings/{Hidden Setting_ Default Tiddler Icon.tid → Hidden Setting Default Tiddler Icon.tid} +0 -0
- /package/editions/ja-JP/tiddlers/howtos/{Custom Styles FAQ.tid → Custom_Styles_FAQ.tid} +0 -0
- /package/editions/ja-JP/tiddlers/howtos/{How to hide the author's and other fields with CSS.tid → How to hide the authors and other fields with CSS.tid} +0 -0
- /package/editions/ja-JP/tiddlers/howtos/{How to widen tiddlers (aka storyriver).tid → How to widen tiddlers (aka story river).tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.0.tid → pre-5.4.0/Release 5.1.0.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.1.tid → pre-5.4.0/Release 5.1.1.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.10.tid → pre-5.4.0/Release 5.1.10.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.11.tid → pre-5.4.0/Release 5.1.11.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.12.tid → pre-5.4.0/Release 5.1.12.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.13.tid → pre-5.4.0/Release 5.1.13.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.14.tid → pre-5.4.0/Release 5.1.14.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.15.tid → pre-5.4.0/Release 5.1.15.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.16.tid → pre-5.4.0/Release 5.1.16.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.17.tid → pre-5.4.0/Release 5.1.17.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.18.tid → pre-5.4.0/Release 5.1.18.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.19.tid → pre-5.4.0/Release 5.1.19.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.2.tid → pre-5.4.0/Release 5.1.2.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.20.tid → pre-5.4.0/Release 5.1.20.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.21.tid → pre-5.4.0/Release 5.1.21.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.22.tid → pre-5.4.0/Release 5.1.22.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.3.tid → pre-5.4.0/Release 5.1.3.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.4.tid → pre-5.4.0/Release 5.1.4.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.5.tid → pre-5.4.0/Release 5.1.5.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.6.tid → pre-5.4.0/Release 5.1.6.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.7.tid → pre-5.4.0/Release 5.1.7.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.8.tid → pre-5.4.0/Release 5.1.8.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.9.tid → pre-5.4.0/Release 5.1.9.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.1.tid → pre-5.4.0/Release 5.2.1.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.2.tid → pre-5.4.0/Release 5.2.2.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.3.tid → pre-5.4.0/Release 5.2.3.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.5.tid → pre-5.4.0/Release 5.2.5.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.7.tid → pre-5.4.0/Release 5.2.7.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.0.tid → pre-5.4.0/Release 5.3.0.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.1.tid → pre-5.4.0/Release 5.3.1.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.3.tid → pre-5.4.0/Release 5.3.3.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.4.tid → pre-5.4.0/Release 5.3.4.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.5.tid → pre-5.4.0/Release 5.3.5.tid} +0 -0
- /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.6.tid → pre-5.4.0/Release 5.3.6.tid} +0 -0
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
title: $:/language/Docs/ModuleTypes/
|
|
2
2
|
|
|
3
|
+
allfilteroperator: Ένας υπο-τελεστής για τον τελεστή φιλτραρίσματος ''all''.
|
|
3
4
|
animation: Κινούμενες εικόνες που μπορεί να χρησιμοποιηθούν με το RevealWidget.
|
|
4
5
|
authenticator: Ορίζει τον τρόπο με τον οποίο ο ενσωματωμένος διακομιστής HTTP ελέγχει τα αιτήματα.
|
|
6
|
+
bitmapeditoroperation: Μια λειτουργία του επεξεργαστή χαρτογραφικής εικόνας της εργαλειοθήκης.
|
|
7
|
+
command: Εντολές που μπορούν να εκτελεστούν εντός του Node.js.
|
|
5
8
|
config: Δεδομένα προς εισαγωγή στο `$tw.config`.
|
|
9
|
+
filteroperator: Ιδιαίτεροι τελεστές ή μέθοδοι φιλτραρίσματος.
|
|
6
10
|
global: Καθολικά δεδομένα προς εισαγωγή στο `$tw`.
|
|
7
11
|
info: Δημοσιεύει πληροφορίες συστήματος μέσω του ψευτο-πρόσθετου [[$:/temp/info-plugin]].
|
|
8
12
|
isfilteroperator: Παραμέτροι για τον τελεστή φιλτραρίσματος ''is''.
|
|
@@ -11,12 +15,16 @@ macro: Ορισμοί μακροεντολών JavaScript.
|
|
|
11
15
|
parser: Αναλυτές (parsers) για διάφορους τύπους περιεχομένων.
|
|
12
16
|
route: Ορίζει τον τρόπο με τον οποίο ο ενσωματωμένος διακομιστής HTTP χειρίζεται τα μοτίβα URL.
|
|
13
17
|
saver: Οι αποθηκευτές εξυπηρετούν διάφορες μεθόδους για την αποθήκευση αρχείων από το πρόγραμμα περιήγησης.
|
|
18
|
+
startup: Λειτουργίες έναρξης.
|
|
14
19
|
storyview: Οι προβολές ιστορικού τροποποιούν τις κινούμενες εικόνες και την συμπεριφορά των στοιχείων λίστας (list widgets).
|
|
15
20
|
texteditoroperation: Μια λειτουργία της εργαλειοθήκης επεξεργασίας κειμένου.
|
|
21
|
+
tiddlerdeserializer: Μετατρέπει διάφορους τύπους περιεχομένου σε tiddlers.
|
|
16
22
|
tiddlerfield: Καθορίζει την συμπεριφορά ενός μεμονομένου πεδίου tiddler.
|
|
17
23
|
tiddlermethod: Προσθέτει μεθόδους στο πρωτότυπο `$tw.Tiddler`.
|
|
18
24
|
upgrader: Εφαρμόζει την επεξεργασία αναβάθμισης στα tiddler κατά την διάρκεια μιας αναβάθμισης ή εισαγωγής.
|
|
25
|
+
utils: Προσθέτει μεθόδους στο `$tw.utils`.
|
|
19
26
|
utils-browser: Προσθέτει μεθόδους εξειδικευμένες για το πρόγραμμα περιήγησης στο `$tw.utils`.
|
|
20
27
|
utils-node: Προσθέτει μεθόδους εξειδικευμένες για το Node.js στο `$tw.utils`.
|
|
21
28
|
widget: Στοιχεία (widgets) που συμπυκνώνουν (encapsulate) την απεικόνιση και ανανέωση του DOM.
|
|
29
|
+
wikimethod: Προσθέτει μεθόδους στο `$tw.Wiki`.
|
|
22
30
|
wikirule: Μεμονωμένοι κανόνες ανάλυσης (parser rules) για τον κύριο γραμματικό αναλυτή της wiki-γραφής (WikiText).
|
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
title: $:/language/Docs/PaletteColours/
|
|
2
2
|
|
|
3
|
+
alert-background: Υπόβαθρο προειδοποίησης
|
|
4
|
+
alert-border: Περίγραμμα προειδοποίησης
|
|
5
|
+
alert-highlight: Επισήμανση προειδοποίησης
|
|
3
6
|
alert-muted-foreground: Προσκήνιο προειδοποίησης, βουβού τύπου
|
|
7
|
+
background: Γενικό υπόβαθρο
|
|
4
8
|
blockquote-bar: Πλαίσιο παραθέσεων αποσπασμάτων
|
|
5
9
|
button-background: Προκαθορισμένο υπόβαθρο κουμπιών
|
|
10
|
+
button-border: Περίγραμμα προεπιλεγμένου κουμπιού
|
|
11
|
+
button-foreground: Χρώμα προεπιλεγμένου κουμπιού
|
|
12
|
+
code-background: Υπόβαθρο κώδικα
|
|
13
|
+
code-border: Περίγραμμα κώδικα
|
|
14
|
+
code-foreground: Προσκήνιο κώδικα
|
|
15
|
+
dirty-indicator: Ένδειξη μη αποθηκευμένων αλλαγών
|
|
6
16
|
download-background: Υπόβαθρο για το κουμπί λήψης
|
|
7
17
|
download-foreground: Προσκήνιο για το κουμπί λήψης
|
|
8
18
|
dragger-background: Υπόβαθρο συρσίματος
|
|
@@ -21,6 +31,9 @@ external-link-foreground-visited: Υπόβαθρο για εξωτερικούς
|
|
|
21
31
|
foreground: Γενικό προσκήνιο
|
|
22
32
|
menubar-background: Υπόβαθρο γραμμής μενού
|
|
23
33
|
menubar-foreground: Προσκήνιο γραμμής μενού
|
|
34
|
+
message-background: Υπόβαθρο πλαισίου μηνύματος
|
|
35
|
+
message-border: Περίγραμμα πλαισίου μηνύματος
|
|
36
|
+
message-foreground: Προσκήνιο πλαισίου μηνύματος
|
|
24
37
|
modal-backdrop: Υπόβαθρο σκηνικό όταν εμφανίζεται ένα αποκλειστικό παράθυρο
|
|
25
38
|
modal-background: Υπόβαθρο αποκλειστικού παραθύρου
|
|
26
39
|
modal-border: Περίγραμμα αποκλειστικού παραθύρου
|
|
@@ -28,9 +41,11 @@ modal-footer-background: Υπόβαθρο υποσέλιδου σε αποκλε
|
|
|
28
41
|
modal-footer-border: Περίγραμμα υποσέλιδου σε αποκλειστικά παράθυρα
|
|
29
42
|
modal-header-border: Περίγραμμα κεφαλίδας σε αποκλειστικά παράθυρα
|
|
30
43
|
muted-foreground: Γενικό προσκήνιο, βουβού τύπου
|
|
44
|
+
notification-background: Υπόβαθρο ειδοποίησης
|
|
45
|
+
notification-border: Περίγραμμα ειδοποίησης
|
|
31
46
|
page-background: Υπόβαθρο σελίδας
|
|
32
47
|
pre-background: Υπόβαθρο προδιαμορφωμένου κώδικα
|
|
33
|
-
pre-border: Περίγραμμα προδιαμορφωμένου κώδικα
|
|
48
|
+
pre-border: Περίγραμμα προδιαμορφωμένου κώδικα
|
|
34
49
|
primary: Γενικό κύριο χρώμα
|
|
35
50
|
select-tag-background: Προσκήνιο στοιχείων `<select>`
|
|
36
51
|
select-tag-foreground: Προσκήνιο κειμένου σε στοιχεία `<select>`
|
|
@@ -55,9 +70,19 @@ stability-deprecated: Κονκάρδα για το «υπό απόσυρση»
|
|
|
55
70
|
stability-experimental: Κονκάρδα για το «πειραματικό» επίπεδο σταθερότητας
|
|
56
71
|
stability-legacy: Κονκάρδα για το «παρωχημένο» επίπεδο σταθερότητας
|
|
57
72
|
stability-stable: Κονκάρδα για το «σταθερό» επίπεδο σταθερότητας
|
|
73
|
+
static-alert-foreground: Προσκήνιο στατικής προειδοποίησης
|
|
74
|
+
tab-background: Υπόβαθρο καρτέλας
|
|
58
75
|
tab-background-selected: Υπόβαθρο επιλεγμένων καρτελών
|
|
76
|
+
tab-border: Περίγραμμα καρτέλας
|
|
59
77
|
tab-border-selected: Περίγραμμα επιλεγμένων καρτελών
|
|
78
|
+
tab-divider: Διαχωριστής καρτελών
|
|
79
|
+
tab-foreground: Προσκήνιο καρτέλας
|
|
60
80
|
tab-foreground-selected: Προσκήνιο επιλεγμένων καρτελών
|
|
81
|
+
table-border: Περίγραμμα καρτέλας
|
|
82
|
+
table-footer-background: Υπόβαθρο υπότιτλου σε πίνακα
|
|
83
|
+
table-header-background: Υπόβαθρο επικεφαλίδας πίνακα
|
|
84
|
+
tag-background: Υπόβαθρο ετικέτας
|
|
85
|
+
tag-foreground: Προσκήνιο ετικέτας
|
|
61
86
|
testcase-accent-level-1: Απόχρωση υπόθεσης δοκιμής χωρίς ένθεση
|
|
62
87
|
testcase-accent-level-2: Απόχρωση υπόθεσης δοκιμής με ένθεση 3ου επιπέδου
|
|
63
88
|
testcase-accent-level-3: Απόχρωση υπόθεσης δοκιμής με ένθεση 3ου ή παραπάνω επιπέδου
|
|
@@ -1,21 +1,40 @@
|
|
|
1
1
|
title: $:/language/EditTemplate/
|
|
2
2
|
|
|
3
3
|
Body/External/Hint: Αυτό το tiddler εμφανίζει περιεχόμενο που είναι αποθηκευμένο εκτός του κυρίου αρχείου του TiddlyWiki. Μπορείς να τροποποιήσεις τις ετικέτες και τα πεδία, αλλά δεν μπορείς να τροποποιήσεις άμεσα το ίδιο το περιεχόμενο
|
|
4
|
-
Body/Placeholder:
|
|
4
|
+
Body/Placeholder: Γράψε το κείμενο για αυτό το tiddler
|
|
5
5
|
Body/Preview/Type/DiffCurrent: διαφορές από το παρόν
|
|
6
6
|
Body/Preview/Type/DiffShadow: διαφορές από σκιώδες tiddler (εάν υπάρχουν)
|
|
7
|
+
Body/Preview/Type/Output: αποτέλεσμα
|
|
7
8
|
Caption: Επεξεργαστής
|
|
8
9
|
Field/Dropdown/Caption: λίστα πεδίων
|
|
9
10
|
Field/Dropdown/Hint: Πρόβαλλε κατάλογο με πεδία
|
|
11
|
+
Field/Remove/Caption: αφαίρεσε το πεδίο
|
|
12
|
+
Field/Remove/Hint: Αφαιρεί το πεδίο
|
|
13
|
+
Fields/Add/Button: προσθήκη
|
|
10
14
|
Fields/Add/Button/Hint: Πρόσθεσε το νέο πεδίο στο tiddler
|
|
11
|
-
|
|
15
|
+
Fields/Add/Dropdown/System: Πεδία του συστήματος
|
|
16
|
+
Fields/Add/Dropdown/User: Πεδία του χρήστη
|
|
17
|
+
Fields/Add/Name/Placeholder: όνομα πεδίου
|
|
18
|
+
Fields/Add/Prompt: Πρόσθεσε ένα νέο πεδίο:
|
|
19
|
+
Fields/Add/Value/Placeholder: τιμή πεδίου
|
|
20
|
+
Shadow/OverriddenWarning: Αυτό είναι ένα τροποποιημένο σκιώδες tiddler. Μπορείς να διαγράψεις αυτό το tiddler για να ανακαλέσεις στην προκαθορισμένη εκδοχή στο <<pluginLink>>
|
|
21
|
+
Shadow/Warning: Αυτό είναι ένα σκιώδες tiddler. Οποιεσδήποτε αλλαγές κάνετε θα παρακάμψουν την προκαθορισμένη εκδοχή του πρόσθετου <<pluginLink>>
|
|
22
|
+
Tags/Add/Button: προσθήκη
|
|
12
23
|
Tags/Add/Button/Hint: προσθήκη ετικέτας
|
|
24
|
+
Tags/Add/Placeholder: όνομα ετικέτας
|
|
13
25
|
Tags/ClearInput/Caption: καθαρισμός εισόδου
|
|
14
26
|
Tags/ClearInput/Hint: Εκκαθάρισε το κείμενο ετικέτας
|
|
27
|
+
Tags/Dropdown/Caption: λίστα ετικετών
|
|
28
|
+
Tags/Dropdown/Hint: Εμφανίζει την λίστα ετικετών
|
|
15
29
|
Tags/EmptyMessage: Δεν βρέθηκαν ετικέτες
|
|
16
30
|
Tags/EmptyMessage/System: Δεν βρέθηκαν ετικέτες σηστήματος
|
|
31
|
+
Title/BadCharacterWarning: Προειδοποίηση: αποφύγετε την χρήση των χαρακτήρων <<bad-chars>> στους τίτλους των tiddler
|
|
32
|
+
Title/Exists/Prompt: Το tiddler προορισμού υπάρχει ήδη
|
|
17
33
|
Title/References/Prompt: Οι ακόλουθες αναφορές σε αυτό το tiddler δεν θα ενημερωθούν αυτόματα:
|
|
18
34
|
Title/Relink/Prompt: Ενημέρωσε το ''<$text text=<<fromTitle>>/>'' σε ''<$text text=<<toTitle>>/>'' στα πεδία //tags// και //list// των υπολοίπων tiddlers
|
|
19
35
|
Type/Delete/Caption: διέγραψε τον τύπο περιεχομένου
|
|
20
36
|
Type/Delete/Hint: Διέγραψε τον τύπο περιεχομένου
|
|
37
|
+
Type/Dropdown/Caption: λίστα τύπων περιεχομένου
|
|
21
38
|
Type/Dropdown/Hint: Εμφάνισε κατάλογο με τύπους περιεχομένου
|
|
39
|
+
Type/Placeholder: τύπος περιεχομένου
|
|
40
|
+
Type/Prompt: Τύπος:
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
title: $:/language/Docs/Fields/
|
|
2
2
|
|
|
3
|
+
_canonical_uri: Το πλήρες URI ενός εξωτερικού tiddler εικόνας
|
|
3
4
|
_is_skinny: Εάν υπάρχει, υποδεικνύει ότι το πεδίο κειμένου του tiddler πρέπει να φορτωθεί από τον διακομιστή
|
|
4
5
|
author: Το όνομα του δημιουργού ενός πρόσθετου
|
|
6
|
+
bag: Το όνομα του σακιδίου από όπου προέρχεται το tiddler
|
|
5
7
|
caption: Το κείμενο που προβάλλεται σε καρτέλα ή κουμπί
|
|
6
8
|
class: Η κλάση CSS που εφαρμόστηκε σε ένα tiddler κατά την απόδοσή του. Χρησιμοποιείται επίσης για αποκλειστικά παράθυρα.
|
|
7
9
|
code-body: Αν οριστεί σε ''yes'', το πρότυπο προβολής θα προβάλλει το tiddler ως κώδικα
|
|
@@ -17,17 +19,27 @@ draft.of: Για πρόχειρα tiddlers, περιέχει τον τίτλο
|
|
|
17
19
|
draft.title: Για πρόχειρα tiddlers, περιέχει τον προτεινόμενο νέο τίτλο του tiddler
|
|
18
20
|
footer: Το κείμενο του υποσέλιδου για ένα αποκλειστικό παράθυρο
|
|
19
21
|
hide-body: Αν οριστεί σε ''yes'', το πρότυπο προβολής θα αποκρύψει τα κυρίως κείμενα των tiddlers
|
|
22
|
+
icon: Ο τίτλος του tiddler που περιέχει το εικονίδιο που σχετίζεται με ένα tiddler
|
|
20
23
|
library: Αν οριστεί σε ''yes'' υποδεικνύει πως το tiddler θα πρέπει να αποθηκευτεί ως μια βιβλιοθήκη JavaScript
|
|
24
|
+
list: Μια διατεταγμένη λίστα από τίτλους tiddler που σχετίζεται με ένα tiddler
|
|
21
25
|
list-after: Αν οριστεί, ο τίτλος από ένα tiddler όπου μετά από αυτό το tiddler πρέπει να προστεθεί στην διατεταγμένη λίστα των tiddler τίτλων, ή στο τέλος της λίστας αν αυτό το πεδίο είναι παρόν αλλά κενό
|
|
22
26
|
list-before: Αν οριστεί, ο τίτλος από ένα tiddler όπου πριν από αυτό το tiddler πρέπει να προστεθεί στην διατεταγμένη λίστα των tiddler τίτλων, ή στην αρχή της λίστας αν αυτό το πεδίο είναι παρόν αλλά κενό
|
|
23
27
|
modified: Η ημερομηνία και ώρα κατά την οποία ένα tiddler τροποποιήθηκε πιο πρόσφατα
|
|
28
|
+
modifier: Ο τίτλος του tiddler που σχετίζεται με το τελευταίο πρόσωπο που τροποποίησε το tiddler
|
|
24
29
|
module-type: Καθορίζει το είδος μονάδας είναι τα JavaScript tiddlers
|
|
25
30
|
name: Το όνομα, αναγνώσιμο από τον άνθρωπο, που συσχετίζεται με ένα tiddler πρόσθετου
|
|
26
31
|
parent-plugin: Για ένα πρόσθετο, καθορίζει ποιο πρόσθετο του οποίου είναι δευτερεύον πρόσθετο
|
|
32
|
+
plugin-priority: Μια αριθμητική τιμή που καθορίζει την προτεραιότητα ενός tiddler πρόσθετου
|
|
33
|
+
plugin-type: Ο τύπος του πρόσθετου σε ένα tiddler πρόσθετου
|
|
27
34
|
released: Η ημερομηνία μιας έκδοσης του TiddlyWiki
|
|
28
35
|
revision: Η αναθεώρηση από το tiddler που διατηρείται στον διακομιστή
|
|
29
36
|
source: Το πηγαίο URL που συσχετίζεται με ένα tiddler
|
|
30
37
|
stability: Η κατάσταση ανάπτυξης ενός πρόσθετου: παρωχημένο, πειραματικό, σταθερό ή υπό απόσυρση
|
|
31
38
|
subtitle: Το κείμενο στον υπότιτλο για ένα αποκλειστικό παράθυρο
|
|
39
|
+
tags: Μια λίστα από ετικέτες που σχετίζονται με ένα tiddler
|
|
40
|
+
text: Το κυρίως κείμενο ενός tiddler
|
|
32
41
|
throttle.refresh: Εάν υπάρχει, επιβραδύνει τις ανανεώσεις αυτού του tiddler
|
|
42
|
+
title: Το μοναδικό όνομα ενός tiddler
|
|
33
43
|
toc-link: Αν οριστεί σε ''no'', αποκρύπτει τον σύνδεσμο του tiddler σε έναν δενδροειδή Πίνακα Περιεχομένων
|
|
44
|
+
type: Ο τύπος περιεχομένου ενός tiddler
|
|
45
|
+
version: Πληροφορίες έκδοσης για ένα πρόσθετο
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
title: $:/language/Filters/
|
|
2
2
|
|
|
3
|
+
AllTags: Όλες οι ετικέτες, εκτός των ετικετών συστήματος
|
|
4
|
+
AllTiddlers: Όλα, εκτός των tiddler συστήματος
|
|
5
|
+
Drafts: Πρόχειρα tiddler
|
|
3
6
|
Missing: Tiddlers που λείπουν
|
|
7
|
+
Orphans: Ορφανά tiddler
|
|
4
8
|
OverriddenShadowTiddlers: Σκιώδη tiddler που έχουν αντικατασταθεί
|
|
5
9
|
RecentSystemTiddlers: Πρόσφατα τροποποιημένα tiddlers, συμπεριλαμβανομένων και των tiddler του συστήματος
|
|
6
10
|
RecentTiddlers: Πρόσφατα τροποποιημένα tiddlers
|
|
7
11
|
SessionTiddlers: Tiddlers που έχουν τροποποιηθεί αφού φορτώθηκε το wiki
|
|
8
12
|
ShadowTiddlers: Σκιώδη tiddler
|
|
9
13
|
StoryList: Tiddler στην ιστορική ροή, εξαιρώντας τα <$text text="$:/AdvancedSearch"/>
|
|
14
|
+
SystemTags: Ετικέτες συστήματος
|
|
10
15
|
SystemTiddlers: Tiddler συστήματος
|
|
11
16
|
TypedTiddlers: Tiddler χωρίς wiki-γραφή
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
title: $:/language/Help/help
|
|
2
|
+
description: Εμφανίζει κείμενο βοήθειας για τις εντολές του TiddlyWiki
|
|
3
|
+
|
|
4
|
+
Εμφανίζει βοηθητικό κείμενο για μία εντολή:
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
--help [<όνομα εντολής>]
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Αν δεν οριστεί όνομα εντολής, τότε εμφανίζει μια λίστα με τις διαθέσιμες εντολές.
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
title: $:/language/Import/
|
|
2
2
|
|
|
3
3
|
Editor/Import/Heading: Κάνε εισαγωγή τις εικόνες και πρόσθεσέ τις στον επεξεργαστή.
|
|
4
|
+
Imported/Hint: Τα ακόλουθα tiddler έχουν εισαχθεί:
|
|
5
|
+
Listing/Cancel/Caption: Άκυρο
|
|
4
6
|
Listing/Cancel/Warning: Θέλεις να ακυρώσεις την εισαγωγή;
|
|
5
7
|
Listing/Hint: Αυτά τα tiddlers είναι έτοιμα για εισαγωγή:
|
|
8
|
+
Listing/Import/Caption: Εισαγωγή
|
|
9
|
+
Listing/ImportOptions/Caption: Επιλογές εισαγωγής
|
|
10
|
+
Listing/ImportOptions/NoMatch: Δεν ισχύουν επιλογές εισαγωγής για αυτά τα αρχεία.
|
|
6
11
|
Listing/Preview: Προεπισκόπιση:
|
|
7
12
|
Listing/Preview/Diff: Διαφορά
|
|
8
|
-
Listing/Preview/DiffFields: Διαφορά (
|
|
13
|
+
Listing/Preview/DiffFields: Διαφορά (πεδίων)
|
|
9
14
|
Listing/Preview/Fields: Πεδία
|
|
10
15
|
Listing/Preview/Text: Κείμενο
|
|
11
16
|
Listing/Preview/TextRaw: Κείμενο (ακατέργαστο)
|
|
@@ -14,6 +19,9 @@ Listing/Rename/ConfirmRename: Μετονομασία tiddler
|
|
|
14
19
|
Listing/Rename/OverwriteWarning: Υπάρχει ήδη ένα tiddler με αυτόν τον τίτλο.
|
|
15
20
|
Listing/Rename/Prompt: Μετονομασία σε:
|
|
16
21
|
Listing/Rename/Tooltip: Μετονομασία tiddler πριν την εισαγωγή
|
|
22
|
+
Listing/Select/Caption: Επιλογή
|
|
23
|
+
Listing/Status/Caption: Κατάσταση
|
|
24
|
+
Listing/Title/Caption: Τίτλος
|
|
17
25
|
Upgrader/Plugins/Suppressed/Incompatible: Μπλοκαρίστηκε ασύμβατο ή παρωχημένο πρόσθετο.
|
|
18
26
|
Upgrader/Plugins/Suppressed/Version: Μπλοκαρίστηκε το πρόσθετο (επειδή το εισερχόμενο <<incoming>> δεν είναι πιο καινούριο από το υπάρχον <<existing>>)
|
|
19
27
|
Upgrader/Plugins/Upgraded: Αναβαθμίστηκε το πρόσθετο από <<incoming>> σε <<upgraded>>
|
|
@@ -1,48 +1,80 @@
|
|
|
1
1
|
title: $:/language/
|
|
2
2
|
|
|
3
3
|
AboveStory/ClassicPlugin/Warning: Φαίνεται πως προσπαθείς να φορτώσεις ένα πρόσθετο που έχει σχεδιαστεί για το ~TiddlyWiki Classic. Σημειώνουμε ότι [[αυτά τα πρόσθετα δεν λειτουργούν με την έκδοση 5.χ.χ του TiddlyWiki|https://tiddlywiki.com/#TiddlyWikiClassic]]. Πρόσθετα ~TiddlyWiki Classic που εντοπίστηκαν:
|
|
4
|
+
Alerts: Προειδοποιήσεις
|
|
5
|
+
BinaryWarning/Prompt: Αυτό το tiddler περιέχει δυαδικά δεδομένα
|
|
4
6
|
ClassicWarning/Hint: Αυτό το tiddler έχει γραφτεί με την wiki-γραφή του TiddlyWiki Classic, που δεν είναι πλήρως συμβατή με τη γραφή της 5ης έκδοσης του TiddlyWiki. Δες το https://tiddlywiki.com/static/Upgrading.html για περισσότερες λεπτομέρειες.
|
|
7
|
+
ClassicWarning/Upgrade/Caption: αναβάθμιση
|
|
5
8
|
CloseAll/Button: κλείσε τα όλα
|
|
9
|
+
ColourPicker/Recent: Πρόσφατα:
|
|
6
10
|
ConfirmAction: Θέλεις να συνεχίσεις;
|
|
7
11
|
ConfirmCancelTiddler: Θέλεις να απορριφθούν οι όποιες τροποποιήσεις έχεις κάνει στο tiddler «<$text text=<<title>>/>»;
|
|
8
12
|
ConfirmDeleteTiddler: Θέλεις να διαγράψεις το tiddler «<$text text=<<title>>/>»;
|
|
9
13
|
ConfirmDeleteTiddlers: Σίγουρα θέλεις να διαγράψεις <<resultCount>> tiddlers;
|
|
10
14
|
ConfirmEditShadowTiddler: Πρόκειται να τροποποιήσεις ένα σκιώδη tiddler. Οποιεσδήποτε τροποποιήσεις θα αντικαταστήσουν το τυπικό σύστημα και υπάρχει κίνδυνος να δυσκολευτείτε σε σε μελλοντική αναβάθμιση. Είστε σίγουροι ότι θέλετε να τροποποιήσετε το «<$text text=<<title>>/>»;
|
|
11
15
|
ConfirmOverwriteTiddler: Θέλετε να αντικαταστήσετε το tiddler «<$text text=<<title>>/>»?
|
|
16
|
+
Count: απαρίθμηση
|
|
17
|
+
DefaultNewTiddlerTitle: Νέο tiddler
|
|
12
18
|
Diffs/CountMessage: <<diff-count>> διαφορές
|
|
19
|
+
Draft/Attribution: Πρόχειρο του «<<draft-title>>» από {{$:/status/UserName}}
|
|
20
|
+
Draft/Title: Πρόχειρο του «<<draft-title>>»
|
|
13
21
|
DropMessage: Άφησε εδώ (ή πάτησε το πλήκτρο Esc για να ακύρωσεις)
|
|
22
|
+
Encryption/Cancel: Άκυρο
|
|
14
23
|
Encryption/ConfirmClearPassword: Θέλεις να αφαιρέσεις τον κωδικό; Αυτό θα έχει ως συνέπεια να μην κρυπτογραφείται το wiki όταν αποθηκεύεται
|
|
15
24
|
Encryption/Password: Κωδικός
|
|
16
25
|
Encryption/PasswordNoMatch: Οι κωδικοί δεν ταιριάζουν
|
|
17
26
|
Encryption/PromptSetPassword: Όρισε τον νέο κωδικό για αυτό το TiddlyWiki
|
|
18
27
|
Encryption/RepeatPassword: Επανέλαβε τον κωδικό
|
|
19
28
|
Encryption/SetPassword: Όρισε κωδικό
|
|
29
|
+
Encryption/Username: Όνομα χρήστη
|
|
30
|
+
Error/Caption: Σφάλμα
|
|
20
31
|
Error/DeserializeOperator/MissingOperand: Σφάλμα Φίλτρου: Λείπει ο τελεστής για τον τελεστή «deserialize»
|
|
21
32
|
Error/DeserializeOperator/UnknownDeserializer: Σφάλμα Φίλτρου: Άγνωστος αποσειριοποιητής παρέχεται ως τελεστής για τον τελεστή «deserialize»
|
|
33
|
+
Error/Filter: Σφάλμα φίλτρου
|
|
22
34
|
Error/FilterRunPrefix: Σφάλμα Φίλτρου: Άγνωστο πρόθεμα για την εκτέλεση φίλτρου
|
|
35
|
+
Error/FilterSyntax: Συντακτικό σφάλμα στην έκφραση του φίλτρου
|
|
23
36
|
Error/FormatFilterOperator: Σφάλμα Φίλτρου: Άγνωστο επίθημα για τον τελεστή φίλτρου «format»
|
|
24
37
|
Error/IsFilterOperator: Σφάλμα Φίλτρου: Άγνωστη παράμετρος για τον τελεστή φίλτρου «is»
|
|
38
|
+
Error/LoadingPluginLibrary: Σφάλμα κατά την φόρτωση της βιβλιοθήκης του πρόσθετου
|
|
25
39
|
Error/NetworkErrorAlert: `<h2>''Σφάλμα δικτύου''</h2>Φαίνεται ότι η σύνδεση με τον διακομιστή έχει χαθεί. Αυτό μπορεί να υποδηλώνει πρόβλημα με τη σύνδεση του δικτύου. Προσπάθησε να επαναφέρεις τη σύνδεση δικτύου πριν συνεχίσεις.<br><br>''Οποιεσδήποτε αποθηκευμένες αλλαγές που δεν έχουν αποθηκευτεί θα συγχρονιστούν αυτόματα όταν αποκατασταθεί η σύνδεση''.`
|
|
26
40
|
Error/PutEditConflict: Το αρχείο άλλαξε στον εξυπηρετητή
|
|
27
41
|
Error/PutForbidden: Η άδεια απερρίφθη
|
|
28
42
|
Error/PutUnauthorized: Απαιτείται ταυτοποίηση
|
|
43
|
+
Error/RecursiveTransclusion: Σφάλμα αναδρομής σε transclusion στο transclude widget
|
|
29
44
|
Error/RetrievingSkinny: Σφάλμα κατά την ανάκληση της λίστας λεπτών tiddler
|
|
45
|
+
Error/SavingToTWEdit: Σφάλμα κατά την αποθήκευση στο TWEdit
|
|
46
|
+
Error/WhileSaving: Σφάλμα κατά την αποθήκευση
|
|
30
47
|
Error/XMLHttpRequest: Κωδικός σφάλματος XMLHttpRequest
|
|
31
48
|
Error/ZoominTextNode: Σφάλμα Προβολής Ιστορίας: Φαίνεται ότι προσπάθησες να αλληλεπιδράσεις με ένα tiddler που εμφανίζεται σε προσαρμοσμένο δοχείο. Αυτό πιθανότατα προκαλείται από τη χρήση του φίλτρου `$:/tags/StoryTiddlerTemplateFilter` με ένα πρότυπο που περιέχει κείμενο ή κενό/α στην αρχή. Παρακαλούμε χρησιμοποίησε το pragma `\whitespace trim` και βεβαίωσε ότι όλο το περιεχόμενο του tiddler περιλαμβάνεται σε μόνο ένα στοιχείο HTML. Το κείμενο που προκάλεσε αυτό το πρόβλημα:
|
|
32
|
-
InternalJavaScriptError/Hint:
|
|
49
|
+
InternalJavaScriptError/Hint: Λοιπόν, αυτό είναι ντροπιαστικό. Συνιστάμε να επανεκκινήσεις το TiddlyWiki, πατώντας ανανέωση στον περιηγητή σου
|
|
33
50
|
InternalJavaScriptError/Title: Εσωτερικό Σφάλμα JavaScript
|
|
34
51
|
LayoutSwitcher/Description: Άνοιξε τον εναλλάκτη διατάξεων
|
|
35
52
|
LazyLoadingWarning: <p>Γίνεται φόρτωση εξωτερικού περιεχόμενο από ''<$text text={{!!_canonical_uri}}/>''</p><p>Αν αυτό το μήνυμα δεν εξαφανιστεί, ενδέχεται ότι ο τύπος tiddler δεν ταιριάζει με τον τύπο του εξωτερικού περιεχομένου, ή πως το πρόγραμμα περιήγησης που χρησιμοποιείς δεν υποστηρίζει εξωτερικό περιεχόμενο για wiki που φορτώθηκαν ως αυτοτελή Δες σχετικά στο https://tiddlywiki.com/#ExternalText</p>
|
|
36
53
|
LoginToTiddlySpace: Είσοδος στο TiddlySpace
|
|
37
54
|
Manager/Controls/FilterByTag/None: (καμία)
|
|
55
|
+
Manager/Controls/FilterByTag/Prompt: Φιλτράρισμα με ετικέτα:
|
|
56
|
+
Manager/Controls/Order/Prompt: Αντιστροφή σειράς
|
|
57
|
+
Manager/Controls/Search/Placeholder: Αναζήτηση
|
|
58
|
+
Manager/Controls/Search/Prompt: Αναζήτηση:
|
|
59
|
+
Manager/Controls/Show/Option/Tags: ετικέτες
|
|
60
|
+
Manager/Controls/Show/Prompt: Δείξε:
|
|
61
|
+
Manager/Controls/Sort/Prompt: Ταξινόμηση βάσει:
|
|
62
|
+
Manager/Item/Colour: Χρώμα
|
|
63
|
+
Manager/Item/Fields: Πεδία
|
|
64
|
+
Manager/Item/Icon: Εικονίδιο
|
|
65
|
+
Manager/Item/Icon/None: (κανένα)
|
|
38
66
|
Manager/Item/RawText: Ακατέργαστο κείμενο
|
|
67
|
+
Manager/Item/Tags: Ετικέτες
|
|
68
|
+
Manager/Item/Tools: Εργαλεία
|
|
39
69
|
Manager/Item/WikifiedText: Wiki-ποιημένο κείμενο
|
|
40
70
|
MissingTiddler/Hint: Ανύπαρκτο tiddler «<$text text=<<currentTiddler>>/>» - πάτησε {{||$:/core/ui/Buttons/edit}} για να το δημιουργήσεις
|
|
71
|
+
No: Όχι
|
|
41
72
|
OfficialPluginLibrary: Επίσημη Βιβλιοθήκη Πρόσθετων ~TiddlyWiki
|
|
42
73
|
OfficialPluginLibrary/Hint: Η επίσημη βιβλιοθήκη πρόσθετων του ~TiddlyWiki στο tiddlywiki.com. Τα πρόσθετα, τα θέματα και τα πακέτα γλωσσών συντηρούνται από την κεντρική ομάδα.
|
|
43
74
|
PageTemplate/Description: η προκαθορισμένη διάταξη του ~TiddlyWiki
|
|
44
|
-
PageTemplate/Name: Τυπική
|
|
75
|
+
PageTemplate/Name: Τυπική διάταξη
|
|
45
76
|
PluginReloadWarning: Παρακαλούμε αποθήκευσε {{$:/core/ui/Buttons/save-wiki}} και επαναφόρτωσε {{$:/core/ui/Buttons/refresh}} προκειμένου να ενεργοποιηθούν οι αλλαγές στα πρόσθετα
|
|
77
|
+
RecentChanges/DateFormat: DDth MMM YYYY
|
|
46
78
|
Shortcuts/Input/Accept/Hint: Αποδέξου το επιλεγμένο στοιχείο
|
|
47
79
|
Shortcuts/Input/AcceptVariant/Hint: Αποδέξου το επιλεγμένο στοιχείο (παραλλαγή)
|
|
48
80
|
Shortcuts/Input/AdvancedSearch/Hint: Άνοιξε τη ~AdvancedSearch από το πεδίο αναζήτησης στη πλευρική εργαλειοθήκη
|
|
@@ -52,11 +84,19 @@ Shortcuts/Input/Tab-Left/Hint: Επέλεξε την προηγούμενη κα
|
|
|
52
84
|
Shortcuts/Input/Tab-Right/Hint: Επέλεξε την επόμενη καρτέλα
|
|
53
85
|
Shortcuts/Input/Up/Hint: Επέλεξε το προηγούμενο αντικείμενο
|
|
54
86
|
Shortcuts/SidebarLayout/Hint: Άλλαξε τη διάταξη της πλευρικής εργαλειοθήκης
|
|
55
|
-
Switcher/Subtitle/language: Άλλαξε
|
|
56
|
-
Switcher/Subtitle/layout: Άλλαξε
|
|
57
|
-
Switcher/Subtitle/palette: Άλλαξε
|
|
58
|
-
Switcher/Subtitle/theme: Άλλαξε
|
|
87
|
+
Switcher/Subtitle/language: Άλλαξε γλώσσα
|
|
88
|
+
Switcher/Subtitle/layout: Άλλαξε διάταξη
|
|
89
|
+
Switcher/Subtitle/palette: Άλλαξε παλέτα
|
|
90
|
+
Switcher/Subtitle/theme: Άλλαξε θέμα
|
|
91
|
+
SystemTiddler/Tooltip: Αυτό είναι ένα tiddler συστήματος
|
|
92
|
+
SystemTiddlers/Include/Prompt: Συμπεριέλαβε συστεμικά tiddlers
|
|
93
|
+
TagManager/Colour/Heading: Χρώμα
|
|
59
94
|
TagManager/Count/Heading: Απαρίθμηση
|
|
95
|
+
TagManager/Icon/Heading: Εικονίδιο
|
|
60
96
|
TagManager/Icons/None: Κανένα
|
|
97
|
+
TagManager/Info/Heading: Πληροφορίες
|
|
98
|
+
TagManager/Tag/Heading: Ετικέτα
|
|
99
|
+
Tiddler/DateFormat: DDth MMM YYYY στις hh12:0mmam
|
|
61
100
|
UnsavedChangesWarning: Έχεις μη αποθηκευμένες αλλαγές στο TiddlyWiki
|
|
101
|
+
Yes: Ναι
|
|
62
102
|
Εντοπίστηκε πρόσθετο για την έκδοση ~TiddlyWiki Classic: Εντοπίστηκε πρόσθετο για την έκδοση ~TiddlyWiki Classic
|
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
title: $:/language/Search/
|
|
2
2
|
|
|
3
|
+
DefaultResults/Caption: Λίστα
|
|
4
|
+
Filter/Caption: Φίλτρο
|
|
3
5
|
Filter/Hint: Αναζήτηση με [[έκφραση φιλτραρίσματος|https://tiddlywiki.com/static/Filters.html]]
|
|
6
|
+
Filter/Matches: //<small><<resultCount>> αποτελέσματα</small>//
|
|
7
|
+
Matches: //<small><<resultCount>> αποτελέσματα</small>//
|
|
8
|
+
Matches/All: Όλα τα αποτελέσματα:
|
|
4
9
|
Matches/NoMatch: //Δεν ταίριαξε κανένα αποτέλεσμα//
|
|
5
10
|
Matches/NoResult: //Δεν υπάρχουν αποτελέσματα//
|
|
6
11
|
Matches/Title: Ταίριασμα σε τίτλο:
|
|
12
|
+
Search: Αναζήτηση
|
|
7
13
|
Search/TooShort: Το κείμενο αναζήτησης είναι πολύ σύντομο
|
|
14
|
+
Shadows/Caption: Σκιώδη
|
|
15
|
+
Shadows/Hint: Αναζήτηση για σκιώδη tiddlers
|
|
16
|
+
Shadows/Matches: //<small><<resultCount>> αποτελέσματα</small>//
|
|
17
|
+
Standard/Caption: Τυπικά
|
|
8
18
|
Standard/Hint: Αναζήτηση για τυπικά tiddlers
|
|
19
|
+
Standard/Matches: //<small><<resultCount>> αποτελέσματα</small>//
|
|
20
|
+
System/Caption: Συστήματος
|
|
9
21
|
System/Hint: Αναζήτηση για tiddler συστήματος
|
|
22
|
+
System/Matches: //<small><<resultCount>> αποτελέσματα</small>//
|
|
@@ -1,3 +1,18 @@
|
|
|
1
1
|
title: $:/language/SideBar/
|
|
2
2
|
|
|
3
|
+
All/Caption: Άπαντα
|
|
4
|
+
Caption: Πλευρική εργαλειοθήκη
|
|
5
|
+
Contents/Caption: Περιεχόμενα
|
|
6
|
+
Drafts/Caption: Πρόχειρα
|
|
7
|
+
Explorer/Caption: Εξερευνητής
|
|
8
|
+
Missing/Caption: Λείπουν
|
|
9
|
+
More/Caption: Περισσότερα
|
|
10
|
+
Open/Caption: Ανοιχτά
|
|
11
|
+
Orphans/Caption: Ορφανά
|
|
12
|
+
Recent/Caption: Πρόσφατα
|
|
13
|
+
Shadows/Caption: Σκιώδη
|
|
14
|
+
System/Caption: Συστήματος
|
|
15
|
+
Tags/Caption: Ετικέτες
|
|
3
16
|
Tags/Untagged/Caption: χωρίς ετικέτα
|
|
17
|
+
Tools/Caption: Εργαλεία
|
|
18
|
+
Types/Caption: Τύποι
|
|
@@ -1,20 +1,42 @@
|
|
|
1
1
|
title: $:/language/ThemeTweaks/
|
|
2
2
|
|
|
3
|
+
Metrics: Μεγέθη
|
|
3
4
|
Metrics/BodyFontSize: Μέγεθος γραμματοσειράς για το κυρίως κείμενο του tiddler
|
|
4
5
|
Metrics/BodyLineHeight: Ύψος γραμμής για το κυρίως κείμενο του tiddler
|
|
6
|
+
Metrics/FontSize: Μέγεθος γραμματοσειράς
|
|
7
|
+
Metrics/LineHeight: Ύψος γραμμής
|
|
5
8
|
Metrics/SidebarBreakpoint: Σημείο διακοπής της πλευρικής εργαλειοθήκης
|
|
6
9
|
Metrics/SidebarBreakpoint/Hint: το ελάχιστο πλάτος σελίδας στο οποίο η ιστορική<br>ροή και η πλευρική εργαλειοθήκη εμφανίζονται η μία δίπλα στην άλλη
|
|
7
10
|
Metrics/SidebarWidth: Πλάτος της πλευρικής εργαλειοθήκης
|
|
8
11
|
Metrics/SidebarWidth/Hint: το πλάτος της πλευρικής εργαλειοθήκης σε ρευστή-στερεοποιημένη διάταξη
|
|
12
|
+
Metrics/StoryLeft: Αριστερή θέση ιστορικού
|
|
9
13
|
Metrics/StoryLeft/Hint: πόσο απέχει το αριστερό περιθώριο (margin) της ιστορικής ροής<br>(περιοχή με tiddlers) από το αριστερό μέρος της σελίδας
|
|
14
|
+
Metrics/StoryRight: Δεξιά θέση ιστορικού
|
|
10
15
|
Metrics/StoryRight/Hint: Πόσο απέχει το αριστερό περιθώριο (margin) της πλευρικής εργαλειοθήκης<br>από το αριστερό μέρος της σελίδας
|
|
16
|
+
Metrics/StoryTop: Θέση κορυφής ιστορικού
|
|
11
17
|
Metrics/StoryTop/Hint: πόσο απέχει το περιθώριο (margin) της ιστορικής ροής<br>από την κορυφή της σελίδας
|
|
18
|
+
Metrics/StoryWidth: Το συνολικό πλάτος της ιστορικής ροής
|
|
12
19
|
Metrics/StoryWidth/Hint: το συνολικό πλάτος της ιστορικής ροής
|
|
13
20
|
Metrics/TiddlerWidth: Πλάτος κάθε tiddler
|
|
21
|
+
Metrics/TiddlerWidth/Hint: εντός της ιστορικής ροής
|
|
22
|
+
Options: Επιλογές
|
|
23
|
+
Options/CodeWrapping: Αναδίπλωση μεγάλων γραμμών σε τμήματα κώδικα
|
|
24
|
+
Options/SidebarLayout: Διάταξη πλευρικής εργαλειοθήκης
|
|
14
25
|
Options/SidebarLayout/Fixed-Fluid: Στερεοποιημένο ιστορικό, ρευστή πλευρική εργαλειοθήκη
|
|
15
26
|
Options/SidebarLayout/Fluid-Fixed: Ρευστό ιστορικό, στερεοποιημένη πλευρική εργαλειοθήκη
|
|
27
|
+
Options/StickyTitles: Κολλώδεις τίτλοι
|
|
16
28
|
Options/StickyTitles/Hint: Αναγκάζει τους τίτλους των tiddler να «κολλάνε» στην κορυφή του παραθύρου του προγράμματος περιήγησης.
|
|
29
|
+
Settings: Ρυθμίσεις
|
|
30
|
+
Settings/BackgroundImage: Εικόνα υποβάθρου σελίδας
|
|
31
|
+
Settings/BackgroundImageAttachment: Επισύναψη εικόνας υποβάθρου σελίδας
|
|
17
32
|
Settings/BackgroundImageAttachment/Fixed: Στερεωμένη στο παράθυρο
|
|
33
|
+
Settings/BackgroundImageAttachment/Scroll: Κύλιση με tiddlers
|
|
34
|
+
Settings/BackgroundImageSize: Μέγεθος εικόνας υποβάθρου της σελίδας
|
|
18
35
|
Settings/BackgroundImageSize/Auto: Αυτόματο
|
|
19
|
-
|
|
20
|
-
|
|
36
|
+
Settings/BackgroundImageSize/Contain: Περιέχει
|
|
37
|
+
Settings/BackgroundImageSize/Cover: Εξώφυλλο
|
|
38
|
+
Settings/CodeFontFamily: Οικογένεια γραμματοσειράς για κώδικα
|
|
39
|
+
Settings/EditorFontFamily: Οικογένεια γραμματοσειράς για επεξεργασία
|
|
40
|
+
Settings/FontFamily: Οικογένεια γραμματοσειράς
|
|
41
|
+
ThemeTweaks: Προσαρμογές στο θέμα
|
|
42
|
+
ThemeTweaks/Hint: Μπορείς να κάνεις κάποιες αλλαγές στο θέμα ''Vanilla''.
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
title: $:/language/TiddlerInfo/
|
|
2
2
|
|
|
3
|
+
Advanced/Caption: Προηγμένα
|
|
4
|
+
Advanced/CascadeInfo/Detail/ActiveCascadeFilter: Ενεργό φίλτρο σύζευξης
|
|
5
|
+
Advanced/CascadeInfo/Detail/Template: Πρότυπο
|
|
6
|
+
Advanced/CascadeInfo/Detail/View: Προβολή
|
|
7
|
+
Advanced/CascadeInfo/Heading: Λεπτομέριες συζεύξεων
|
|
8
|
+
Advanced/PluginInfo/Empty/Hint: κανένα
|
|
9
|
+
Advanced/PluginInfo/Heading: Λεπτομέρειες πρόσθετου
|
|
10
|
+
Advanced/PluginInfo/Hint: Αυτό το πρόσθετο περιέχει τα παρακάτω σκιώδη tiddlers:
|
|
11
|
+
Advanced/ShadowInfo/Heading: Ιδιότητα σκιάς
|
|
3
12
|
Advanced/ShadowInfo/NotShadow/Hint: Το tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> δεν είναι σκιώδης tiddler
|
|
13
|
+
Advanced/ShadowInfo/OverriddenShadow/Hint: Έχει παρακαμφθεί από ένα κανονικό tiddler
|
|
4
14
|
Advanced/ShadowInfo/Shadow/Hint: Το tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> είναι σκιώδης tiddler
|
|
15
|
+
Advanced/ShadowInfo/Shadow/Source: Έχει οριστεί στο πρόσθετο <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link>
|
|
16
|
+
Fields/Caption: Πεδία
|
|
17
|
+
List/Caption: Λίστα
|
|
18
|
+
List/Empty: Αυτό το tiddler δεν περιέχει λίστα
|
|
19
|
+
Listed/Caption: Σε λίστα
|
|
20
|
+
Listed/Empty: Αυτό το tiddler δεν εμφανίζεται σε λίστα οποιουδήποτε άλλου tiddler
|
|
21
|
+
References/Caption: Αναφορές
|
|
5
22
|
References/Empty: Δεν υπάρχουν δεσμοί από άλλα tiddlers σε αυτό
|
|
23
|
+
Tagging/Caption: Ετικέτες
|
|
6
24
|
Tagging/Empty: Δεν υπάρχουν tiddlers που να έχουν ετικέτα με τον τίτλο αυτού του tiddler
|
|
25
|
+
Tools/Caption: Εργαλεία
|