tiddlywiki 5.2.3 → 5.2.5
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/bin/build-site.sh +11 -2
- package/bin/test.sh +1 -0
- package/boot/boot.js +9 -6
- package/core/images/layout-button.tid +4 -0
- package/core/images/mastodon.tid +6 -0
- package/core/language/en-GB/Buttons.multids +4 -0
- package/core/language/en-GB/ControlPanel.multids +3 -3
- package/core/language/en-GB/Fields.multids +2 -2
- package/core/language/en-GB/GettingStarted.tid +4 -3
- package/core/language/en-GB/Help/commands.tid +18 -0
- package/core/language/en-GB/Misc.multids +1 -0
- package/core/modules/commands/commands.js +42 -0
- package/core/modules/editor/engines/framed.js +12 -1
- package/core/modules/editor/factory.js +2 -2
- package/core/modules/filters/format/json.js +35 -0
- package/core/modules/filters/is/variable.js +2 -2
- package/core/modules/filters/json-ops.js +186 -0
- package/core/modules/filters/variables.js +9 -3
- package/core/modules/filters.js +15 -6
- package/core/modules/keyboard.js +13 -1
- package/core/modules/parsers/csvparser.js +25 -17
- package/core/modules/parsers/wikiparser/rules/macrodef.js +1 -1
- package/core/modules/parsers/wikiparser/rules/parsermode.js +68 -0
- package/core/modules/parsers/wikiparser/rules/styleinline.js +3 -3
- package/core/modules/parsers/wikiparser/wikiparser.js +4 -2
- package/core/modules/server/routes/put-tiddler.js +10 -0
- package/core/modules/startup/startup.js +5 -1
- package/core/modules/utils/csv.js +101 -23
- package/core/modules/utils/dom/dom.js +17 -2
- package/core/modules/utils/dom/modal.js +6 -0
- package/core/modules/utils/dom/popup.js +69 -6
- package/core/modules/utils/fakedom.js +2 -2
- package/core/modules/utils/linked-list.js +79 -75
- package/core/modules/utils/logger.js +3 -1
- package/core/modules/utils/parsetree.js +20 -10
- package/core/modules/utils/utils.js +3 -0
- package/core/modules/widgets/action-deletefield.js +2 -2
- package/core/modules/widgets/action-popup.js +10 -8
- package/core/modules/widgets/button.js +7 -2
- package/core/modules/widgets/checkbox.js +12 -5
- package/core/modules/widgets/error.js +63 -0
- package/core/modules/widgets/genesis.js +108 -0
- package/core/modules/widgets/importvariables.js +4 -1
- package/core/modules/widgets/keyboard.js +4 -0
- package/core/modules/widgets/let.js +3 -5
- package/core/modules/widgets/reveal.js +11 -10
- package/core/modules/widgets/select.js +9 -0
- package/core/modules/widgets/transclude.js +3 -5
- package/core/modules/widgets/widget.js +44 -18
- package/core/palettes/Blanca.tid +2 -0
- package/core/palettes/Blue.tid +2 -0
- package/core/palettes/BrightMute.tid +2 -0
- package/core/palettes/ContrastDark.tid +2 -0
- package/core/palettes/ContrastLight.tid +2 -0
- package/core/palettes/CupertinoDark.tid +2 -0
- package/core/palettes/DarkPhotos.tid +2 -0
- package/core/palettes/DesertSand.tid +2 -0
- package/core/palettes/GruvBoxDark.tid +2 -0
- package/core/palettes/Nord.tid +2 -0
- package/core/palettes/Rocker.tid +2 -0
- package/core/palettes/SolarFlare.tid +2 -0
- package/core/palettes/SolarizedDark.tid +2 -0
- package/core/palettes/SolarizedLight.tid +2 -0
- package/core/palettes/SpartanDay.tid +2 -0
- package/core/palettes/SpartanNight.tid +2 -0
- package/core/palettes/Twilight.tid +2 -0
- package/core/palettes/Vanilla.tid +2 -0
- package/core/templates/external-js/save-all-external-js.tid +4 -2
- package/core/templates/external-js/save-offline-external-js.tid +4 -2
- package/core/templates/single.tiddler.window.tid +1 -1
- package/core/ui/Actions/new-image.tid +1 -7
- package/core/ui/AdvancedSearch/FilterButtons/delete.tid +3 -3
- package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +2 -2
- package/core/ui/ControlPanel/Basics/retain-story-ordering-button.tid +3 -0
- package/core/ui/ControlPanel/Basics.tid +3 -2
- package/core/ui/EditTemplate/Preview/output.tid +1 -1
- package/core/ui/EditTemplate/body/default.tid +1 -1
- package/core/ui/EditTemplate/fields.tid +12 -2
- package/core/ui/EditTemplate.tid +7 -2
- package/core/ui/ImportListing.tid +5 -5
- package/core/ui/KeyboardShortcuts/advanced-search.tid +1 -1
- package/core/ui/PageControls/layout.tid +15 -0
- package/core/ui/PageTemplate.tid +1 -4
- package/core/ui/SideBar/More.tid +2 -2
- package/core/ui/SwitcherModal.tid +1 -0
- package/core/ui/TagManager.tid +75 -63
- package/core/ui/ViewTemplate/unfold.tid +6 -2
- package/core/ui/ViewTemplate.tid +1 -1
- package/core/wiki/config/DefaultTiddlersRetainStory.tid +3 -0
- package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
- package/core/wiki/config/PageControlButtons.multids +1 -0
- package/core/wiki/macros/list.tid +7 -7
- package/core/wiki/macros/timeline.tid +6 -9
- package/core/wiki/macros/toc.tid +12 -8
- package/core/wiki/tags/PageControls.tid +1 -1
- package/editions/de-AT/tiddlywiki.info +0 -1
- package/editions/de-AT-server/tiddlywiki.info +0 -1
- package/editions/de-DE/tiddlywiki.info +0 -1
- package/editions/dev/tiddlers/HelloThere.tid +2 -1
- package/editions/dev/tiddlers/How to run a local plugin library for testing.tid +42 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Child widgets tutorial.tid +140 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget demo.tid +22 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget tutorial.tid +25 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World demo.tid +23 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World widget tutorial.tid +18 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Javascript Widget Tutorial.tid +37 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget demo.tid +18 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget tutorial.tid +11 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo I.tid +48 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo II.tid +48 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part I.tid +50 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part II.tid +33 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo I.tid +44 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo II.tid +40 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo III.tid +50 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part I.tid +47 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part II.tid +37 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part III.tid +26 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js +47 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js +16 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +51 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js +47 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js +35 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js +43 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +36 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js.meta +6 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +46 -0
- package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js.meta +6 -0
- package/editions/dev/tiddlywiki.info +2 -1
- package/editions/es-ES/tiddlers/GettingStarted_-_Chrome.tid +1 -1
- package/editions/es-ES/tiddlers/Saving_with_the_HTML5_fallback_saver.tid +1 -27
- package/editions/es-ES/tiddlers/Saving_with_the_HTML5_saver.tid +35 -0
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +1 -1
- package/editions/fr-FR/tiddlers/GettingStarted - Chrome.tid +1 -1
- package/editions/fr-FR/tiddlers/Saving with the HTML5 saver.tid +23 -0
- package/editions/fr-FR/tiddlers/saving/Saving with the HTML5 fallback saver.tid +1 -22
- package/editions/fr-FR/tiddlers/system/$__core_macros_list.tid +113 -0
- package/editions/fr-FR/tiddlers/system/$__core_macros_tag.tid +39 -0
- package/editions/fr-FR/tiddlers/system/$__core_ui_TagPickerTagTemplate.tid +25 -0
- package/editions/full/tiddlywiki.info +0 -1
- package/editions/introduction/tiddlywiki.info +0 -1
- package/editions/pluginlibrary/tiddlers/GettingStarted.tid +45 -0
- package/editions/pluginlibrary/tiddlers/PrereleaseLocalPluginLibrary.tid +6 -0
- package/editions/pluginlibrary/tiddlers/meta/SiteSubtitle.tid +3 -0
- package/editions/pluginlibrary/tiddlers/meta/SiteTitle.tid +3 -0
- package/editions/pluginlibrary/tiddlers/system/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +3 -0
- package/editions/pluginlibrary/tiddlywiki.info +7 -0
- package/editions/prerelease/tiddlers/Release 5.2.6.tid +107 -0
- package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +5 -1
- package/editions/test/tiddlers/tests/data/csv-cases.tid +282 -0
- package/editions/test/tiddlers/tests/data/filters/Recursion.tid +15 -0
- package/editions/test/tiddlers/tests/data/filters/fake-variables.tid +27 -0
- package/editions/test/tiddlers/tests/data/genesis-widget/DollarSigns.tid +14 -0
- package/editions/test/tiddlers/tests/data/genesis-widget/MultipleAttributes.tid +14 -0
- package/editions/test/tiddlers/tests/data/genesis-widget/Simple.tid +14 -0
- package/editions/test/tiddlers/tests/data/macros/NestedMacros.tid +36 -0
- package/editions/test/tiddlers/tests/data/pragmas/Parsermode.tid +36 -0
- package/editions/test/tiddlers/tests/data/transclude/Recursion.tid +13 -0
- package/editions/test/tiddlers/tests/modules/utils/test-csv.js +33 -0
- package/editions/test/tiddlers/tests/test-checkbox-widget.js +35 -1
- package/editions/test/tiddlers/tests/test-json-filters.js +112 -0
- package/editions/test/tiddlers/tests/test-linked-list.js +42 -2
- package/editions/test/tiddlers/tests/test-popup.js +63 -0
- package/editions/test/tiddlers/tests/test-utils.js +1 -0
- package/editions/test/tiddlers/tests/test-wikitext.js +16 -0
- package/editions/test/tiddlywiki.info +2 -1
- package/editions/translators/tiddlers/system/PageControlButtonsVisibility.multids +1 -0
- package/editions/translators/tiddlywiki.info +0 -1
- package/editions/tw.org/tiddlers/Code of Conduct.tid +4 -1
- package/editions/tw.org/tiddlers/Fundraising.tid +2 -2
- package/editions/tw5.com/tiddlers/Tables in WikiText CSS Utility Classes.tid +81 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/marketplace.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +1 -1
- package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +19 -0
- package/editions/tw5.com/tiddlers/about/Open Collective.tid +14 -0
- package/editions/tw5.com/tiddlers/commands/CommandsCommand.tid +8 -0
- package/editions/tw5.com/tiddlers/commands/RenderTiddlerCommand.tid +2 -0
- package/editions/tw5.com/tiddlers/commands/RenderTiddlersCommand.tid +2 -0
- package/editions/tw5.com/tiddlers/commands/SaveTiddlerCommand.tid +2 -0
- package/editions/tw5.com/tiddlers/commands/SaveTiddlersCommand.tid +2 -0
- package/editions/tw5.com/tiddlers/community/plugins/GSD5.tid +2 -2
- package/editions/tw5.com/tiddlers/community/plugins/_JD Mobile Layout plugin_ by JD.tid +0 -1
- package/editions/tw5.com/tiddlers/community/resources/RegExp in Tiddlywiki by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid +0 -1
- package/editions/tw5.com/tiddlers/community/resources/_Hacks_ by Thomas Elmiger.tid +0 -2
- package/editions/tw5.com/tiddlers/community/resources/_MathCell_ by Ste Wilson.tid +0 -1
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +0 -1
- package/editions/tw5.com/tiddlers/community/resources/_X3DOM for TiddlyWiki 5_ by Jamal Wills.tid +0 -1
- package/editions/tw5.com/tiddlers/community/resources/_file-backups_ Extension Firefox by pmario.tid +1 -1
- package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +1 -1
- package/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid +42 -0
- package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +2 -0
- package/editions/tw5.com/tiddlers/definitions/Federatial.tid +13 -1
- package/editions/tw5.com/tiddlers/definitions/HTML Block Elements.tid +9 -0
- package/editions/tw5.com/tiddlers/definitions/TiddlyWikiClassic.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Selective Expandable Example custom icons.tid +16 -0
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +1 -1
- package/editions/tw5.com/tiddlers/features/DateFormat.tid +27 -3
- package/editions/tw5.com/tiddlers/features/JSON in TiddlyWiki.tid +1 -1
- package/editions/tw5.com/tiddlers/features/Modals.tid +3 -0
- package/editions/tw5.com/tiddlers/filters/examples/format Operator (Examples).tid +5 -2
- package/editions/tw5.com/tiddlers/filters/format.tid +5 -4
- package/editions/tw5.com/tiddlers/filters/jsonextract.tid +66 -0
- package/editions/tw5.com/tiddlers/filters/jsonget.tid +93 -0
- package/editions/tw5.com/tiddlers/filters/jsonindexes.tid +65 -0
- package/editions/tw5.com/tiddlers/filters/jsontype.tid +74 -0
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Chrome.tid +2 -2
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +3 -7
- package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +23 -22
- package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +10 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +2 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Introduction Video.tid +2 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +9 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Marketplace.tid +10 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +3 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail_-_Federatial.tid +11 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Default Story Ordering.tid +4 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Sync System Tiddlers From Server.tid +13 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting SyncLogging.tid +13 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ More Tabs Horizontal.tid +7 -0
- package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +2 -0
- package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +10 -1
- package/editions/tw5.com/tiddlers/images/Federatial.png +0 -0
- package/editions/tw5.com/tiddlers/images/Federatial.png.meta +3 -0
- package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
- package/editions/tw5.com/tiddlers/images/{TiddlyMap.png.meta → Funding.png.meta} +1 -1
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +3 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
- package/editions/tw5.com/tiddlers/macros/ListMacro.tid +3 -1
- package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +36 -2
- package/editions/tw5.com/tiddlers/marketplace/TiddlyWiki Marketplace.tid +18 -0
- package/editions/tw5.com/tiddlers/mechanisms/PopupMechanism.tid +1 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid +4 -2
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +1 -1
- package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +2 -2
- package/editions/tw5.com/tiddlers/pragmas/Pragma_ _parsermode.tid +17 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +144 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.5.tid +25 -0
- package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Emergency Tiddler Export.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlyHost.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlySpot.tid +0 -1
- package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +1 -0
- package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 fallback saver.tid +3 -23
- package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 saver.tid +27 -0
- package/editions/tw5.com/tiddlers/saving/Saving.tid +12 -5
- package/editions/tw5.com/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +15 -0
- package/editions/tw5.com/tiddlers/system/doc-macros.tid +1 -1
- package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +1 -16
- package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +168 -40
- package/editions/tw5.com/tiddlers/system/version-macros.tid +3 -4
- package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +43 -15
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_PageTemplate.tid +9 -0
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +9 -0
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Filter.tid +2 -2
- package/editions/tw5.com/tiddlers/testimonials/Testimonials - Joe Armstrong.tid +8 -0
- package/editions/tw5.com/tiddlers/testimonials/Testimonials - Network World.tid +8 -0
- package/editions/tw5.com/tiddlers/testimonials/Testimonials - Product Hunt.tid +6 -0
- package/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +10 -10
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +3 -1
- package/editions/tw5.com/tiddlers/widgets/ActionPopupWidget.tid +4 -3
- package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -1
- package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +2 -1
- package/editions/tw5.com/tiddlers/widgets/ErrorWidget.tid +17 -0
- package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +4 -3
- package/editions/tw5.com/tiddlers/widgets/GenesisWidget.tid +41 -0
- package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +4 -1
- package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +1 -1
- package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +1 -0
- package/editions/tw5.com/tiddlers/wikitext/Macro Definitions in WikiText.tid +27 -4
- package/editions/tw5.com/tiddlers/wikitext/Styles and Classes in WikiText.tid +1 -1
- package/editions/tw5.com/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +20 -0
- package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText.tid +3 -13
- package/editions/tw5.com/tiddlers/wikitext/Utility Classes.tid +20 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +1 -1
- package/editions/twitter-archivist/tiddlers/DefaultTiddlers.tid +4 -0
- package/editions/twitter-archivist/tiddlers/HelloThere.tid +9 -0
- package/editions/twitter-archivist/tiddlers/SiteSubtitle.tid +3 -0
- package/editions/twitter-archivist/tiddlers/SiteTitle.tid +3 -0
- package/editions/twitter-archivist/tiddlywiki.info +16 -0
- package/languages/ar-PS/ControlPanel.multids +1 -1
- package/languages/ca-ES/ControlPanel.multids +1 -1
- package/languages/cs-CZ/ControlPanel.multids +1 -1
- package/languages/da-DK/ControlPanel.multids +1 -1
- package/languages/de-DE/Buttons.multids +5 -1
- package/languages/de-DE/ControlPanel.multids +1 -1
- package/languages/de-DE/Help/commands.tid +14 -0
- package/languages/de-DE/Misc.multids +1 -0
- package/languages/el-GR/ControlPanel.multids +1 -1
- package/languages/es-ES/Buttons.multids +91 -87
- package/languages/es-ES/ControlPanel.multids +19 -2
- package/languages/es-ES/Docs/PaletteColours.multids +2 -2
- package/languages/es-ES/EditTemplate.multids +3 -0
- package/languages/es-ES/Fields.multids +6 -5
- package/languages/es-ES/GettingStarted.tid +4 -3
- package/languages/es-ES/Help/commands.tid +18 -0
- package/languages/es-ES/Help/default.tid +4 -1
- package/languages/es-ES/Help/listen.tid +0 -1
- package/languages/es-ES/Help/render.tid +2 -2
- package/languages/es-ES/Import.multids +1 -1
- package/languages/es-ES/Misc.multids +2 -1
- package/languages/es-ES/SideBar.multids +1 -0
- package/languages/es-ES/Snippets/ListByTag.tid +1 -1
- package/languages/fa-IR/ControlPanel.multids +1 -1
- package/languages/fr-FR/Buttons.multids +2 -0
- package/languages/fr-FR/ControlPanel.multids +4 -4
- package/languages/fr-FR/Misc.multids +3 -2
- package/languages/hi-IN/ControlPanel.multids +1 -1
- package/languages/ia-IA/ControlPanel.multids +1 -1
- package/languages/it-IT/ControlPanel.multids +1 -1
- package/languages/ja-JP/ControlPanel.multids +9 -9
- package/languages/ko-KR/ControlPanel.multids +1 -1
- package/languages/nl-NL/ControlPanel.multids +1 -1
- package/languages/pl-PL/Buttons.multids +7 -3
- package/languages/pl-PL/ControlPanel.multids +26 -24
- package/languages/pl-PL/GettingStarted.tid +4 -3
- package/languages/pl-PL/Help/commands.tid +18 -0
- package/languages/pl-PL/Help/render.tid +2 -2
- package/languages/pl-PL/Misc.multids +1 -0
- package/languages/pl-PL/ThemeTweaks.multids +3 -3
- package/languages/pt-BR/ControlPanel.multids +1 -1
- package/languages/pt-PT/ControlPanel.multids +1 -1
- package/languages/ru-RU/ControlPanel.multids +1 -1
- package/languages/sk-SK/ControlPanel.multids +1 -1
- package/languages/sl-SI/ControlPanel.multids +1 -1
- package/languages/sv-SE/ControlPanel.multids +1 -1
- package/languages/zh-Hans/Buttons.multids +36 -32
- package/languages/zh-Hans/ControlPanel.multids +19 -19
- package/languages/zh-Hans/CoreReadMe.tid +1 -1
- package/languages/zh-Hans/Docs/ModuleTypes.multids +2 -2
- package/languages/zh-Hans/Docs/PaletteColours.multids +8 -8
- package/languages/zh-Hans/Fields.multids +7 -7
- package/languages/zh-Hans/Filters.multids +1 -1
- package/languages/zh-Hans/GettingStarted.tid +8 -6
- package/languages/zh-Hans/Help/commands.tid +18 -0
- package/languages/zh-Hans/Help/fetch.tid +6 -6
- package/languages/zh-Hans/Help/init.tid +1 -1
- package/languages/zh-Hans/Help/listen.tid +5 -5
- package/languages/zh-Hans/Help/makelibrary.tid +1 -1
- package/languages/zh-Hans/Help/savetiddlers.tid +1 -1
- package/languages/zh-Hans/Help/server.tid +6 -6
- package/languages/zh-Hans/Help/setfield.tid +3 -3
- package/languages/zh-Hans/Import.multids +1 -1
- package/languages/zh-Hans/Misc.multids +12 -11
- package/languages/zh-Hans/Search.multids +6 -6
- package/languages/zh-Hans/SiteSubtitle.tid +1 -1
- package/languages/zh-Hans/Snippets/ListByTag.tid +1 -1
- package/languages/zh-Hans/ThemeTweaks.multids +7 -7
- package/languages/zh-Hans/TiddlerInfo.multids +2 -2
- package/languages/zh-Hant/Buttons.multids +4 -0
- package/languages/zh-Hant/ControlPanel.multids +2 -2
- package/languages/zh-Hant/Fields.multids +2 -2
- package/languages/zh-Hant/GettingStarted.tid +4 -3
- package/languages/zh-Hant/Help/commands.tid +18 -0
- package/languages/zh-Hant/Misc.multids +1 -0
- package/licenses/cla-individual.md +6 -0
- package/package.json +1 -1
- package/plugins/tiddlywiki/bibtex/deserializer.js +2 -2
- package/plugins/tiddlywiki/codemirror/engine.js +4 -0
- package/plugins/tiddlywiki/dynannotate/docs/readme.tid +2 -2
- package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -2
- package/plugins/tiddlywiki/help/tabs/Support.tid +6 -2
- package/plugins/tiddlywiki/jasmine/command.js +33 -0
- package/plugins/tiddlywiki/jasmine/help.tid +24 -0
- package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +24 -18
- package/plugins/tiddlywiki/jasmine/readme.tid +31 -1
- package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +93 -0
- package/plugins/tiddlywiki/jasmine/startup.js +37 -0
- package/plugins/tiddlywiki/translators/macros/translatableStringEditor.tid +6 -0
- package/plugins/tiddlywiki/translators/system/styles.tid +5 -0
- package/plugins/tiddlywiki/twitter-archivist/Twitter Archives.tid +5 -0
- package/plugins/tiddlywiki/twitter-archivist/archivist.js +319 -0
- package/plugins/tiddlywiki/twitter-archivist/configTiddlerInfoMode.tid +2 -0
- package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +53 -0
- package/plugins/tiddlywiki/twitter-archivist/macros.tid +222 -0
- package/plugins/tiddlywiki/twitter-archivist/plugin.info +6 -0
- package/plugins/tiddlywiki/twitter-archivist/readme.tid +33 -0
- package/plugins/tiddlywiki/twitter-archivist/spec.tid +62 -0
- package/plugins/tiddlywiki/twitter-archivist/startup.js +38 -0
- package/plugins/tiddlywiki/twitter-archivist/styles.tid +47 -0
- package/plugins/tiddlywiki/twitter-archivist/template-archive.tid +3 -0
- package/plugins/tiddlywiki/twitter-archivist/template-hashtag.tid +3 -0
- package/plugins/tiddlywiki/twitter-archivist/template-tweet.tid +3 -0
- package/plugins/tiddlywiki/twitter-archivist/template-tweeter.tid +3 -0
- package/plugins/tiddlywiki/twitter-archivist/todo.tid +15 -0
- package/plugins/tiddlywiki/twitter-archivist/usage.tid +18 -0
- package/plugins/tiddlywiki/twitter-archivist/view-template-body-cascade.tid +8 -0
- package/plugins/tiddlywiki/upgrade/UpgradeWizard.tid +3 -3
- package/readme.md +1 -1
- package/themes/tiddlywiki/vanilla/base.tid +114 -9
- package/editions/fr-FR/tiddlers/$__core_ui_TagTemplate.tid +0 -33
- package/editions/prerelease/tiddlers/Release 5.2.4.tid +0 -59
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Classic.tid +0 -6
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Developers.tid +0 -7
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Gentle Guide.tid +0 -11
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - HelpingTiddlyWiki.tid +0 -7
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TWEUM2017.tid +0 -8
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyMap.tid +0 -6
- package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg +0 -0
- package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg.meta +0 -3
- package/editions/tw5.com/tiddlers/images/TiddlyMap.png +0 -0
@@ -46,21 +46,17 @@ open the ''example edition'' in a new window
|
|
46
46
|
|
47
47
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
48
48
|
|
49
|
-
|
50
|
-
$src$
|
51
|
-
```
|
49
|
+
<$codeblock code=<<__src__>>/>
|
52
50
|
|
53
51
|
That renders as:
|
54
52
|
|
55
|
-
|
56
|
-
$src$
|
57
|
-
$$$
|
53
|
+
<$macrocall $name="__src__"/>
|
58
54
|
|
59
55
|
... and the underlying HTML is:
|
60
56
|
|
61
|
-
|
62
|
-
|
63
|
-
|
57
|
+
<$wikify name="html" text=<<__src__>> output="html">
|
58
|
+
<$codeblock code=<<html>>/>
|
59
|
+
</$wikify>
|
64
60
|
</div>
|
65
61
|
\end
|
66
62
|
|
@@ -69,15 +65,12 @@ $$$
|
|
69
65
|
|
70
66
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
71
67
|
|
72
|
-
|
73
|
-
$src$
|
74
|
-
```
|
68
|
+
<$codeblock code=<<__src__>>/>
|
75
69
|
|
76
70
|
That renders as:
|
77
71
|
|
78
|
-
|
79
|
-
|
80
|
-
$$$
|
72
|
+
<$macrocall $name="__src__"/>
|
73
|
+
|
81
74
|
</div>
|
82
75
|
\end
|
83
76
|
|
@@ -101,3 +94,38 @@ $$$
|
|
101
94
|
|
102
95
|
<<tw-code $tiddler$>>
|
103
96
|
\end
|
97
|
+
|
98
|
+
\define flex-card(class,bordercolor:"",imageField:"image",captionField:"caption",subtitle:"",descriptionField:"description",linkField:"link")
|
99
|
+
\whitespace trim
|
100
|
+
<$link class={{{ [<__class__>addprefix[tc-card ]] }}} to={{{ [<currentTiddler>get<__linkField__>else<currentTiddler>] }}}>
|
101
|
+
<div class="tc-card-accent" style.borderTop={{{ [<__bordercolor__>!is[blank]addprefix[5px solid ]] }}}>
|
102
|
+
<$list filter="[<currentTiddler>has[ribbon-text]]" variable="ignore">
|
103
|
+
<div class="tc-card-ribbon-wrapper">
|
104
|
+
<div class="tc-card-ribbon" style.backgroundColor={{{ [<currentTiddler>get[ribbon-color]else[red]] }}}>
|
105
|
+
<div class="tc-card-ribbon-inner">
|
106
|
+
<$text text={{!!ribbon-text}}/>
|
107
|
+
</div>
|
108
|
+
</div>
|
109
|
+
</div>
|
110
|
+
</$list>
|
111
|
+
<$list filter="[<currentTiddler>has<__imageField__>]" variable="ignore">
|
112
|
+
<div class="tc-card-image">
|
113
|
+
<$image source={{{ [<currentTiddler>get<__imageField__>] }}}/>
|
114
|
+
</div>
|
115
|
+
</$list>
|
116
|
+
<div class="tc-card-title"><$transclude field=<<__captionField__>>><$view field="title"/></$transclude></div>
|
117
|
+
<$list filter="[<__subtitle__>!is[blank]]" variable="ignore">
|
118
|
+
<div class="tc-card-subtitle">
|
119
|
+
<$text text=<<__subtitle__>>/>
|
120
|
+
</div>
|
121
|
+
</$list>
|
122
|
+
<div class="tc-card-body-wrapper">
|
123
|
+
<div class="tc-card-body">
|
124
|
+
<$transclude field=<<__descriptionField__>> mode="block"/>
|
125
|
+
</div>
|
126
|
+
<div class="tc-card-body-clear">
|
127
|
+
</div>
|
128
|
+
</div>
|
129
|
+
</div>
|
130
|
+
</$link>
|
131
|
+
\end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
caption: $:/tags/ClassFilters/PageTemplate
|
2
|
+
created: 20221020035315795
|
3
|
+
description: marks filters evaluated to dynamically add classes to the page template.
|
4
|
+
modified: 20221020035945262
|
5
|
+
tags: SystemTags
|
6
|
+
title: SystemTag: $:/tags/ClassFilters/PageTemplate
|
7
|
+
type: text/vnd.tiddlywiki
|
8
|
+
|
9
|
+
The [[system tag|SystemTags]] `$:/tags/ClassFilters/PageTemplate` marks filters marks filters evaluated to dynamically add their output as CSS classes to the page template.
|
package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
caption: $:/tags/ClassFilters/TiddlerTemplate
|
2
|
+
created: 20221020035738692
|
3
|
+
description: marks filters evaluated to dynamically add classes to the page template.
|
4
|
+
modified: 20221020035933363
|
5
|
+
tags: SystemTags
|
6
|
+
title: SystemTag: $:/tags/ClassFilters/TiddlerTemplate
|
7
|
+
type: text/vnd.tiddlywiki
|
8
|
+
|
9
|
+
The [[system tag|SystemTags]] `$:/tags/ClassFilters/TiddlerTemplate` marks filters evaluated to dynamically add their output as CSS classes to the tiddler template.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
caption: $:/tags/Filter
|
2
2
|
created: 20180926170345251
|
3
|
-
description: marks filters in advanced
|
3
|
+
description: marks filters in advanced search sample filter dropdown
|
4
4
|
modified: 20180926171456495
|
5
5
|
tags: SystemTags
|
6
6
|
title: SystemTag: $:/tags/Filter
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
|
9
|
-
The [[system tag|SystemTags]] `$:/tags/Filter` marks filters in advanced
|
9
|
+
The [[system tag|SystemTags]] `$:/tags/Filter` marks filters in advanced search sample filter dropdown
|
@@ -0,0 +1,8 @@
|
|
1
|
+
title: Testimonials - Joe Armstrong
|
2
|
+
tags: Testimonial
|
3
|
+
caption: Joe Armstrong, Co-inventor of Erlang
|
4
|
+
extlink: https://joearms.github.io/
|
5
|
+
|
6
|
+
The ~TiddlyWiki is the best software I've ever found for organising my ideas.
|
7
|
+
|
8
|
+
It's well worth spending an hour or so playing with it to see how it can help you. This will be time well-spent and will change how you think and how you organise your ideas.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
title: Testimonials - Network World
|
2
|
+
tags: Testimonial
|
3
|
+
caption: Mark Gibbs, Network World
|
4
|
+
extlink: http://www.networkworld.com/article/3028098/open-source-tools/tiddlywiki-a-free-open-source-wiki-revisited.html
|
5
|
+
|
6
|
+
~TiddlyWiki gets a Gearhead rating of 6 out of 5 (it's that good).
|
7
|
+
|
8
|
+
Finding code that works flawlessly after just two or three years is magical enough but after seven years?!
|
@@ -0,0 +1,6 @@
|
|
1
|
+
title: Testimonials - Product Hunt
|
2
|
+
tags: Testimonial
|
3
|
+
caption: Product Hunt
|
4
|
+
extlink: https://www.producthunt.com/posts/tiddlywiki-2?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-tiddlywiki-2
|
5
|
+
|
6
|
+
<div style="text-align:center;">{{Product Hunt Link}}</div>
|
@@ -1,22 +1,22 @@
|
|
1
1
|
created: 20180905075846391
|
2
|
-
modified:
|
2
|
+
modified: 20221207112242775
|
3
3
|
tags: [[WebServer Guides]]
|
4
4
|
title: Using the external JavaScript template
|
5
5
|
type: text/vnd.tiddlywiki
|
6
6
|
|
7
|
-
You can use a special template to externalise TiddlyWiki's core code into a separate file. This configuration allows the browser to cache the core for improved efficiency.
|
7
|
+
You can use a special template to externalise ~TiddlyWiki's core code into a separate file. This configuration allows the browser to cache the core for improved efficiency.
|
8
8
|
|
9
9
|
! Background
|
10
10
|
|
11
|
-
TiddlyWiki in the single file configuration ordinarily packs everything into a single file: your data, and the ~JavaScript, CSS and HTML comprising TiddlyWiki itself. This lack of dependencies is usually very convenient: it means that it is impossible for the parts of a TiddlyWiki to become separated, and enormously improves the chances of it still functioning in the future.
|
11
|
+
~TiddlyWiki in the single file configuration ordinarily packs everything into a single file: your data, and the ~JavaScript, CSS and HTML comprising ~TiddlyWiki itself. This lack of dependencies is usually very convenient: it means that it is impossible for the parts of a ~TiddlyWiki to become separated, and enormously improves the chances of it still functioning in the future.
|
12
12
|
|
13
13
|
However, there is some inefficiency in this arrangement because the core code is repeatedly loaded and saved every time the content of the wiki is saved. This inefficiency is partially ameliorated when working in the client server configuration because once the wiki is loaded by the browser the synchronisation process only transmits individual tiddlers back and forth to the server.
|
14
14
|
|
15
|
-
The remaining inefficiency when working in the client server configuration is that the single page wiki that is initially loaded will contain a copy of the entire core code of TiddlyWiki, making it impossible for the browser to cache it.
|
15
|
+
The remaining inefficiency when working in the client server configuration is that the single page wiki that is initially loaded will contain a copy of the entire core code of ~TiddlyWiki, making it impossible for the browser to cache it.
|
16
16
|
|
17
|
-
! Using the external JavaScript template with the client-server configuration
|
17
|
+
! Using the external ~JavaScript template with the client-server configuration
|
18
18
|
|
19
|
-
The mechanism is activated by setting the [[root-tiddler|WebServer Parameter: root-tiddler]] parameter to `$:/core/save/all-external-js`. This template externalises TiddlyWiki's core JavaScript into a separate file. For example, the following command will start your server with caching enabled. It will transfer the wiki with two GET requests, and the core can be cached by the browser.
|
19
|
+
The mechanism is activated by setting the [[root-tiddler|WebServer Parameter: root-tiddler]] parameter to `$:/core/save/all-external-js`. This template externalises ~TiddlyWiki's core ~JavaScript into a separate file. For example, the following command will start your server with caching enabled. It will transfer the wiki with two GET requests, and the core can be cached by the browser.
|
20
20
|
|
21
21
|
```
|
22
22
|
tiddlywiki YOUR_WIKI_FOLDER --listen 'root-tiddler=$:/core/save/all-external-js' use-browser-cache=yes
|
@@ -38,11 +38,11 @@ tiddlywiki ./myNewWiki --build listen
|
|
38
38
|
The above commands perform the following:
|
39
39
|
|
40
40
|
* Create a new wiki with external JavaScript customization included.
|
41
|
-
* Start the server with external JavaScript enabled. The server listens on port 8080. Visit http://localhost:8080 in your browser.
|
41
|
+
* Start the server with external ~JavaScript enabled. The server listens on port 8080. Visit http://localhost:8080 in your browser.
|
42
42
|
|
43
43
|
To customize your `--build listen` command, see [[tiddlywiki.info Files]] and [[ListenCommand]].
|
44
44
|
|
45
|
-
! Using the external JavaScript template with the single file configuration
|
45
|
+
! Using the external ~JavaScript template with the single file configuration
|
46
46
|
|
47
47
|
You can use the "external-js" template with your single file wiki, but this requires that you have ~TiddlyWiki's core ~JavaScript saved alongside your HTML file. You may prefer this configuration, for example, if you have several wikis on a ~WebDav server. (See: [[Saving via WebDAV]])
|
48
48
|
|
@@ -64,7 +64,7 @@ The files `index.html` and `tiddlywikicore-5.x.x.js` will be saved in your wiki
|
|
64
64
|
|
65
65
|
!! Obtaining the ~TiddlyWiki core in the browser
|
66
66
|
|
67
|
-
|
67
|
+
{{$:/core/ui/ExportTiddlyWikiCore}}
|
68
68
|
|
69
69
|
!! Obtaining the ~TiddlyWiki core with Node.js
|
70
70
|
|
@@ -87,7 +87,7 @@ tiddlywiki YOUR_WIKI_FOLDER --build tiddlywikicore
|
|
87
87
|
|
88
88
|
<<.warning "This procedure is experimental, please take care to backup your data">>
|
89
89
|
|
90
|
-
Before you proceed, backup your wiki first! Follow the steps below to upgrade a single-file wiki with the external JavaScript template:
|
90
|
+
Before you proceed, backup your wiki first! Follow the steps below to upgrade a single-file wiki with the external ~JavaScript template:
|
91
91
|
|
92
92
|
# Proceed with the [[Upgrade Process for Standalone TiddlyWikis|Upgrading]]. Your wiki will be converted to a full standalone HTML.
|
93
93
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
created: 20181002131215403
|
2
|
-
modified:
|
2
|
+
modified: 20220909094340097
|
3
3
|
tags: [[WebServer API]]
|
4
4
|
title: WebServer API: Get All Tiddlers
|
5
5
|
type: text/vnd.tiddlywiki
|
@@ -17,6 +17,8 @@ Parameters:
|
|
17
17
|
|
18
18
|
In order to avoid denial of service attacks with malformed filters in the default configuration the only filter that is accepted is the default filter "[all[tiddlers]!is[system]sort[title]]"; attempts to use any other filter will result in an HTTP 403 error.
|
19
19
|
|
20
|
+
<<.note "System tiddlers will not be returned by this API unless the [[Hidden Setting: Sync System Tiddlers From Server]] is explicitly switched on by setting $:/config/SyncSystemTiddlersFromServer to `yes`">>
|
21
|
+
|
20
22
|
To enable a particular filter, create a tiddler with the title "$:/config/Server/ExternalFilters/" concatenated with the filter text, and the text field set to "yes". For example, the TiddlyWeb plugin includes the following shadow tiddler to enable the filter that it requires:
|
21
23
|
|
22
24
|
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
caption: action-popup
|
2
2
|
created: 20200303114556528
|
3
|
-
modified:
|
3
|
+
modified: 20220815205132124
|
4
4
|
tags: Widgets ActionWidgets
|
5
5
|
title: ActionPopupWidget
|
6
6
|
type: text/vnd.tiddlywiki
|
@@ -15,10 +15,11 @@ The ''action-popup'' widget is invisible. Any content within it is ignored.
|
|
15
15
|
|
16
16
|
|!Attribute |!Description |
|
17
17
|
|$state |The title of the state tiddler for the popup |
|
18
|
-
|$coords |Optional coordinates for the handle to which popup is positioned (
|
18
|
+
|$coords |Optional coordinates for the handle to which popup is positioned (see [[Coordinate Systems]] for the supported formats) |
|
19
19
|
|$floating |<<.from-version "5.2.0">> Optional. Defaults to `no`. Set to `yes` to create a popup that must be closed explicitly. |
|
20
20
|
|
21
|
-
<<.from-version "5.1.23">> If the ''$coords'' attribute is missing or empty then all popups are cancelled
|
21
|
+
<<.from-version "5.1.23">> If the ''$coords'' attribute is missing or empty then all popups are cancelled.<br/>
|
22
|
+
<<.from-version "5.2.4">> The ''$coords'' attribute supports absolute and relative coordinates. See [[Coordinate Systems]] for more information.
|
22
23
|
|
23
24
|
<<.tip "Delete the state tiddler for a floating popup to close it.">>
|
24
25
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
caption: button
|
2
2
|
created: 20131024141900000
|
3
|
-
modified:
|
3
|
+
modified: 20220810192251345
|
4
4
|
tags: Widgets TriggeringWidgets
|
5
5
|
title: ButtonWidget
|
6
6
|
type: text/vnd.tiddlywiki
|
@@ -37,6 +37,7 @@ The content of the `<$button>` widget is displayed within the button.
|
|
37
37
|
|default |Default value if <<.attr set>> tiddler is missing for testing against <<.attr setTo>> to determine <<.attr selectedClass>> |
|
38
38
|
|popup |Title of a state tiddler for a popup that is toggled when the button is clicked. See PopupMechanism for details |
|
39
39
|
|popupTitle |Title of a state tiddler for a popup that is toggled when the button is clicked. In difference to the <<.attr popup>> attribute, ''no'' TextReference is used. See PopupMechanism for details |
|
40
|
+
|popupAbsCoords |<<.from-version "5.2.4">> If set to ''yes'' writes absolute coordinates to the tiddler referenced by the <<.attr popup>>. If set to ''no'' (the default) uses relative coordinates. See [[Coordinate Systems]] for details |
|
40
41
|
|aria-label |Optional [[Accessibility]] label |
|
41
42
|
|tooltip |Optional tooltip |
|
42
43
|
|class |An optional CSS class name to be assigned to the HTML element|
|
@@ -41,7 +41,8 @@ The LinkWidget incorporates the functionality of the DraggableWidget via the ''d
|
|
41
41
|
|!Variables |!Description |
|
42
42
|
|`modifier` |The [[modifier Variable]] contains the Modifier Key held while dragging |
|
43
43
|
|`dom-*` |All DOM attributes of the node being dragged are made available as variables, with the prefix `dom-` |
|
44
|
-
|`tv-popup-coords` |A co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node
|
44
|
+
|`tv-popup-coords` |A relative co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node matching the selector where the event originated (see [[Coordinate Systems]] for more information) |
|
45
|
+
|`tv-popup-abs-coords` |<<.from-version "5.2.4">> An absolute co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node matching the selector where the event originated (see [[Coordinate Systems]] for more information) |
|
45
46
|
|`tv-selectednode-posx` |`x` offset position of the dragged DOM node |
|
46
47
|
|`tv-selectednode-posy` |`y` offset position of the dragged DOM node |
|
47
48
|
|`tv-selectednode-width` |`offsetWidth` of the dragged DOM node |
|
@@ -0,0 +1,17 @@
|
|
1
|
+
caption: error
|
2
|
+
created: 20220909111836951
|
3
|
+
modified: 20220909111836951
|
4
|
+
tags: Widgets
|
5
|
+
title: ErrorWidget
|
6
|
+
type: text/vnd.tiddlywiki
|
7
|
+
|
8
|
+
<<.from-version "5.2.4">> The <<.wlink ErrorWidget>> widget is used by the core to display error messages such as the recursion errors reported by the <<.wlink TranscludeWidget>> widget.
|
9
|
+
|
10
|
+
The <<.wlink ErrorWidget>> does not provide any useful functionality to end users. It is only required by the core for technical reasons.
|
11
|
+
|
12
|
+
! Content and Attributes
|
13
|
+
|
14
|
+
The content of the <<.wlink ErrorWidget>> widget is ignored.
|
15
|
+
|
16
|
+
|!Attribute |!Description |
|
17
|
+
|$message |The error message |
|
@@ -1,5 +1,5 @@
|
|
1
1
|
created: 20201123113532200
|
2
|
-
modified:
|
2
|
+
modified: 20221012194222875
|
3
3
|
tags: Widgets TriggeringWidgets
|
4
4
|
title: EventCatcherWidget
|
5
5
|
type: text/vnd.tiddlywiki
|
@@ -10,7 +10,7 @@ type: text/vnd.tiddlywiki
|
|
10
10
|
|
11
11
|
//This is an advanced widget intended for use by those familiar with HTML, CSS and JavaScript handling of DOM events.//
|
12
12
|
|
13
|
-
The event catcher widget traps DOM-initiated Javascript events dispatched within its child content, and allows invoking a series of ActionWidgets in response to those events.
|
13
|
+
The event catcher widget traps DOM-initiated Javascript events dispatched within its child content, and allows invoking a series of ActionWidgets in response to those events.
|
14
14
|
|
15
15
|
In order for the events to be trapped:
|
16
16
|
|
@@ -47,7 +47,8 @@ The following variables are made available to the actions:
|
|
47
47
|
|`event-mousebutton` |The mouse button (if any) used to trigger the event (can be "left", "right" or "middle"). Note that not all event types support the mousebutton property |
|
48
48
|
|`event-type` |The type property of the JavaScript event |
|
49
49
|
|`event-detail-*` |Any properties in the detail attribute of the event are made available with the prefix `event-detail-` |
|
50
|
-
|`tv-popup-coords` |A co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node matching the selector where the event originated |
|
50
|
+
|`tv-popup-coords` |A relative co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node matching the selector where the event originated (see [[Coordinate Systems]] for more information) |
|
51
|
+
|`tv-popup-abs-coords` |<<.from-version "5.2.4">> An absolute co-ordinate string that can be used with the ActionPopupWidget to trigger a popup at the DOM node matching the selector where the event originated (see [[Coordinate Systems]] for more information) |
|
51
52
|
|`tv-widgetnode-width` |<<.from-version "5.2.3">> `offsetWidth` of the DOM node created by the eventcatcher widget |
|
52
53
|
|`tv-widgetnode-height` |<<.from-version "5.2.3">> `offsetHeight` of the DOM node created by the eventcatcher widget |
|
53
54
|
|`tv-selectednode-posx` |`x` offset position of the selected DOM node |
|
@@ -0,0 +1,41 @@
|
|
1
|
+
caption: genesis
|
2
|
+
created: 20221101100729587
|
3
|
+
modified: 20221101100729587
|
4
|
+
tags: Widgets
|
5
|
+
title: GenesisWidget
|
6
|
+
type: text/vnd.tiddlywiki
|
7
|
+
|
8
|
+
! Introduction
|
9
|
+
|
10
|
+
<<.from-version "5.2.4">> The <<.wlink GenesisWidget>> widget allows the dynamic construction of another widget, where the name and attributes of the new widget can be dynamically determined, without needing to be known in advance.
|
11
|
+
|
12
|
+
! Content and Attributes
|
13
|
+
|
14
|
+
The content of the <<.wlink GenesisWidget>> widget is used as the content of the dynamically created widget.
|
15
|
+
|
16
|
+
|!Attribute |!Description |
|
17
|
+
|$type |The type of widget or element to create (an initial `$` indicates a widget, otherwise an HTML element will be created) |
|
18
|
+
|$names |An optional filter evaluating to the names of a list of attributes to be applied to the widget |
|
19
|
+
|$values |An optional filter evaluating to the values corresponding to the list of names specified in `$names` |
|
20
|
+
|//{other attributes starting with $}// |Other attributes starting with a single dollar sign are reserved for future use |
|
21
|
+
|//{attributes starting with $$}// |Attributes starting with two dollar signs are appplied as attributes to the output widget, but with the attribute name changed to use a single dollar sign |
|
22
|
+
|//{attributes not starting with $}// |Any other attributes that do not start with a dollar are applied as attributes to the output widget |
|
23
|
+
|
24
|
+
Note that attributes explicitly specified take precedence over attributes with the same name specified in the `$names` filter.
|
25
|
+
|
26
|
+
! Examples
|
27
|
+
|
28
|
+
<$macrocall $name='wikitext-example-without-html'
|
29
|
+
src='<$genesis $type="div" class="tc-thing" label="Squeak">Mouse</$genesis>'/>
|
30
|
+
|
31
|
+
<$macrocall $name='wikitext-example-without-html'
|
32
|
+
src="""\define my-banner(mode:"inline",caption)
|
33
|
+
<$genesis $type={{{ [<__mode__>match[inline]then[span]else[div]] }}} class="tc-mybanner">
|
34
|
+
<<__caption__>>
|
35
|
+
</$genesis>
|
36
|
+
\end
|
37
|
+
|
38
|
+
<<my-banner caption:"I'm in a SPAN">>
|
39
|
+
|
40
|
+
<<my-banner mode:"block" caption:"I'm in a DIV">>
|
41
|
+
"""/>
|
@@ -1,5 +1,6 @@
|
|
1
1
|
title: LetWidget
|
2
2
|
created: 20211028115900000
|
3
|
+
modified: 20221001094658854
|
3
4
|
tags: Widgets
|
4
5
|
caption: let
|
5
6
|
|
@@ -12,10 +13,12 @@ caption: let
|
|
12
13
|
The content of the <<.wid let>> widget is the scope for the value assigned to the variable.
|
13
14
|
|
14
15
|
|!Attribute |!Description |
|
15
|
-
|//{attributes
|
16
|
+
|//{attributes}// |Each attribute name specifies a variable name. The attribute value is assigned to the variable |
|
16
17
|
|
17
18
|
Attributes are evaluated in the order they are written. Attributes with the same name are allowed. Each time a duplicate attribute is encountered, it will replace the existing value set by the earlier duplicate.
|
18
19
|
|
20
|
+
<<.note """<<.from-version "5.2.4">> There is no longer any restriction on using variable names that start with the $ character.""">>
|
21
|
+
|
19
22
|
! Examples
|
20
23
|
|
21
24
|
Consider a case where you need to set multiple variables, where some depend on the evaluation of others.
|
@@ -36,7 +36,7 @@ This example requires the following CSS definitions from [[$:/_tw5.com-styles]]:
|
|
36
36
|
This wiki text shows how to display a list within the scrollable widget:
|
37
37
|
|
38
38
|
<<wikitext-example-without-html "<$scrollable class='tc-scrollable-demo'>
|
39
|
-
<$list filter='[
|
39
|
+
<$list filter='[tag[Reference]]'>
|
40
40
|
|
41
41
|
<$view field='title'/>: <$list filter='[all[current]links[]sort[title]]' storyview='pop'>
|
42
42
|
<$link><$view field='title'/></$link>
|
@@ -40,6 +40,7 @@ The content of the `<$select>` widget should be one or more HTML `<option>` or `
|
|
40
40
|
|multiple |If present, switches to multiple selection mode |
|
41
41
|
|size |The number of rows to display in multiple selection mode |
|
42
42
|
|actions |A string containing ActionWidgets to be triggered when the key combination is detected |
|
43
|
+
|focus |<<.from-version "5.2.4">> Optional. Set to "yes" to automatically focus the HTML select element after creation |
|
43
44
|
|
44
45
|
! Examples
|
45
46
|
|
@@ -1,13 +1,15 @@
|
|
1
1
|
caption: Macro Definitions
|
2
2
|
created: 20150220181617000
|
3
|
-
modified:
|
3
|
+
modified: 20221207094236472
|
4
4
|
tags: WikiText
|
5
5
|
title: Macro Definitions in WikiText
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
|
8
8
|
A [[macro|Macros]] is defined using a `\define` [[pragma|Pragma]]. Like any pragma, this can only appear at the start of a tiddler.
|
9
9
|
|
10
|
-
The first line of the definition specifies the macro name and any parameters. Each parameter has a name and, optionally, a default value that is used if no value is supplied on a particular call to the macro.
|
10
|
+
The first line of the definition specifies the macro name and any parameters. Each parameter has a name and, optionally, a default value that is used if no value is supplied on a particular call to the macro.
|
11
|
+
|
12
|
+
The lines that follow contain the text of the macro text (i.e. the snippet represented by the macro name), until `\end` appears on a line by itself:
|
11
13
|
|
12
14
|
<$codeblock code={{$:/editions/tw5.com/macro-examples/say-hi}}/>
|
13
15
|
|
@@ -17,8 +19,6 @@ Alternatively, the entire definition can be presented on a single line without a
|
|
17
19
|
\define sayhi(name:"Bugs Bunny") Hi, I'm $name$.
|
18
20
|
```
|
19
21
|
|
20
|
-
A more formal [[presentation|Macro Definition Syntax]] of this syntax is also available.
|
21
|
-
|
22
22
|
!! Accessing variables and parameters
|
23
23
|
|
24
24
|
Inside the macro there are several methods for accessing variables defined outside of the macro or parameters from the macro parameter list.
|
@@ -77,3 +77,26 @@ To make a macro available to all tiddlers, define it in a tiddler that has the t
|
|
77
77
|
It is also possible to write a macro as a [[JavaScript module|https://tiddlywiki.com/dev/index.html#JavaScript%20Macros]]. ~JavaScript macros are available to all tiddlers, and offer the maximum flexibility.
|
78
78
|
|
79
79
|
A tiddler can manually import macro definitions from a [[selection|Title Selection]] of other tiddlers by using the <<.wlink ImportVariablesWidget>> widget.
|
80
|
+
|
81
|
+
!! Nested Macro Definitions
|
82
|
+
|
83
|
+
Macro definitions can be nested to any number of required levels by specifying the name of the macro in the `\end` marker. Nested macro definitions must appear at the start of the definition that contains them. For example:
|
84
|
+
|
85
|
+
<<wikitext-example-without-html src:"""\define special-button(caption:"Click me")
|
86
|
+
\define actions()
|
87
|
+
<$action-sendmessage $message="tm-notify" $param="HelloThere"/>
|
88
|
+
\end actions
|
89
|
+
<$button actions=<<actions>>>
|
90
|
+
$caption$
|
91
|
+
</$button>
|
92
|
+
\end special-button
|
93
|
+
|
94
|
+
<<special-button>>
|
95
|
+
""">>
|
96
|
+
|
97
|
+
Note that the textual substitution of macro parameters that occurs when the outer macro is rendered will apply to the nested definitions as well. That generally means that textual substitution of macro parameters should not be used within nested macros.
|
98
|
+
|
99
|
+
Parameters of nested macros can also be accessed via the `<<__variablename__>>` syntax. As ordinary variables, these parameters are available within nested child macros (and grandchildren etc).
|
100
|
+
|
101
|
+
A more formal [[presentation|Macro Definition Syntax]] of this syntax is also available.
|
102
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
created: 20220819100636227
|
2
|
+
modified: 20220819101309072
|
3
|
+
tags: [[Tables in WikiText]]
|
4
|
+
title: Table Classes, Captions, Headers and Footers
|
5
|
+
type: text/vnd.tiddlywiki
|
6
|
+
|
7
|
+
Table CSS classes, captions, headers and footers can be specified as special pseudo-rows. The following example:
|
8
|
+
|
9
|
+
* `|myclass anotherClass|k` assigns the CSS classes "myclass" and "anotherClass" to the table
|
10
|
+
* `|This is a caption |c` gives the table the caption "This is a caption"
|
11
|
+
* `|Header|Header|h` adds a header row of cells with the text "Header"
|
12
|
+
* `|Footer|Footer|f` adds a footer row of cells with the text "Footer"
|
13
|
+
|
14
|
+
<<wikitext-example-without-html src:"""|myclass anotherClass|k
|
15
|
+
|This is a caption |c
|
16
|
+
|Cell1 |Cell2 |
|
17
|
+
|Cell3 |Cell3 |
|
18
|
+
|Header|Header|h
|
19
|
+
|Footer|Footer|f
|
20
|
+
""">>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
caption: Tables
|
2
2
|
created: 20130914132100000
|
3
|
-
modified:
|
3
|
+
modified: 20220819103416274
|
4
4
|
tags: WikiText
|
5
5
|
title: Tables in WikiText
|
6
6
|
type: text/vnd.tiddlywiki
|
@@ -66,17 +66,7 @@ To merge a table cell with the one above, use the special cell text `~`. To merg
|
|
66
66
|
|
67
67
|
! Table Classes, Captions, Headers and Footers
|
68
68
|
|
69
|
-
Table
|
69
|
+
{{Table Classes, Captions, Headers and Footers}}
|
70
70
|
|
71
|
-
* assigns the CSS classes "myclass" and "anotherClass" to the table
|
72
|
-
* gives the table the caption "This is a caption"
|
73
|
-
* adds a header row of cells with the text "Header"
|
74
|
-
* adds a footer row of cells with the text "Footer"
|
75
71
|
|
76
|
-
|
77
|
-
|This is a caption |c
|
78
|
-
|Cell1 |Cell2 |
|
79
|
-
|Cell3 |Cell3 |
|
80
|
-
|Header|Header|h
|
81
|
-
|Footer|Footer|f
|
82
|
-
""">>
|
72
|
+
More examples can be found at: [[Tables in WikiText CSS Utility Classes]]
|
@@ -0,0 +1,20 @@
|
|
1
|
+
created: 20220818093624828
|
2
|
+
modified: 20221010074235929
|
3
|
+
tags: WikiText
|
4
|
+
title: Utility Classes
|
5
|
+
type: text/vnd.tiddlywiki
|
6
|
+
|
7
|
+
<<.from-version "5.2.4">> The following outlines a few predefined CSS classes intended to make it simpler to style [[HTML block-elements|HTML Block Elements]] and [[wikitext tables|Tables in WikiText CSS Utility Classes]].
|
8
|
+
|
9
|
+
!! General Utility Classes
|
10
|
+
|
11
|
+
|`tc-center` |Centres a block-element to the middle of the container |
|
12
|
+
|`tc-max-width `|Expands a block-element to use the maximum width of the container |
|
13
|
+
|`tc-max-width-80`|Sets the width of a block-element to use 80% of the maximum container width. This setting is useful with the `tc-center` class |
|
14
|
+
|`tc-edit-max-width `|Expands [[TextWidget]]s to use the maximum available width. See [[ControlPanel -> Info -> Basics|$:/core/ui/ControlPanel/Basics]]|
|
15
|
+
|`tc-first-link-nowrap` |Ensures that any links in the first table column will never wrap to the next line |
|
16
|
+
|
17
|
+
!! Table Utility Classes
|
18
|
+
|
19
|
+
|`tc-table-no-border` |Removes the borders of a table |
|
20
|
+
|`tc-first-col-min-width` |The first column of a table will take up minimal possible width. It adapts to the content |
|
@@ -10,7 +10,7 @@ In order to display Tiddlers (usually the text field), the WikiText parser reads
|
|
10
10
|
* ''block mode'' - the parser will recognise only [[block mode WikiText|Block Mode WikiText]] punctuation
|
11
11
|
* ''inline mode'' - the parser will recognise only [[inline mode WikiText|Inline Mode WikiText]]
|
12
12
|
|
13
|
-
The parser [[transitions between these modes|WikiText parser mode transitions]] based on the text it encounters. In addition, there are [[places where the parser ignores WikiText|Places where the parser ignores WikiText]] punctuation.
|
13
|
+
The parser [[transitions between these modes|WikiText parser mode transitions]] based on the text it encounters. In addition, there are [[places where the parser ignores WikiText|Places where the parser ignores WikiText]] punctuation. The parser mode can also be set directly with the [[Pragma: \parsermode]].
|
14
14
|
|
15
15
|
<<.tip "The concept of inline vs block also exists for standard HTML elements. For HTML, these [[two layout modes|https://www.w3schools.com/html/html_blocks.asp]] determine if the output flows together on the same line or not.
|
16
16
|
<p>Most [[block mode WikiText|Block Mode WikiText]] corresponds to [[block level HTML elements|https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements]] and most [[inline mode WikiText|Inline Mode WikiText]] corresponds to [[inline level HTML elements|https://developer.mozilla.org/en-US/docs/Web/HTML/Inline_elements]]. However, for Wikitext the two modes are just as important for determining which syntax will be recognised by the parser as they are for determining how the output will flow.</p>">>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
title: HelloThere
|
2
|
+
|
3
|
+
!!! Welcome to the Twitter Archivist for TiddlyWiki
|
4
|
+
|
5
|
+
<$tiddler tiddler="$:/plugins/tiddlywiki/twitter-archivist">
|
6
|
+
<$set name="tabsList" filter="[list<currentTiddler>]">
|
7
|
+
<$macrocall $name="tabs" state=<<qualify "$:/state/tabs/twitter-archivist">> tabsList=<<tabsList>> default={{{ [enlist<tabsList>] }}} template="$:/core/ui/PluginInfo"/>
|
8
|
+
</$set>
|
9
|
+
</$tiddler>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"description": "Twitter Archivist Edition",
|
3
|
+
"plugins": [
|
4
|
+
"tiddlywiki/twitter-archivist"
|
5
|
+
],
|
6
|
+
"languages": [
|
7
|
+
],
|
8
|
+
"themes": [
|
9
|
+
"tiddlywiki/vanilla",
|
10
|
+
"tiddlywiki/snowwhite"
|
11
|
+
],
|
12
|
+
"build": {
|
13
|
+
"index": [
|
14
|
+
"--rendertiddler","$:/core/save/all","index.html","text/plain"]
|
15
|
+
}
|
16
|
+
}
|
@@ -8,7 +8,7 @@ Appearance/Hint: طرق لتخصيص مظهر وكي خاص بك.
|
|
8
8
|
Basics/AnimDuration/Prompt: مدة الرسوم المتحركة
|
9
9
|
Basics/AutoFocus/Prompt: موقع مؤشر الماوس الإفتراضي للتدلرز الجددة
|
10
10
|
Basics/Caption: أساسيات
|
11
|
-
Basics/DefaultTiddlers/BottomHint: إستخدم [[أقواس مربعة مزدوجة]] للعناوين مع مسافات. أو بإمكانك
|
11
|
+
Basics/DefaultTiddlers/BottomHint: إستخدم [[أقواس مربعة مزدوجة]] للعناوين مع مسافات. أو بإمكانك إختيار{{الإحتفاظ بترتيب القصة||$:/snippets/retain-story-ordering-button}}
|
12
12
|
Basics/DefaultTiddlers/Prompt: تدلرز مفترضة
|
13
13
|
Basics/DefaultTiddlers/TopHint: أي تدلرز ستظهر عند التشغيل
|
14
14
|
Basics/Language/Prompt: مرحبا! اللغة الحالية:
|
@@ -7,7 +7,7 @@ Appearance/Hint: Formes de personalitzar l'aparença del vostre TiddlyWiki.
|
|
7
7
|
Basics/AnimDuration/Prompt: Duració de l'animació:
|
8
8
|
Basics/AutoFocus/Prompt: Focus dels nous tiddlers
|
9
9
|
Basics/Caption: Bàsic
|
10
|
-
Basics/DefaultTiddlers/BottomHint: Useu [[claudàtors dobles]] per als títols amb espais. O trieu
|
10
|
+
Basics/DefaultTiddlers/BottomHint: Useu [[claudàtors dobles]] per als títols amb espais. O trieu {{restaura la sessió anterior en arrencar||$:/snippets/retain-story-ordering-button}}
|
11
11
|
Basics/DefaultTiddlers/Prompt: Tiddlers per omissió:
|
12
12
|
Basics/DefaultTiddlers/TopHint: Trieu quins tiddlers s'han de mostrar a l'inici:
|
13
13
|
Basics/Language/Prompt: Bon dia! Trieu l'idioma:
|
@@ -6,7 +6,7 @@ Appearance/Caption: Vzhled
|
|
6
6
|
Appearance/Hint: Možnosti přizpůsobení vzhledu vaší TiddlyWiki.
|
7
7
|
Basics/AnimDuration/Prompt: Délka animace:
|
8
8
|
Basics/Caption: Základní
|
9
|
-
Basics/DefaultTiddlers/BottomHint: Použijte [[dvojité hranaté závorky]] pro názvy s mezerami. Nebo můžete zvolit
|
9
|
+
Basics/DefaultTiddlers/BottomHint: Použijte [[dvojité hranaté závorky]] pro názvy s mezerami. Nebo můžete zvolit {{zachování toku||$:/snippets/retain-story-ordering-button}}
|
10
10
|
Basics/DefaultTiddlers/Prompt: Výchozí tiddlery:
|
11
11
|
Basics/DefaultTiddlers/TopHint: Vyberte které tiddlery budou zobrazeny po spuštění:
|
12
12
|
Basics/Language/Prompt: Ahoj! Aktuální jazyk:
|