tiddlywiki 5.2.2 → 5.2.4
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/.github/ISSUE_TEMPLATE/bug_report.yml +67 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +8 -0
- package/bin/build-site.sh +11 -2
- package/bin/test.sh +1 -0
- package/boot/boot.js +10 -7
- package/contributing.md +1 -1
- 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/EditTemplate.multids +1 -0
- 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/Help/default.tid +4 -1
- package/core/language/en-GB/Help/render.tid +2 -2
- package/core/language/en-GB/Misc.multids +1 -0
- package/core/language/en-GB/SideBar.multids +1 -0
- package/core/modules/commands/commands.js +42 -0
- package/core/modules/commands/render.js +1 -1
- package/core/modules/commands/rendertiddler.js +1 -0
- package/core/modules/commands/rendertiddlers.js +1 -1
- package/core/modules/commands/save.js +56 -42
- package/core/modules/editor/engines/framed.js +15 -2
- package/core/modules/editor/factory.js +2 -2
- package/core/modules/editor/operations/text/prefix-lines.js +2 -2
- package/core/modules/editor/operations/text/wrap-lines.js +27 -10
- package/core/modules/filterrunprefixes/map.js +10 -2
- package/core/modules/filters/format/json.js +35 -0
- package/core/modules/filters/insertafter.js +46 -0
- package/core/modules/filters/insertbefore.js +6 -1
- 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 +31 -4
- 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/savers/put.js +11 -7
- package/core/modules/savers/upload.js +1 -1
- package/core/modules/server/routes/put-tiddler.js +10 -0
- package/core/modules/server/server.js +3 -2
- package/core/modules/startup/browser-messaging.js +4 -2
- package/core/modules/startup/startup.js +5 -1
- package/core/modules/startup/story.js +3 -1
- package/core/modules/utils/csv.js +101 -23
- package/core/modules/utils/dom/dom.js +66 -0
- package/core/modules/utils/dom/dragndrop.js +24 -14
- package/core/modules/utils/dom/modal.js +6 -0
- package/core/modules/utils/dom/notifier.js +2 -1
- 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 +59 -12
- package/core/modules/utils/utils.js +18 -1
- package/core/modules/widgets/action-deletefield.js +2 -2
- package/core/modules/widgets/action-popup.js +10 -8
- package/core/modules/widgets/action-setfield.js +12 -14
- package/core/modules/widgets/button.js +13 -3
- package/core/modules/widgets/checkbox.js +132 -16
- package/core/modules/widgets/draggable.js +37 -14
- package/core/modules/widgets/element.js +9 -3
- package/core/modules/widgets/error.js +63 -0
- package/core/modules/widgets/eventcatcher.js +1 -27
- package/core/modules/widgets/genesis.js +108 -0
- package/core/modules/widgets/image.js +4 -0
- package/core/modules/widgets/importvariables.js +4 -1
- package/core/modules/widgets/keyboard.js +4 -0
- package/core/modules/widgets/let.js +4 -6
- package/core/modules/widgets/reveal.js +11 -10
- package/core/modules/widgets/scrollable.js +2 -0
- package/core/modules/widgets/select.js +9 -0
- package/core/modules/widgets/transclude.js +3 -5
- package/core/modules/widgets/widget.js +52 -19
- package/core/modules/wiki.js +1 -1
- 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 +5 -3
- package/core/palettes/DarkPhotos.tid +2 -0
- package/core/palettes/DesertSand.tid +2 -0
- package/core/palettes/GruvBoxDark.tid +4 -2
- package/core/palettes/Nord.tid +4 -2
- 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/save-lazy-all.tid +2 -2
- package/core/templates/server/static.sidebar.wikitext.tid +1 -1
- package/core/templates/server/static.tiddler.html.tid +2 -2
- package/core/templates/single.tiddler.window.tid +1 -1
- package/core/ui/Actions/new-image.tid +2 -7
- package/core/ui/Actions/new-journal.tid +2 -1
- package/core/ui/Actions/new-tiddler.tid +1 -0
- package/core/ui/AdvancedSearch/Filter.tid +50 -10
- package/core/ui/AdvancedSearch/FilterButtons/clear.tid +1 -0
- package/core/ui/AdvancedSearch/FilterButtons/delete.tid +4 -3
- package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +5 -2
- package/core/ui/AdvancedSearch/FilterButtons/export.tid +1 -0
- package/core/ui/AdvancedSearch/Shadows.tid +54 -12
- package/core/ui/AdvancedSearch/Standard.tid +36 -19
- package/core/ui/AdvancedSearch/System.tid +54 -12
- package/core/ui/AdvancedSearch.tid +1 -0
- package/core/ui/AlertTemplate.tid +10 -1
- package/core/ui/Components/tag-link.tid +1 -0
- package/core/ui/ControlPanel/Advanced.tid +1 -0
- package/core/ui/ControlPanel/Appearance.tid +1 -0
- package/core/ui/ControlPanel/Basics/retain-story-ordering-button.tid +3 -0
- package/core/ui/ControlPanel/Basics.tid +6 -2
- package/core/ui/ControlPanel/Cascades.tid +1 -0
- package/core/ui/ControlPanel/EditorTypes.tid +1 -0
- package/core/ui/ControlPanel/Info.tid +1 -0
- package/core/ui/ControlPanel/KeyboardShortcuts.tid +18 -7
- package/core/ui/ControlPanel/Modals/AddPlugins.tid +26 -9
- package/core/ui/ControlPanel/Parsing.tid +3 -0
- package/core/ui/ControlPanel/Plugins/Add/Updates.tid +5 -1
- package/core/ui/ControlPanel/Plugins/AddPlugins.tid +4 -1
- package/core/ui/ControlPanel/Plugins.tid +1 -0
- package/core/ui/ControlPanel/Saving/TiddlySpot.tid +2 -1
- package/core/ui/ControlPanel/Saving.tid +1 -0
- package/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab.tid +1 -0
- package/core/ui/ControlPanel/Settings/DefaultSidebarTab.tid +1 -0
- package/core/ui/ControlPanel/Settings/LinkToBehaviour.tid +1 -0
- package/core/ui/ControlPanel/Settings/ToolbarButtonStyle.tid +1 -0
- package/core/ui/ControlPanel/Toolbars/EditorItemTemplate.tid +8 -1
- package/core/ui/ControlPanel/Toolbars/ItemTemplate.tid +11 -1
- package/core/ui/ControlPanel/Toolbars.tid +1 -0
- package/core/ui/ControlPanel.tid +1 -0
- package/core/ui/DefaultSearchResultList.tid +1 -0
- package/core/ui/EditTemplate/Preview/output.tid +2 -2
- package/core/ui/EditTemplate/body/default.tid +9 -6
- package/core/ui/EditTemplate/body-editor.tid +2 -0
- package/core/ui/EditTemplate/controls.tid +1 -0
- package/core/ui/EditTemplate/fieldEditor-default.tid +1 -1
- package/core/ui/EditTemplate/fields.tid +27 -10
- package/core/ui/EditTemplate/shadow.tid +2 -0
- package/core/ui/EditTemplate/title.tid +10 -5
- package/core/ui/EditTemplate.tid +33 -4
- package/core/ui/EditorToolbar/editor-height.tid +1 -0
- package/core/ui/EditorToolbar/excise-dropdown.tid +5 -4
- package/core/ui/EditorToolbar/file-import.tid +4 -0
- package/core/ui/EditorToolbar/link-dropdown.tid +10 -5
- package/core/ui/EditorToolbar/more-dropdown.tid +5 -1
- package/core/ui/EditorToolbar/paint.tid +1 -0
- package/core/ui/EditorToolbar/preview.tid +1 -0
- package/core/ui/EditorToolbar/size-dropdown.tid +6 -1
- package/core/ui/ExportTiddlyWikiCore.tid +15 -5
- package/core/ui/ImportListing.tid +28 -10
- package/core/ui/ImportPreviews/Fields.tid +1 -0
- package/core/ui/KeyboardShortcuts/advanced-search.tid +2 -1
- package/core/ui/KeyboardShortcuts/change-sidebar-layout.tid +4 -2
- package/core/ui/KeyboardShortcuts/new-image.tid +1 -0
- package/core/ui/KeyboardShortcuts/new-journal.tid +1 -0
- package/core/ui/KeyboardShortcuts/new-tiddler.tid +1 -0
- package/core/ui/KeyboardShortcuts/save-wiki.tid +1 -0
- package/core/ui/KeyboardShortcuts/toggle-sidebar.tid +4 -3
- package/core/ui/LayoutSwitcher.tid +16 -4
- package/core/ui/ListItemTemplate.tid +1 -3
- package/core/ui/ListTaggedCascade.tid +1 -0
- package/core/ui/Manager/ItemMainFields.tid +1 -0
- package/core/ui/Manager/ItemSidebarColour.tid +4 -1
- package/core/ui/Manager/ItemSidebarIcon.tid +4 -4
- package/core/ui/Manager/ItemSidebarTools.tid +7 -2
- package/core/ui/Manager.tid +11 -6
- package/core/ui/MissingTemplate.tid +1 -0
- package/core/ui/MoreSideBar/Types.tid +1 -0
- package/core/ui/PageControls/controlpanel.tid +1 -1
- package/core/ui/PageControls/layout.tid +15 -0
- package/core/ui/PageStylesheet.tid +1 -0
- package/core/ui/PageTemplate/story.tid +1 -1
- package/core/ui/PageTemplate.tid +1 -4
- package/core/ui/PaletteManager.tid +11 -10
- package/core/ui/PluginInfo.tid +1 -0
- package/core/ui/PluginInfoDefaultContents.tid +1 -0
- package/core/ui/SearchResults.tid +8 -6
- package/core/ui/SideBar/More.tid +3 -2
- package/core/ui/SideBar/Open.tid +2 -2
- package/core/ui/SideBarSegments/search.tid +2 -0
- package/core/ui/SideBarSegments/tabs.tid +1 -1
- package/core/ui/SwitcherModal.tid +1 -0
- package/core/ui/TagManager.tid +75 -63
- package/core/ui/TiddlerFieldTemplate.tid +1 -0
- package/core/ui/TiddlerFields.tid +1 -0
- package/core/ui/TiddlerInfo/Advanced/PluginInfo.tid +1 -0
- package/core/ui/TiddlerInfo/Advanced/ShadowInfo.tid +1 -0
- package/core/ui/TiddlerInfo/Advanced.tid +1 -0
- package/core/ui/TiddlerInfo.tid +1 -0
- package/core/ui/TopRightBar/menu.tid +1 -0
- package/core/ui/UntaggedTemplate.tid +1 -0
- package/core/ui/ViewTemplate/body/import.tid +6 -1
- package/core/ui/ViewTemplate/body/plugin.tid +1 -0
- package/core/ui/ViewTemplate/body/rendered-plain-text.tid +7 -0
- package/core/ui/ViewTemplate/body.tid +2 -0
- package/core/ui/ViewTemplate/classic.tid +1 -0
- package/core/ui/ViewTemplate/subtitle/modified.tid +4 -0
- package/core/ui/ViewTemplate/subtitle/modifier.tid +4 -0
- package/core/ui/ViewTemplate/subtitle.tid +6 -2
- package/core/ui/ViewTemplate/tags.tid +1 -0
- package/core/ui/ViewTemplate/title.tid +2 -0
- package/core/ui/ViewTemplate/unfold.tid +7 -2
- package/core/ui/ViewTemplate.tid +1 -1
- package/core/ui/ViewToolbar/new-here.tid +1 -0
- package/core/wiki/allfields.tid +8 -2
- 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/config/ViewTemplateBodyFilters.multids +2 -1
- package/core/wiki/currpalettepreview.tid +7 -2
- package/core/wiki/debugstylesheets.tid +1 -0
- package/core/wiki/download-wiki-button.tid +2 -1
- package/core/wiki/languageswitcher.tid +2 -0
- package/core/wiki/macros/colour-picker.tid +9 -2
- package/core/wiki/macros/copy-to-clipboard.tid +5 -2
- package/core/wiki/macros/diff.tid +4 -3
- package/core/wiki/macros/dumpvariables.tid +1 -0
- package/core/wiki/macros/image-picker.tid +5 -4
- package/core/wiki/macros/keyboard-driven-input.tid +22 -12
- package/core/wiki/macros/list.tid +14 -9
- package/core/wiki/macros/tabs.tid +55 -30
- package/core/wiki/macros/tag-picker.tid +14 -13
- package/core/wiki/macros/tag.tid +10 -5
- package/core/wiki/macros/thumbnails.tid +21 -9
- package/core/wiki/macros/timeline.tid +7 -9
- package/core/wiki/macros/toc.tid +31 -16
- package/core/wiki/macros/translink.tid +1 -0
- package/core/wiki/macros/tree.tid +8 -3
- package/core/wiki/minifocusswitcher.tid +1 -0
- package/core/wiki/minilanguageswitcher.tid +1 -0
- package/core/wiki/minithemeswitcher.tid +2 -1
- package/core/wiki/modules.tid +1 -0
- package/core/wiki/palettepreview.tid +1 -0
- package/core/wiki/paletteswitcher.tid +13 -2
- package/core/wiki/peek-stylesheets.tid +1 -5
- package/core/wiki/tags/PageControls.tid +1 -1
- package/core/wiki/tags/ViewTemplateBodyFilter.tid +1 -1
- package/core/wiki/tags/ViewTemplateSubtitle.tid +2 -0
- package/core/wiki/themeswitcher.tid +10 -1
- package/core/wiki/title.tid +2 -1
- package/core/wiki/viewswitcher.tid +1 -0
- package/editions/de-AT/tiddlers/howto/TiddlyWiki und TiddlyDesktop.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/_tw_shared/tiddlywiki.files +5 -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/tiddlers/system/github-fork-ribbon.tid +1 -1
- package/editions/dev/tiddlywiki.info +3 -2
- package/editions/es-ES/tiddlers/TiddlyDesktop.tid +2 -2
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +1 -1
- package/editions/fr-FR/tiddlers/Community Links Aggregator.tid +4 -4
- package/editions/fr-FR/tiddlers/Glossaire en-GB -_ fr-FR.tid +2 -1
- package/editions/fr-FR/tiddlers/community/editions/_Noteself_ by Danielo Rodr/303/255guez.tid" +34 -0
- package/editions/fr-FR/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +28 -0
- package/editions/fr-FR/tiddlers/community/resources/TiddlyDrive Add-on for Google Drive by Joshua Stubbs.tid +24 -0
- package/editions/fr-FR/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +35 -0
- package/editions/fr-FR/tiddlers/community/resources/Twexe_ Single File Tiddlywiki5 executable.tid +30 -0
- package/editions/fr-FR/tiddlers/community/resources/_Timimi_ Extension and executable by Riz.tid +33 -0
- package/editions/fr-FR/tiddlers/community/resources/_file-backups_ Extension for Firefox by pmario.tid +19 -0
- package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +17 -0
- package/editions/fr-FR/tiddlers/concepts/Pragma.tid +23 -0
- package/editions/fr-FR/tiddlers/{WikiText.tid → concepts/WikiText.tid} +6 -4
- package/editions/fr-FR/tiddlers/definitions/TiddlyDesktop.tid +19 -0
- package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +11 -0
- package/editions/fr-FR/tiddlers/gettingstarted/GettingStarted - Safari.tid +12 -0
- package/editions/fr-FR/tiddlers/{A_Gentle_Guide_to_TiddlyWiki.tid → hellothere/A Gentle Guide to TiddlyWiki.tid } +6 -4
- package/editions/fr-FR/tiddlers/howtos/How to Customize TiddlyDesktop.tid +33 -0
- package/editions/fr-FR/tiddlers/howtos/Windows HTA Hack.tid +17 -0
- package/editions/fr-FR/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +49 -0
- package/editions/fr-FR/tiddlers/nodejs/Serving TW5 from Android.tid +47 -0
- package/editions/fr-FR/tiddlers/nodejs/TiddlyWiki on Node.js.tid +18 -0
- package/editions/fr-FR/tiddlers/saving/Emergency Tiddler Export.tid +28 -0
- package/editions/fr-FR/tiddlers/saving/Example config-tiddlyweb-host for IIS.tid +9 -0
- package/editions/fr-FR/tiddlers/saving/Example package.json for IIS.tid +15 -0
- package/editions/fr-FR/tiddlers/saving/Example tiddlywiki.info for IIS.tid +18 -0
- package/editions/fr-FR/tiddlers/saving/Example web.config for IIS.tid +32 -0
- package/editions/fr-FR/tiddlers/saving/Installing TiddlyWiki on Microsoft Internet Information Server.tid +69 -0
- package/editions/fr-FR/tiddlers/saving/Saving on Android.tid +36 -0
- package/editions/fr-FR/tiddlers/saving/Saving on Beaker Browser.tid +35 -0
- package/editions/fr-FR/tiddlers/saving/Saving on Browser with File System Access API.tid +20 -0
- package/editions/fr-FR/tiddlers/saving/Saving on TidGi Desktop.tid +28 -0
- package/editions/fr-FR/tiddlers/saving/Saving on TiddlyDesktop.tid +20 -0
- package/editions/fr-FR/tiddlers/saving/Saving on TiddlyHost.tid +18 -0
- package/editions/fr-FR/tiddlers/{Saving on TiddlySpot.tid → saving/Saving on TiddlySpot.tid } +14 -3
- package/editions/fr-FR/tiddlers/saving/Saving on a PHP Server.tid +45 -0
- package/editions/fr-FR/tiddlers/saving/Saving on iPad_iPhone.tid +30 -0
- package/editions/fr-FR/tiddlers/saving/Saving to a Git service.tid +26 -0
- package/editions/fr-FR/tiddlers/saving/Saving via WebDAV.tid +88 -0
- package/editions/fr-FR/tiddlers/saving/Saving via a Minimal Ruby Server.tid +20 -0
- package/editions/fr-FR/tiddlers/saving/Saving with Polly.tid +30 -0
- package/editions/fr-FR/tiddlers/saving/Saving with TW Receiver.tid +16 -0
- package/editions/fr-FR/tiddlers/{Saving with TiddlyFox on Android.tid → saving/Saving with TiddlyFox on Android.tid } +5 -5
- package/editions/fr-FR/tiddlers/saving/Saving with TiddlyFox.tid +31 -0
- package/editions/fr-FR/tiddlers/saving/Saving with TiddlyIE.tid +25 -0
- package/editions/fr-FR/tiddlers/{Saving with the HTML5 fallback saver.tid → saving/Saving with the HTML5 fallback saver.tid } +11 -6
- package/editions/fr-FR/tiddlers/{Saving.tid → saving/Saving.tid} +8 -10
- package/editions/fr-FR/tiddlers/saving/TiddlyWiki Cloud.tid +17 -0
- 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_SideBar_Open.tid +40 -0
- package/editions/fr-FR/tiddlers/system/$__core_ui_TagPickerTagTemplate.tid +25 -0
- package/editions/fr-FR/tiddlers/{$__editions_fr-FR_util-macros.tid → system/$__editions_fr-FR_util-macros.tid} +4 -4
- package/editions/fr-FR/tiddlers/{$__editions_tw5.com_wikitext-macros.tid → system/$__editions_tw5.com_wikitext-macros.tid} +24 -3
- package/editions/fr-FR/tiddlers/system/tw5.com-card-template.tid +17 -0
- package/editions/fr-FR/tiddlers/tiddlydesktop/TiddlyDesktop_Releases.tid +9 -0
- package/editions/fr-FR/tiddlers/widgets/TranscludeWidget.tid +72 -0
- package/editions/fr-FR/tiddlers/{Block_Quotes_in_WikiText.tid → wikitext/Block Quotes in WikiText.tid } +3 -2
- package/editions/fr-FR/tiddlers/{Code Blocks in WikiText.tid → wikitext/Code Blocks in WikiText.tid } +3 -3
- package/editions/fr-FR/tiddlers/{Dashes in WikiText.tid → wikitext/Dashes in WikiText.tid } +3 -3
- package/editions/fr-FR/tiddlers/{Definitions_in_WikiText.tid → wikitext/Definitions in WikiText.tid } +2 -2
- package/editions/fr-FR/tiddlers/{Formatting in WikiText.tid → wikitext/Formatting in WikiText.tid } +5 -6
- package/editions/fr-FR/tiddlers/{Hard Linebreaks in WikiText.tid → wikitext/Hard Linebreaks in WikiText.tid } +6 -5
- package/editions/fr-FR/tiddlers/{Headings in WikiText.tid → wikitext/Headings in WikiText.tid } +4 -4
- package/editions/fr-FR/tiddlers/wikitext/Horizontal Rules in WikiText.tid +17 -0
- package/editions/fr-FR/tiddlers/{Lists_in_WikiText.tid → wikitext/Lists in WikiText.tid } +19 -19
- package/editions/fr-FR/tiddlers/wikitext/Macro Calls in WikiText.tid +27 -0
- package/editions/fr-FR/tiddlers/{Paragraphs in WikiText.tid → wikitext/Paragraphs in WikiText.tid } +8 -7
- package/editions/fr-FR/tiddlers/wikitext/Tables in WikiText.tid +69 -0
- package/editions/fr-FR/tiddlers/wikitext/Transclusion and Substitution.tid +61 -0
- package/editions/fr-FR/tiddlers/{Transclusion_in_WikiText.tid → wikitext/Transclusion in WikiText.tid } +14 -13
- package/editions/fr-FR/tiddlers/{Transclusion_with_Templates.tid → wikitext/Transclusion with Templates.tid } +2 -1
- package/editions/fr-FR/tiddlers/{Typed_Blocks_in_WikiText.tid → wikitext/Typed Blocks in WikiText.tid } +16 -11
- package/editions/fr-FR/tiddlers/{Variables_in_WikiText.tid → wikitext/Variables in WikiText.tid } +7 -8
- package/editions/fr-FR/tiddlers/wikitext/Widgets in WikiText.tid +30 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText (Examples).tid +52 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/Block Mode WikiText.tid +37 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/Inline Mode WikiText.tid +28 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +14 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/WikiText Parser Modes.tid +17 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode HTML examples.tid +73 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode transitions.tid +59 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ macro examples.tid +56 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +56 -0
- package/editions/fr-FR/tiddlers/wikitext/parser/table-example.tid +8 -0
- package/editions/full/tiddlywiki.info +0 -1
- package/editions/introduction/tiddlywiki.info +0 -1
- package/editions/katexdemo/tiddlers/$__DefaultTiddlers.tid +8 -0
- package/editions/katexdemo/tiddlers/HelloThere.tid +4 -1
- package/editions/katexdemo/tiddlers/LaTeX.tid +8 -0
- package/editions/katexdemo/tiddlers/TiddlyWiki.tid +8 -0
- package/editions/katexdemo/tiddlers/TiddlyWiki5.tid +6 -0
- 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.5.tid +50 -0
- 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 +9 -2
- package/editions/prerelease/tiddlywiki.info +0 -2
- 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/tabs-macro/expected-html-tabs-horizontal-all.tid +1 -29
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal.tid +1 -39
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-vertical.tid +1 -39
- 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-action-widgets.js +43 -0
- package/editions/test/tiddlers/tests/test-checkbox-widget.js +541 -0
- package/editions/test/tiddlers/tests/test-filters.js +49 -2
- 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-prefixes-filter.js +2 -0
- package/editions/test/tiddlers/tests/test-utils.js +7 -0
- package/editions/test/tiddlers/tests/test-widget.js +2 -1
- package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +8 -7
- package/editions/test/tiddlers/tests/test-wikitext.js +24 -1
- package/editions/test/tiddlywiki.info +2 -1
- package/editions/translators/tiddlers/system/PageControlButtonsVisibility.multids +1 -0
- package/editions/translators/tiddlywiki.info +7 -2
- package/editions/tw.org/tiddlers/$__config_DefaultSidebarTab.tid +6 -0
- package/editions/tw.org/tiddlers/$__core_templates_static.content.tid +18 -0
- package/editions/tw.org/tiddlers/Code of Conduct.tid +33 -0
- package/editions/tw.org/tiddlers/Fundraising.tid +23 -0
- package/editions/tw.org/tiddlers/HelloThere.tid +3 -2
- package/editions/tw.org/tiddlers/Table of Contents.tid +2 -1
- package/editions/tw.org/tiddlers/_tw_shared/tiddlywiki.files +5 -0
- package/editions/tw5.com/tiddlers/$__StoryList.tid +3 -3
- package/editions/tw5.com/tiddlers/Brackets.tid +14 -0
- package/editions/tw5.com/tiddlers/Tables in WikiText CSS Utility Classes.tid +81 -0
- package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg +0 -0
- package/editions/tw5.com/tiddlers/{images → _tw_shared}/Motovun Jack.svg.meta +1 -1
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/classic.tiddlywiki.com.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/links.tiddlywiki.org.ico.meta +3 -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/favicons/talk.tiddlywiki.org.svg +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/talk.tiddlywiki.org.svg.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.dev.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.prerelease.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.com.upgrade.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico +0 -0
- package/editions/tw5.com/tiddlers/_tw_shared/favicons/tiddlywiki.org.ico.meta +3 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/classic.tiddlywiki.com.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/links.tiddlywiki.org.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/marketplace.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/talk.tiddlywiki.org.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.dev.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.prerelease.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.com.upgrade.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites/tiddlywiki.org.tid +6 -0
- package/editions/tw5.com/tiddlers/_tw_shared/sites.tid +32 -0
- package/editions/tw5.com/tiddlers/_tw_shared/styles.tid +48 -0
- package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +3 -0
- 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/Community Links Aggregator.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -1
- package/editions/tw5.com/tiddlers/community/editions/TiddlyMemo by oflg.tid +16 -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/Projectify by Nicolas Petton.tid +6 -4
- 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/concepts/CoordinateSystems.tid +42 -0
- package/editions/tw5.com/tiddlers/concepts/Customizing EditTemplate Field Rendering.tid +23 -7
- package/editions/tw5.com/tiddlers/concepts/DataTiddlers.tid +4 -21
- package/editions/tw5.com/tiddlers/concepts/DictionaryTiddlers.tid +3 -2
- package/editions/tw5.com/tiddlers/concepts/JSONTiddlers.tid +4 -3
- package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +9 -0
- package/editions/tw5.com/tiddlers/concepts/Macros.tid +6 -2
- package/editions/tw5.com/tiddlers/concepts/Order of Tagged Tiddlers.tid +3 -1
- package/editions/tw5.com/tiddlers/concepts/SystemTags.tid +1 -1
- package/editions/tw5.com/tiddlers/concepts/TiddlyWiki5.tid +4 -2
- package/editions/tw5.com/tiddlers/concepts/Title List.tid +4 -1
- package/editions/tw5.com/tiddlers/customising/Customising TiddlyWiki's user interface.tid +2 -2
- 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/JavaScript Object Notation.tid +2 -6
- package/editions/tw5.com/tiddlers/definitions/Node.js.tid +5 -3
- package/editions/tw5.com/tiddlers/definitions/TiddlyDesktop.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/TiddlyWeb.tid +1 -0
- package/editions/tw5.com/tiddlers/definitions/TiddlyWikiClassic.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Styles.tid +0 -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 +69 -0
- package/editions/tw5.com/tiddlers/features/Modals.tid +3 -0
- package/editions/tw5.com/tiddlers/filters/Mathematics Operators.tid +23 -3
- package/editions/tw5.com/tiddlers/filters/examples/format Operator (Examples).tid +5 -2
- package/editions/tw5.com/tiddlers/filters/examples/insertafter Operator (Examples).tid +28 -0
- package/editions/tw5.com/tiddlers/filters/format.tid +7 -4
- package/editions/tw5.com/tiddlers/filters/insertafter Operator.tid +35 -0
- package/editions/tw5.com/tiddlers/filters/insertbefore Operator.tid +9 -3
- 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/filters/syntax/Map Filter Run Prefix (Examples).tid +20 -2
- package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +3 -2
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +4 -2
- 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/Constructing JSON tiddlers.tid +16 -0
- package/editions/tw5.com/tiddlers/howtos/Creating a splash screen.tid +1 -1
- package/editions/tw5.com/tiddlers/howtos/How to apply custom styles by tag.tid +2 -2
- package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +2 -0
- package/editions/tw5.com/tiddlers/howtos/How to customize TiddlyDesktop.tid +1 -1
- package/editions/tw5.com/tiddlers/howtos/How to update TiddlyWiki to the latest version.tid +7 -0
- package/editions/tw5.com/tiddlers/howtos/Modifying JSON tiddlers.tid +18 -0
- package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +34 -0
- 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/JsonTiddlersMacro.tid +3 -3
- 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/macros/TagMacro.tid +1 -1
- package/editions/tw5.com/tiddlers/macros/jsontiddler Macro.tid +2 -2
- package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +2 -0
- package/editions/tw5.com/tiddlers/marketplace/TiddlyWiki Marketplace.tid +18 -0
- package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +1 -0
- package/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +1 -1
- package/editions/tw5.com/tiddlers/mechanisms/PopupMechanism.tid +1 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-window.tid +3 -1
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid +4 -2
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +12 -3
- package/editions/tw5.com/tiddlers/nodejs/Environment Variables on Node.js.tid +5 -5
- package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +7 -12
- package/editions/tw5.com/tiddlers/nodejs/Installing custom plugins on Node.js.tid +11 -19
- package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +40 -0
- package/editions/tw5.com/tiddlers/nodejs/PluginsCS.tid +9 -0
- package/editions/tw5.com/tiddlers/nodejs/TiddlyWiki on Node.js.tid +7 -2
- package/editions/tw5.com/tiddlers/nodejs/Uninstalling a plugin with Node.js.tid +31 -0
- package/editions/tw5.com/tiddlers/nodejs/Using TiddlyWiki on Node.js.tid +4 -4
- package/editions/tw5.com/tiddlers/platforms/TiddlyWiki in the Sky for TiddlyWeb.tid +2 -1
- package/editions/tw5.com/tiddlers/plugins/Installing a plugin from the plugin library.tid +22 -35
- package/editions/tw5.com/tiddlers/plugins/Manually installing a plugin.tid +19 -4
- package/editions/tw5.com/tiddlers/plugins/OfficialPlugins.tid +3 -1
- package/editions/tw5.com/tiddlers/plugins/Plugin Ordering.tid +47 -0
- package/editions/tw5.com/tiddlers/plugins/PluginFolders.tid +27 -1
- package/editions/tw5.com/tiddlers/plugins/Plugins.tid +19 -7
- package/editions/tw5.com/tiddlers/plugins/Uninstalling a plugin.tid +15 -25
- package/editions/tw5.com/tiddlers/pragmas/Pragma_ _parsermode.tid +17 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +32 -34
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +36 -38
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +16 -18
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.2.tid +26 -28
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.3.tid +152 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +140 -0
- package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +2 -2
- package/editions/tw5.com/tiddlers/saving/Emergency Tiddler Export.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on Android.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TidGi.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlyDesktop.tid +3 -3
- 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 on iPad_iPhone.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +5 -3
- package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +1 -0
- package/editions/tw5.com/tiddlers/saving/Saving.tid +17 -12
- package/editions/tw5.com/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +15 -0
- package/editions/tw5.com/tiddlers/system/Deprecated.tid +4 -4
- package/editions/tw5.com/tiddlers/system/Deprecated_-_What_does_it_mean.tid +2 -6
- package/editions/tw5.com/tiddlers/system/doc-macros.tid +12 -2
- package/editions/tw5.com/tiddlers/system/doc-styles.tid +34 -4
- package/editions/tw5.com/tiddlers/system/download-empty-button.tid +1 -1
- package/editions/tw5.com/tiddlers/system/systemtag-template.tid +21 -0
- package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +2 -13
- package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +172 -45
- package/editions/tw5.com/tiddlers/system/version-macros.tid +4 -5
- package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +80 -17
- 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/systemtags/SystemTag_ $__tags_Macro_View_Body.tid +9 -0
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplate.tid +2 -2
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ViewTemplateSubtitle.tid +9 -0
- 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/tiddlydesktop/TiddlyDesktop_Releases.tid +1 -1
- package/editions/tw5.com/tiddlers/variables/modifier Variable.tid +2 -2
- 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/CheckboxWidget.tid +77 -3
- package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +20 -3
- package/editions/tw5.com/tiddlers/widgets/ErrorWidget.tid +17 -0
- package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +6 -3
- package/editions/tw5.com/tiddlers/widgets/GenesisWidget.tid +41 -0
- package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +5 -3
- package/editions/tw5.com/tiddlers/widgets/JSONTiddlerWidget.tid +5 -4
- package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +4 -1
- package/editions/tw5.com/tiddlers/widgets/ListWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +4 -4
- package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +1 -0
- package/editions/tw5.com/tiddlers/widgets/SetWidget.tid +3 -1
- package/editions/tw5.com/tiddlers/widgets/TranscludeWidget.tid +2 -5
- package/editions/tw5.com/tiddlers/wikitext/Code Blocks in WikiText.tid +4 -7
- package/editions/tw5.com/tiddlers/wikitext/Dashes in WikiText.tid +7 -3
- package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +7 -7
- package/editions/tw5.com/tiddlers/wikitext/Headings in WikiText.tid +3 -3
- package/editions/tw5.com/tiddlers/wikitext/Horizontal Rules in WikiText.tid +3 -5
- 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 +13 -47
- package/editions/tw5.com/tiddlers/wikitext/Utility Classes.tid +20 -0
- package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +4 -4
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +2 -2
- package/editions/{katexdemo → twitter-archivist}/tiddlers/DefaultTiddlers.tid +1 -2
- 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/EditTemplate.multids +1 -0
- package/languages/de-DE/Help/commands.tid +14 -0
- package/languages/de-DE/Help/render.tid +2 -1
- package/languages/de-DE/Misc.multids +1 -0
- package/languages/de-DE/SideBar.multids +1 -0
- package/languages/el-GR/ControlPanel.multids +1 -1
- package/languages/es-ES/Buttons.multids +89 -87
- package/languages/es-ES/ControlPanel.multids +18 -1
- package/languages/es-ES/Docs/PaletteColours.multids +2 -2
- package/languages/es-ES/EditTemplate.multids +3 -0
- package/languages/es-ES/Fields.multids +4 -3
- package/languages/es-ES/GettingStarted.tid +4 -3
- 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 +19 -1
- package/languages/fr-FR/EditTemplate.multids +1 -0
- package/languages/fr-FR/Fields.multids +4 -2
- package/languages/fr-FR/Help/default.tid +4 -1
- package/languages/fr-FR/Help/render.tid +2 -1
- package/languages/fr-FR/Misc.multids +4 -3
- package/languages/fr-FR/SideBar.multids +1 -0
- 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/Buttons.multids +147 -30
- package/languages/ja-JP/ControlPanel.multids +176 -38
- package/languages/ja-JP/CoreReadMe.tid +2 -2
- package/languages/ja-JP/Dates.multids +24 -24
- package/languages/ja-JP/Docs/ModuleTypes.multids +3 -3
- package/languages/ja-JP/Docs/PaletteColours.multids +18 -18
- package/languages/ja-JP/EditTemplate.multids +23 -7
- package/languages/ja-JP/Exporters.multids +1 -1
- package/languages/ja-JP/Fields.multids +28 -23
- package/languages/ja-JP/Filters.multids +12 -9
- package/languages/ja-JP/GettingStarted.tid +6 -6
- package/languages/ja-JP/Help/build.tid +2 -2
- package/languages/ja-JP/Help/editions.tid +6 -2
- package/languages/ja-JP/Help/help.tid +1 -1
- package/languages/ja-JP/Help/init.tid +2 -2
- package/languages/ja-JP/Help/load.tid +2 -2
- package/languages/ja-JP/Help/makelibrary.tid +3 -3
- package/languages/ja-JP/Help/output.tid +2 -2
- package/languages/ja-JP/Help/rendertiddler.tid +2 -2
- package/languages/ja-JP/Help/rendertiddlers.tid +2 -2
- package/languages/ja-JP/Help/savetiddler.tid +2 -2
- package/languages/ja-JP/Help/savetiddlers.tid +12 -2
- package/languages/ja-JP/Help/server.tid +6 -6
- package/languages/ja-JP/Help/setfield.tid +7 -7
- package/languages/ja-JP/Help/unpackplugin.tid +2 -2
- package/languages/ja-JP/Help/verbose.tid +6 -2
- package/languages/ja-JP/Help/version.tid +2 -2
- package/languages/ja-JP/Import.multids +27 -8
- package/languages/ja-JP/Misc.multids +98 -11
- package/languages/ja-JP/Modals/Download.tid +2 -2
- package/languages/ja-JP/Notifications.multids +2 -2
- package/languages/ja-JP/Search.multids +8 -4
- package/languages/ja-JP/SideBar.multids +6 -4
- package/languages/ja-JP/SiteSubtitle.tid +1 -1
- package/languages/ja-JP/SiteTitle.tid +1 -1
- package/languages/ja-JP/TiddlerInfo.multids +10 -10
- package/languages/ja-JP/Types/application%2Fjavascript.tid +1 -1
- package/languages/ja-JP/Types/image%2Fgif.tid +1 -1
- package/languages/ja-JP/Types/image%2Fjpeg.tid +1 -1
- package/languages/ja-JP/Types/image%2Fpng.tid +1 -1
- package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +1 -1
- package/languages/ja-JP/Types/image%2Fx-icon.tid +1 -1
- package/languages/ja-JP/Types/text%2Fcss.tid +1 -1
- package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +1 -1
- package/languages/ja-JP/plugin.info +1 -1
- 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 +29 -25
- package/languages/pl-PL/EditTemplate.multids +1 -0
- package/languages/pl-PL/Fields.multids +3 -3
- package/languages/pl-PL/GettingStarted.tid +4 -3
- package/languages/pl-PL/Help/commands.tid +18 -0
- package/languages/pl-PL/Help/default.tid +4 -1
- package/languages/pl-PL/Help/render.tid +2 -2
- package/languages/pl-PL/Import.multids +3 -3
- package/languages/pl-PL/Misc.multids +1 -0
- package/languages/pl-PL/SideBar.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/EditTemplate.multids +1 -0
- 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/default.tid +4 -1
- 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/render.tid +1 -0
- 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/SideBar.multids +1 -0
- 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/EditTemplate.multids +1 -0
- 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/Help/default.tid +4 -1
- package/languages/zh-Hant/Help/render.tid +1 -0
- package/languages/zh-Hant/Misc.multids +1 -0
- package/languages/zh-Hant/SideBar.multids +1 -0
- package/licenses/cla-individual.md +14 -0
- package/package.json +1 -1
- package/plugins/tiddlywiki/browser-sniff/browser.js +5 -1
- package/plugins/tiddlywiki/browser-sniff/usage.tid +1 -0
- package/plugins/tiddlywiki/browser-storage/rawmarkup.js +18 -1
- package/plugins/tiddlywiki/browser-storage/readme.tid +0 -1
- package/plugins/tiddlywiki/browser-storage/settings.tid +5 -1
- package/plugins/tiddlywiki/browser-storage/startup.js +14 -9
- package/plugins/tiddlywiki/codemirror/engine.js +4 -0
- package/plugins/tiddlywiki/dynannotate/docs/readme.tid +72 -8
- package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +13 -2
- package/plugins/tiddlywiki/dynannotate/modules/legacy-selection-tracker.js +104 -0
- package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +144 -89
- package/plugins/tiddlywiki/dynannotate/modules/startup.js +40 -0
- 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/{editions/katexdemo/tiddlers → plugins/tiddlywiki/katex}/ImplementationNotes.tid +3 -3
- package/plugins/tiddlywiki/katex/developer.tid +58 -0
- package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -0
- 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/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/plugin.info +1 -1
- package/plugins/tiddlywiki/katex/readme.tid +1 -1
- package/plugins/tiddlywiki/katex/snippets/logo.tid +4 -0
- package/plugins/tiddlywiki/katex/snippets/math.tid +8 -0
- package/plugins/tiddlywiki/katex/styles.tid +7 -0
- package/plugins/tiddlywiki/katex/usage.tid +18 -2
- package/plugins/tiddlywiki/markdown/EditorToolbar/link-dropdown.tid +73 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/link.tid +11 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/linkify.tid +15 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/mono-block.tid +17 -0
- package/plugins/tiddlywiki/markdown/KeyboardShortcuts/new-markdown-tiddler.tid +8 -0
- package/plugins/tiddlywiki/markdown/config.multids +5 -0
- package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +37 -0
- package/plugins/tiddlywiki/markdown/images/markdown-linkify.tid +6 -0
- package/plugins/tiddlywiki/menubar/items/search.tid +2 -0
- package/plugins/tiddlywiki/tiddlyweb/save-wiki-button.tid +1 -1
- 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 +5 -3
- package/themes/tiddlywiki/vanilla/base.tid +152 -13
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -43
- package/editions/fr-FR/tiddlers/$__core_ui_SideBar_Open.tid +0 -15
- package/editions/fr-FR/tiddlers/$__core_ui_TagTemplate.tid +0 -33
- package/editions/fr-FR/tiddlers/Horizontal Rules in WikiText.tid +0 -17
- package/editions/fr-FR/tiddlers/Installing TiddlyWiki on Node.js.tid +0 -23
- package/editions/fr-FR/tiddlers/Macro_Calls_in_WikiText.tid +0 -22
- package/editions/fr-FR/tiddlers/Pragma.tid +0 -17
- package/editions/fr-FR/tiddlers/Saving on Android.tid +0 -10
- package/editions/fr-FR/tiddlers/Saving on InternetExplorer.tid +0 -11
- package/editions/fr-FR/tiddlers/Saving on Safari.tid +0 -24
- package/editions/fr-FR/tiddlers/Saving on iPad_iPhone.tid +0 -23
- package/editions/fr-FR/tiddlers/Saving with TiddlyFox.tid +0 -24
- package/editions/fr-FR/tiddlers/Saving with TiddlyIE.tid +0 -19
- package/editions/fr-FR/tiddlers/Saving_on_a_PHP_Server.tid +0 -30
- package/editions/fr-FR/tiddlers/Tables_in_WikiText.tid +0 -102
- package/editions/fr-FR/tiddlers/TiddlyDesktop.tid +0 -23
- package/editions/fr-FR/tiddlers/TiddlyDesktop_Releases.tid +0 -9
- package/editions/fr-FR/tiddlers/TiddlyWiki on Node.js.tid +0 -18
- package/editions/fr-FR/tiddlers/TranscludeWidget.tid +0 -73
- package/editions/fr-FR/tiddlers/Widgets_in_WikiText.tid +0 -30
- package/editions/prerelease/tiddlers/Release 5.2.3.tid +0 -58
- 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
- package/plugins/tiddlywiki/katex/files/README.md +0 -119
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/katex.css +0 -1079
- package/plugins/tiddlywiki/katex/files/katex.js +0 -18183
- package/plugins/tiddlywiki/katex/files/mhchem.min.js +0 -1
@@ -2,12 +2,8 @@ title: $:/language/Buttons/
|
|
2
2
|
|
3
3
|
AdvancedSearch/Caption: Búsqueda avanzada
|
4
4
|
AdvancedSearch/Hint: Búsqueda avanzada
|
5
|
-
Bold/Caption: Negrita
|
6
|
-
Bold/Hint: Aplicar formato de negrita a la selección
|
7
5
|
Cancel/Caption: Cancelar
|
8
6
|
Cancel/Hint: Descarta los cambios
|
9
|
-
Clear/Caption: Limpiar
|
10
|
-
Clear/Hint: Limpiar imagen a color solido
|
11
7
|
Clone/Caption: Clonar
|
12
8
|
Clone/Hint: Hace una copia exacta de este tiddler
|
13
9
|
Close/Caption: Cerrar
|
@@ -22,45 +18,114 @@ CopyToClipboard/Caption: copiar a portapapeles
|
|
22
18
|
CopyToClipboard/Hint: Copia este texto al portapapeles
|
23
19
|
Delete/Caption: Borrar
|
24
20
|
Delete/Hint: Borra este tiddler
|
21
|
+
DeleteTiddlers/Caption: borrar tiddlers
|
22
|
+
DeleteTiddlers/Hint: Borrar tiddlers
|
25
23
|
Edit/Caption: Editar
|
26
24
|
Edit/Hint: Permite editar este tiddler
|
27
|
-
EditorHeight/Caption: Altura del editor
|
28
|
-
EditorHeight/Caption/Auto: Ajustar al contenido
|
29
|
-
EditorHeight/Caption/Fixed: Altura fija
|
30
|
-
EditorHeight/Hint: Determina la altura del cuadro de edición
|
31
25
|
Encryption/Caption: Cifrado
|
26
|
+
Encryption/Hint: Asigna o revoca la contraseña de cifrado para este wiki
|
32
27
|
Encryption/ClearPassword/Caption: Borrar contraseña
|
33
28
|
Encryption/ClearPassword/Hint: Borra la contraseña actual y guarda este wiki sin cifrar
|
34
|
-
Encryption/Hint: Asigna o revoca la contraseña de cifrado para este wiki
|
35
29
|
Encryption/SetPassword/Caption: Asignar contraseña
|
36
30
|
Encryption/SetPassword/Hint: Asigna contraseña de cifrado
|
37
|
-
Excise/Caption: Escindir
|
38
|
-
Excise/Caption/Excise: Escindir
|
39
|
-
Excise/Caption/MacroName: Nombre de la macro
|
40
|
-
Excise/Caption/NewTitle: Título del nuevo tiddler
|
41
|
-
Excise/Caption/Replace: Reemplazar texto escindido con:
|
42
|
-
Excise/Caption/Replace/Link: enlace
|
43
|
-
Excise/Caption/Replace/Macro: macro
|
44
|
-
Excise/Caption/Replace/Transclusion: transclusión
|
45
|
-
Excise/Caption/Tag: Etiqueta el nuevo tiddler con el título de este
|
46
|
-
Excise/Caption/TiddlerExists: ¡Atención! El tiddler ya existe
|
47
|
-
Excise/Hint: Corta el texto seleccionado y lo pega en un tiddler nuevo
|
48
31
|
ExportPage/Caption: Exportar todos
|
49
32
|
ExportPage/Hint: Exporta todos los tiddlers
|
50
33
|
ExportTiddler/Caption: Exportar tiddler
|
51
34
|
ExportTiddler/Hint: Exporta este tiddler
|
52
35
|
ExportTiddlers/Caption: Exportar tiddlers
|
53
36
|
ExportTiddlers/Hint: Exporta el grupo de tiddlers
|
37
|
+
SidebarSearch/Hint: Selecciona el campo de búsqueda de la barra lateral
|
54
38
|
Fold/Caption: Comprimir tiddler
|
39
|
+
Fold/Hint: Comprime la vista del tiddler ocultando el cuerpo y sólo muestra el título
|
55
40
|
Fold/FoldBar/Caption: Barra de vista comprimida
|
56
41
|
Fold/FoldBar/Hint: Barras opcionales para comprimir y desplegar tiddlers
|
57
|
-
|
58
|
-
|
59
|
-
FoldAll/Hint: Comprime la vista de todos los tiddlers abiertos
|
42
|
+
Unfold/Caption: Desplegar tiddler
|
43
|
+
Unfold/Hint: Despliega el cuerpo de este tiddler y muestra su contenido
|
60
44
|
FoldOthers/Caption: Comprimir los demás
|
61
45
|
FoldOthers/Hint: Comprime la vista de todos los tiddlers abiertos excepto este
|
46
|
+
FoldAll/Caption: Comprimir todos
|
47
|
+
FoldAll/Hint: Comprime la vista de todos los tiddlers abiertos
|
48
|
+
UnfoldAll/Caption: Desplegar todos
|
49
|
+
UnfoldAll/Hint: Despliega y muestra el contenido de todos los tiddlers abiertos
|
62
50
|
FullScreen/Caption: Pantalla completa
|
63
51
|
FullScreen/Hint: Entra y sale del modo de pantalla completa
|
52
|
+
Help/Caption: Ayuda
|
53
|
+
Help/Hint: Muestra el panel de ayuda
|
54
|
+
Import/Caption: Importar
|
55
|
+
Import/Hint: Importa multitud de tipos de archivo, incluyendo textos, imágenes, TiddlyWiki y JSON
|
56
|
+
Info/Caption: Información
|
57
|
+
Info/Hint: Muestra información sobre este tiddler
|
58
|
+
Home/Caption: Inicio
|
59
|
+
Home/Hint: Cierra todos los tiddlers abiertos y abre los que se muestran por defecto al inicio
|
60
|
+
Language/Caption: Idioma
|
61
|
+
Language/Hint: Selecciona idioma de la interfaz de usuario
|
62
|
+
Manager/Caption: Administrador tiddler
|
63
|
+
Manager/Hint: Abre el administrador del tiddler
|
64
|
+
More/Caption: Más
|
65
|
+
More/Hint: Otras acciones
|
66
|
+
NewHere/Caption: Nuevo aquí
|
67
|
+
NewHere/Hint: Crea un nuevo tiddler etiquetado con el título de este tiddler
|
68
|
+
NewJournal/Caption: Nueva entrada
|
69
|
+
NewJournal/Hint: Crea una nueva entrada de diario
|
70
|
+
NewJournalHere/Caption: Entrada nueva aquí
|
71
|
+
NewJournalHere/Hint: Crea una nueva entrada de diario etiquetada con el título de este tiddler
|
72
|
+
NewImage/Caption: Nueva imagen
|
73
|
+
NewImage/Hint: Crea un nuevo tiddler de imagen
|
74
|
+
NewMarkdown/Caption: Nuevo tiddler en Markdown
|
75
|
+
NewMarkdown/Hint: Crea un nuevo tiddler en Markdown
|
76
|
+
NewTiddler/Caption: Nuevo tiddler
|
77
|
+
NewTiddler/Hint: Crea un tiddler nuevo
|
78
|
+
OpenWindow/Caption: Abrir en ventana nueva
|
79
|
+
OpenWindow/Hint: Abre el tiddler en una nueva ventana
|
80
|
+
Palette/Caption: Paleta
|
81
|
+
Palette/Hint: Selecciona la paleta de color
|
82
|
+
Permalink/Caption: Enlace permanente
|
83
|
+
Permalink/Hint: Crea en la barra de direcciones del navegador un enlace directo a este tiddler
|
84
|
+
Permaview/Caption: Permaview
|
85
|
+
Permaview/Hint: Crea en la barra de direcciones del navegador un enlace directo a todos los tiddlers abiertos
|
86
|
+
Print/Caption: Imprimir página
|
87
|
+
Print/Hint: Imprime la página actual
|
88
|
+
Refresh/Caption: Recargar
|
89
|
+
Refresh/Hint: Actualiza completamente este wiki
|
90
|
+
Save/Caption: Vale
|
91
|
+
Save/Hint: Confirma y guarda los cambios realizados en el tiddler
|
92
|
+
SaveWiki/Caption: Guardar cambios
|
93
|
+
SaveWiki/Hint: Confirma y guarda todos los cambios realizados en el wiki
|
94
|
+
StoryView/Caption: Vista
|
95
|
+
StoryView/Hint: Selecciona el modo de visualización de los tiddlers
|
96
|
+
HideSideBar/Caption: Ocultar barra lateral
|
97
|
+
HideSideBar/Hint: Oculta la barra lateral
|
98
|
+
ShowSideBar/Caption: Mostrar barra lateral
|
99
|
+
ShowSideBar/Hint: Muestra la barra lateral
|
100
|
+
TagManager/Caption: Administrador de etiquetas
|
101
|
+
TagManager/Hint: Abre el gestor de etiquetas
|
102
|
+
Timestamp/Caption: Marcas de tiempo
|
103
|
+
Timestamp/Hint: Elige si las modificaciones actualizan las marcas de tiempo
|
104
|
+
Timestamp/On/Caption: las marcas de tiempo están activadas
|
105
|
+
Timestamp/On/Hint: Actualizar las marcas de tiempo cuando se modifican los tiddlers
|
106
|
+
Timestamp/Off/Caption: las marcas de tiempo están desactivadas
|
107
|
+
Timestamp/Off/Hint: No actualizar las marcas de tiempo cuando se modifican los tiddlers
|
108
|
+
Theme/Caption: Tema
|
109
|
+
Theme/Hint: Selecciona un estilo visual para el wiki
|
110
|
+
Bold/Caption: Negrita
|
111
|
+
Bold/Hint: Aplicar formato de negrita a la selección
|
112
|
+
Clear/Caption: Limpiar
|
113
|
+
Clear/Hint: Limpiar imagen a color solido
|
114
|
+
EditorHeight/Caption: Altura del editor
|
115
|
+
EditorHeight/Caption/Auto: Ajustar al contenido
|
116
|
+
EditorHeight/Caption/Fixed: Altura fija
|
117
|
+
EditorHeight/Hint: Determina la altura del cuadro de edición
|
118
|
+
Excise/Caption: Escindir
|
119
|
+
Excise/Caption/Excise: Escindir
|
120
|
+
Excise/Caption/MacroName: Nombre de la macro
|
121
|
+
Excise/Caption/NewTitle: Título del nuevo tiddler
|
122
|
+
Excise/Caption/Replace: Reemplazar texto escindido con:
|
123
|
+
Excise/Caption/Replace/Macro: macro
|
124
|
+
Excise/Caption/Replace/Link: enlace
|
125
|
+
Excise/Caption/Replace/Transclusion: transclusión
|
126
|
+
Excise/Caption/Tag: Etiqueta el nuevo tiddler con el título de este
|
127
|
+
Excise/Caption/TiddlerExists: ¡Atención! El tiddler ya existe
|
128
|
+
Excise/Hint: Corta el texto seleccionado y lo pega en un tiddler nuevo
|
64
129
|
Heading1/Caption: Encabezamiento 1
|
65
130
|
Heading1/Hint: Aplica formato de encabezamiento 1 a la selección
|
66
131
|
Heading2/Caption: Encabezamiento 2
|
@@ -73,20 +138,8 @@ Heading5/Caption: Encabezamiento 5
|
|
73
138
|
Heading5/Hint: Aplica formato de encabezamiento 5 a la selección
|
74
139
|
Heading6/Caption: Encabezamiento 6
|
75
140
|
Heading6/Hint: Aplica formato de encabezamiento 6 a la selección
|
76
|
-
Help/Caption: Ayuda
|
77
|
-
Help/Hint: Muestra el panel de ayuda
|
78
|
-
HideSideBar/Caption: Ocultar barra lateral
|
79
|
-
HideSideBar/Hint: Oculta la barra lateral
|
80
|
-
Home/Caption: Inicio
|
81
|
-
Home/Hint: Cierra todos los tiddlers abiertos y abre los que se muestran por defecto al inicio
|
82
|
-
Import/Caption: Importar
|
83
|
-
Import/Hint: Importa multitud de tipos de archivo, incluyendo textos, imágenes, TiddlyWiki y JSON
|
84
|
-
Info/Caption: Información
|
85
|
-
Info/Hint: Muestra información sobre este tiddler
|
86
141
|
Italic/Caption: Cursiva
|
87
142
|
Italic/Hint: Aplica formato de cursiva a la selección
|
88
|
-
Language/Caption: Idioma
|
89
|
-
Language/Hint: Selecciona idioma de la interfaz de usuario
|
90
143
|
LineWidth/Caption: Ancho del trazo
|
91
144
|
LineWidth/Hint: Establece el ancho del trazo para pintar
|
92
145
|
Link/Caption: Enlace
|
@@ -97,59 +150,24 @@ ListBullet/Caption: Lista con viñetas
|
|
97
150
|
ListBullet/Hint: Aplica formato de lista con viñetas a la selección
|
98
151
|
ListNumber/Caption: Lista numerada
|
99
152
|
ListNumber/Hint: Aplica formato de lista numerada a la selección
|
100
|
-
Manager/Caption: Administrador tiddler
|
101
|
-
Manager/Hint: Abre el administrador del tiddler
|
102
153
|
MonoBlock/Caption: Bloque monoespaciado
|
103
154
|
MonoBlock/Hint: Aplica formato de bloque monoespaciado a la selección
|
104
155
|
MonoLine/Caption: Monoespacio
|
105
156
|
MonoLine/Hint: Aplica formato de monoespacio a la selección
|
106
|
-
More/Caption: Más
|
107
|
-
More/Hint: Otras acciones
|
108
|
-
NewHere/Caption: Nuevo aquí
|
109
|
-
NewHere/Hint: Crea un nuevo tiddler etiquetado con el título de este tiddler
|
110
|
-
NewImage/Caption: Nueva imagen
|
111
|
-
NewImage/Hint: Crea un nuevo tiddler de imagen
|
112
|
-
NewJournal/Caption: Nueva entrada
|
113
|
-
NewJournal/Hint: Crea una nueva entrada de diario
|
114
|
-
NewJournalHere/Caption: Entrada nueva aquí
|
115
|
-
NewJournalHere/Hint: Crea una nueva entrada de diario etiquetada con el título de este tiddler
|
116
|
-
NewMarkdown/Caption: Nuevo tiddler en Markdown
|
117
|
-
NewMarkdown/Hint: Crea un nuevo tiddler en Markdown
|
118
|
-
NewTiddler/Caption: Nuevo tiddler
|
119
|
-
NewTiddler/Hint: Crea un tiddler nuevo
|
120
157
|
Opacity/Caption: Opacidad
|
121
158
|
Opacity/Hint: Establece la opacidad del trazo
|
122
|
-
OpenWindow/Caption: Abrir en ventana nueva
|
123
|
-
OpenWindow/Hint: Abre el tiddler en una nueva ventana
|
124
159
|
Paint/Caption: Color del trazo
|
125
160
|
Paint/Hint: Establece el color del trazo
|
126
|
-
Palette/Caption: Paleta
|
127
|
-
Palette/Hint: Selecciona la paleta de color
|
128
|
-
Permalink/Caption: Enlace permanente
|
129
|
-
Permalink/Hint: Crea en la barra de direcciones del navegador un enlace directo a este tiddler
|
130
|
-
Permaview/Caption: Permaview
|
131
|
-
Permaview/Hint: Crea en la barra de direcciones del navegador un enlace directo a todos los tiddlers abiertos
|
132
161
|
Picture/Caption: Imagen
|
133
162
|
Picture/Hint: Inserta imagen
|
134
163
|
Preview/Caption: Vista previa
|
135
164
|
Preview/Hint: Muestra el panel de vista previa
|
136
165
|
PreviewType/Caption: Tipo de vista previa
|
137
166
|
PreviewType/Hint: Selecciona el tipo de vista previa
|
138
|
-
Print/Caption: Imprimir página
|
139
|
-
Print/Hint: Imprime la página actual
|
140
167
|
Quote/Caption: Bloque de cita
|
141
168
|
Quote/Hint: Aplica formato de bloque de cita a la selección
|
142
|
-
Refresh/Caption: Recargar
|
143
|
-
Refresh/Hint: Actualiza completamente este wiki
|
144
169
|
RotateLeft/Caption: girar a la izquierda
|
145
170
|
RotateLeft/Hint: Girar la imagen a la izquierda 90 grados
|
146
|
-
Save/Caption: Vale
|
147
|
-
Save/Hint: Confirma y guarda los cambios realizados en el tiddler
|
148
|
-
SaveWiki/Caption: Guardar cambios
|
149
|
-
SaveWiki/Hint: Confirma y guarda todos los cambios realizados en el wiki
|
150
|
-
ShowSideBar/Caption: Mostrar barra lateral
|
151
|
-
ShowSideBar/Hint: Muestra la barra lateral
|
152
|
-
SidebarSearch/Hint: Selecciona el campo de búsqueda de la barra lateral
|
153
171
|
Size/Caption: Tamaño de imagen
|
154
172
|
Size/Caption/Height: Altura:
|
155
173
|
Size/Caption/Resize: Cambiar tamaño
|
@@ -158,32 +176,16 @@ Size/Hint: Establece tamaño de la imagen
|
|
158
176
|
Stamp/Caption: Snippet
|
159
177
|
Stamp/Caption/New: Añade el tuyo propio
|
160
178
|
Stamp/Hint: Inserta un snippet o fragmento de texto preconfigurado
|
161
|
-
Stamp/New/Text: Texto del snippet (Recuerda añadir un título descriptivo en el campo "caption" ).
|
162
179
|
Stamp/New/Title: Nombre para mostrar en el menú
|
163
|
-
|
164
|
-
StoryView/Hint: Selecciona el modo de visualización de los tiddlers
|
180
|
+
Stamp/New/Text: Texto del snippet (Recuerda añadir un título descriptivo en el campo "caption" ).
|
165
181
|
Strikethrough/Caption: Tachado
|
166
182
|
Strikethrough/Hint: Aplica formado de tachado a la selección
|
167
183
|
Subscript/Caption: Subíndice
|
168
184
|
Subscript/Hint: Aplica formato de subíndice a la selección
|
169
185
|
Superscript/Caption: Superíndice
|
170
186
|
Superscript/Hint: Aplica formato de superíndice a la selección
|
171
|
-
TagManager/Caption: Administrador de etiquetas
|
172
|
-
TagManager/Hint: Abre el gestor de etiquetas
|
173
|
-
Theme/Caption: Tema
|
174
|
-
Theme/Hint: Selecciona un estilo visual para el wiki
|
175
|
-
Timestamp/Caption: Marcas de tiempo
|
176
|
-
Timestamp/Hint: Elige si las modificaciones actualizan las marcas de tiempo
|
177
|
-
Timestamp/Off/Caption: las marcas de tiempo están desactivadas
|
178
|
-
Timestamp/Off/Hint: No actualizar las marcas de tiempo cuando se modifican los tiddlers
|
179
|
-
Timestamp/On/Caption: las marcas de tiempo están activadas
|
180
|
-
Timestamp/On/Hint: Actualizar las marcas de tiempo cuando se modifican los tiddlers
|
181
187
|
ToggleSidebar/Hint: Alternar la visibilidad de la barra lateral
|
182
188
|
Transcludify/Caption: Transclusión
|
183
189
|
Transcludify/Hint: Envolver la selección entre llaves
|
184
190
|
Underline/Caption: Subrayado
|
185
191
|
Underline/Hint: Aplica formato de subrayado a la selección
|
186
|
-
Unfold/Caption: Desplegar tiddler
|
187
|
-
Unfold/Hint: Despliega el cuerpo de este tiddler y muestra su contenido
|
188
|
-
UnfoldAll/Caption: Desplegar todos
|
189
|
-
UnfoldAll/Hint: Despliega y muestra el contenido de todos los tiddlers abiertos
|
@@ -7,7 +7,7 @@ Appearance/Hint: Personaliza la apariencia de TiddlyWiki
|
|
7
7
|
Basics/AnimDuration/Prompt: Duración de la animación
|
8
8
|
Basics/AutoFocus/Prompt: Campo de enfoque predeterminado para nuevos tiddlers
|
9
9
|
Basics/Caption: Básico
|
10
|
-
Basics/DefaultTiddlers/BottomHint: Usa [[corchetes dobles]] para títulos con espacios. También puedes mostrarlos ordenados
|
10
|
+
Basics/DefaultTiddlers/BottomHint: Usa [[corchetes dobles]] para títulos con espacios. También puedes mostrarlos ordenados {{de más reciente a más antiguo||$:/snippets/retain-story-ordering-button}}
|
11
11
|
Basics/DefaultTiddlers/Prompt: Tiddlers por defecto
|
12
12
|
Basics/DefaultTiddlers/TopHint: Escoge qué tiddlers se muestran al inicio
|
13
13
|
Basics/Language/Prompt: ¡Hola! Selecciona idioma actual
|
@@ -27,10 +27,17 @@ Basics/Tiddlers/Prompt: Número de tiddlers
|
|
27
27
|
Basics/Title/Prompt: Título de este ~TiddlyWiki:
|
28
28
|
Basics/Username/Prompt: Nombre de usuario
|
29
29
|
Basics/Version/Prompt: Versión de ~TiddlyWiki
|
30
|
+
Cascades/Caption: Cascadas
|
31
|
+
Cascades/Hint: Estas reglas globales se utilizan para elegir dinámicamente ciertas plantillas. El resultado de la cascada es el resultado del primer filtro en la secuencia que devuelve un resultado
|
32
|
+
Cascades/TagPrompt: Filtros etiquetados <$macrocall $name="tag" tag=<<currentTiddler>>/>
|
30
33
|
EditorTypes/Caption: Tipos de editor
|
31
34
|
EditorTypes/Editor/Caption: Editor
|
32
35
|
EditorTypes/Hint: Editores usados para ciertos tipos específicos de tiddler
|
33
36
|
EditorTypes/Type/Caption: Tipo
|
37
|
+
EditTemplateBody/Caption: Editar Cuerpo de Plantilla
|
38
|
+
EditTemplateBody/Hint: La plantilla de edición predeterminada utiliza esta cascada de reglas para elegir dinámicamente la plantilla para editar el cuerpo de un tiddler.
|
39
|
+
FieldEditor/Caption: Editor de Campos
|
40
|
+
FieldEditor/Hint: Esta cascada de reglas se usa para elegir dinámicamente la plantilla para representar un campo en función de su nombre. Se utiliza dentro de la plantilla de edición.
|
34
41
|
Info/Caption: Información
|
35
42
|
Info/Hint: Información acerca de este TiddlyWiki
|
36
43
|
KeyboardShortcuts/Add/Caption: Añadir atajo
|
@@ -191,6 +198,8 @@ Settings/TitleLinks/Yes/Description: Mostrar como enlaces
|
|
191
198
|
Settings/MissingLinks/Caption: Enlaces Wiki
|
192
199
|
Settings/MissingLinks/Hint: Elige si quieres vincular a tiddlers que aún no existen
|
193
200
|
Settings/MissingLinks/Description: Habilitar enlaces a tiddlers inexistentes
|
201
|
+
StoryTiddler/Caption: Tiddler de Historia
|
202
|
+
StoryTiddler/Hint: Esta cascada de reglas se usa para elegir dinámicamente la plantilla para mostrar un tiddler en el río de la historia.
|
194
203
|
StoryView/Caption: Vista
|
195
204
|
StoryView/Prompt: Vista actual
|
196
205
|
Stylesheets/Caption: Hojas de estilo
|
@@ -201,6 +210,10 @@ Theme/Caption: Tema
|
|
201
210
|
Theme/Prompt: Tema actual
|
202
211
|
TiddlerFields/Caption: Campos de tiddler
|
203
212
|
TiddlerFields/Hint: Esta es la colección completa de campos de tiddler (TiddlerFields) actualmente en uso en este wiki, que incluye los tiddlers de sistema, pero no los ocultos
|
213
|
+
TiddlerColour/Caption: Color del Tiddler
|
214
|
+
TiddlerColour/Hint: Esta cascada de reglas se utiliza para elegir dinámicamente el color de un tiddler (utilizado para el icono y la etiqueta asociada).
|
215
|
+
TiddlerIcon/Caption: Icono del Tiddler
|
216
|
+
TiddlerIcon/Hint: Esta cascada de reglas se utiliza para elegir dinámicamente el icono de un tiddler.
|
204
217
|
Toolbars/Caption: Barras de herramientas
|
205
218
|
Toolbars/EditToolbar/Caption: Barra de edición
|
206
219
|
Toolbars/EditToolbar/Hint: Selecciona qué botones mostrar en modo de edición
|
@@ -212,3 +225,7 @@ Toolbars/EditorToolbar/Hint: Elige qué botones se muestran en la barra de herra
|
|
212
225
|
Toolbars/ViewToolbar/Caption: Barra de visualización
|
213
226
|
Toolbars/ViewToolbar/Hint: Selecciona qué botones mostrar en modo de visualización
|
214
227
|
Tools/Download/Full/Caption: Descargar el wiki completo
|
228
|
+
ViewTemplateBody/Caption: Ver el Cuerpo de la Plantilla
|
229
|
+
ViewTemplateBody/Hint: La plantilla de vista predeterminada utiliza esta cascada de reglas para elegir dinámicamente la plantilla para mostrar el cuerpo de un tiddler.
|
230
|
+
ViewTemplateTitle/Caption: Ver el Título de la Plantilla
|
231
|
+
ViewTemplateTitle/Hint: La plantilla de vista predeterminada utiliza esta cascada de reglas para elegir dinámicamente la plantilla para mostrar el título de un tiddler.
|
@@ -44,8 +44,8 @@ muted-foreground: Primario general silenciado
|
|
44
44
|
notification-background: Fondo Notificación
|
45
45
|
notification-border: Borde Notificación
|
46
46
|
page-background: Fondo Página
|
47
|
-
pre-background:
|
48
|
-
pre-border:
|
47
|
+
pre-background: Fondo de código preformateado
|
48
|
+
pre-border: Borde de código preformateado
|
49
49
|
primary: Primario general
|
50
50
|
select-tag-background: Fondo `<select>`
|
51
51
|
select-tag-foreground: Primario `<select>`
|
@@ -1,8 +1,11 @@
|
|
1
1
|
title: $:/language/EditTemplate/
|
2
2
|
|
3
|
+
Caption: Editor
|
3
4
|
Body/External/Hint: Este es un tiddler externo, es decir, guardado fuera del archivo TiddlyWiki principal <br> Puedes editar sus etiquetas y campos, pero no se puede editar directamente el contenido
|
4
5
|
Body/Placeholder: Escribe el texto aquí
|
5
6
|
Body/Preview/Type/Output: Visible
|
7
|
+
Body/Preview/Type/DiffShadow: diferencias con la copia (si las hay)
|
8
|
+
Body/Preview/Type/DiffCurrent: diferencias con el actual
|
6
9
|
Field/Remove/Caption: Eliminar campo
|
7
10
|
Field/Remove/Hint: Elimina el campo y su valor
|
8
11
|
Field/Dropdown/Caption: lista de campos
|
@@ -3,6 +3,7 @@ title: $:/language/Docs/Fields/
|
|
3
3
|
_canonical_uri: Dirección (URI) completa -absoluta o relativa- de un tiddler externo de imagen
|
4
4
|
bag: Nombre de la bolsa de la que procede un tiddler
|
5
5
|
caption: Texto que se muestra en una pestaña o botón, con independencia del título del tiddler que lo define
|
6
|
+
code-body: La plantilla de vista mostrará el tiddler como código si se establece en ''yes''
|
6
7
|
color: Valor CSS del color de fondo asociado a un tiddler
|
7
8
|
component: Nombre del componente responsable de un [[tiddler de alerta|AlertMechanism]]
|
8
9
|
current-tiddler: Usado para incluir el tiddler superior en una [[historia|HistoryMechanism]]
|
@@ -13,9 +14,9 @@ description: Descripción de un complemento, extensión, o diálogo modal
|
|
13
14
|
draft.of: Título del tiddler del que el actual es borrador
|
14
15
|
draft.title: Nuevo título propuesto para el presente borrador
|
15
16
|
footer: Texto al pie que figurará en un asistente
|
16
|
-
hide-body: La plantilla de vista ocultará los cuerpos de los tiddlers si se establece en
|
17
|
+
hide-body: La plantilla de vista ocultará los cuerpos de los tiddlers si se establece en ''yes''
|
17
18
|
icon: Nombre del tiddler que contiene el icono que se quiere asociar al presente tiddler
|
18
|
-
library: Si su valor es
|
19
|
+
library: Si su valor es ''yes'', indica que el tiddler debe guardarse como librería de JavaScript
|
19
20
|
list: Lista ordenada de tiddlers asociados al presente tiddler
|
20
21
|
list-before: Título del tiddler antes del que el presente será añadido a una lista<br> Si el campo existe pero está vacío, el tiddler se añadirá al principio de la lista
|
21
22
|
list-after: Título del tiddler tras el que el presente será añadido a una lista de tiddlers.
|
@@ -32,7 +33,7 @@ tags: Lista de etiquetas asignadas al tiddler
|
|
32
33
|
text: Texto principal de un tiddler
|
33
34
|
throttle.refresh: Si está presente, regula las actualizaciones de este tiddler
|
34
35
|
title: Nombre único de un tiddler
|
35
|
-
toc-link: Suprime el enlace del tiddler en la tabla de contenido si se establece en
|
36
|
+
toc-link: Suprime el enlace del tiddler en la tabla de contenido si se establece en ''no''
|
36
37
|
type: Tipo de contenido en un tiddler
|
37
38
|
version: Versión de un complemento o extensión
|
38
39
|
_is_skinny: Si está presente, indica que el campo de texto tiddler debe cargarse desde el servidor
|
@@ -11,9 +11,10 @@ Visita https://tiddlywiki.com/#GettingStarted para más información (en inglés
|
|
11
11
|
|
12
12
|
<div class="tc-control-panel">
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
|tc-table-no-border tc-first-col-min-width tc-first-link-nowrap|k
|
15
|
+
| <$link to="$:/SiteTitle"><<lingo Title/Prompt>></$link>|<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
16
|
+
| <$link to="$:/SiteSubtitle"><<lingo Subtitle/Prompt>></$link>|<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
17
|
+
|^ <$link to="$:/DefaultTiddlers"><<lingo DefaultTiddlers/Prompt>></$link><br><<lingo DefaultTiddlers/TopHint>>|<$edit tag="textarea" tiddler="$:/DefaultTiddlers"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |
|
17
18
|
</div>
|
18
19
|
|
19
20
|
Consulta más opciones en el [[panel de control|$:/ControlPanel]]
|
@@ -4,6 +4,7 @@ description:
|
|
4
4
|
\define commandTitle()
|
5
5
|
$:/language/Help/$(command)$
|
6
6
|
\end
|
7
|
+
\whitespace trim
|
7
8
|
```
|
8
9
|
Uso: tiddlywiki [<wikifolder>] [--<command> [<args>...]...]
|
9
10
|
```
|
@@ -12,7 +13,9 @@ Comandos disponibles:
|
|
12
13
|
|
13
14
|
<ul>
|
14
15
|
<$list filter="[commands[]sort[title]]" variable="command">
|
15
|
-
<li><$link to=<<commandTitle>>><$macrocall $name="command" $type="text/plain" $output="text/plain"/></$link>:
|
16
|
+
<li><$link to=<<commandTitle>>><$macrocall $name="command" $type="text/plain" $output="text/plain"/></$link>:
|
17
|
+
 
|
18
|
+
<$transclude tiddler=<<commandTitle>> field="description"/></li>
|
16
19
|
</$list>
|
17
20
|
</ul>
|
18
21
|
|
@@ -22,7 +22,6 @@ Todos los parámetros son opcionales con valores predeterminados seguros y se pu
|
|
22
22
|
* ''readers'' - lista separada por comas de los usuarios autorizados a leer de este wiki
|
23
23
|
* ''writers'' - lista separada por comas de los usuarios autorizados a escribir en este wiki
|
24
24
|
* ''csrf-disable'' - establecer a "yes" para deshabilitar las comprobaciones CSRF (el valor predeterminado es "no")
|
25
|
-
* ''sse-enabled'' - establecer a "yes" para habilitar los eventos enviados por el servidor (el valor predeterminado es "no")
|
26
25
|
* ''root-tiddler'' - el tiddler para servir en la raíz (por defecto es "$:/core/save/all")
|
27
26
|
* ''root-render-type'' - el tipo de contenido del tiddler raíz (por defecto es "text/plain")
|
28
27
|
* ''root-serve-type'' - el tipo de contenido con el que se debe servir el tiddler raíz (el valor predeterminado es "text/html")
|
@@ -31,5 +31,5 @@ Notas:
|
|
31
31
|
|
32
32
|
Ejemplos:
|
33
33
|
|
34
|
-
* `--render
|
35
|
-
|
34
|
+
* `--render '[!is[system]]' '[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]'` -- renders all non-system tiddlers as files in the subdirectory "tiddlers" with URL-encoded titles and the extension HTML
|
35
|
+
* `--render '.' 'tiddlers.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[tag[HelloThere]]'` -- renders the tiddlers tagged "HelloThere" to a JSON file named "tiddlers.json"
|
@@ -30,5 +30,5 @@ Upgrader/System/Warning: tiddler del sistema principal.
|
|
30
30
|
Upgrader/System/Alert: Estás a punto de importar un tiddler que sobrescribirá un tiddler del sistema principal. Esto no se recomienda ya que puede hacer que el sistema sea inestable.
|
31
31
|
Upgrader/ThemeTweaks/Created: Ajuste de tema migrado de <$text text=<<from>>/>
|
32
32
|
Upgrader/Tiddler/Disabled: Tiddler deshabilitado.
|
33
|
-
Upgrader/Tiddler/Selected:
|
33
|
+
Upgrader/Tiddler/Selected: Tiddler seleccionado.
|
34
34
|
Upgrader/Tiddler/Unselected: Tiddler no seleccionado.
|
@@ -8,13 +8,14 @@ CloseAll/Button: Cerrar todo
|
|
8
8
|
ColourPicker/Recent: Recientes:
|
9
9
|
ConfirmCancelTiddler: ¿Deseas descartar los cambios efectuados en "<$text text=<<title>>/>"?
|
10
10
|
ConfirmDeleteTiddler: ¿Deseas borrar "<$text text=<<title>>/>"?
|
11
|
+
ConfirmDeleteTiddlers: ¿Deseas borrar <<resultCount>> tiddler(s)?
|
11
12
|
ConfirmOverwriteTiddler: ¿Deseas sobrescribir "<$text text=<<title>>/>"?
|
12
13
|
ConfirmEditShadowTiddler: Estás a punto de editar un tiddler oculto<br> Todo cambio en él afectará al sistema por defecto y pondrá en riesgo futuras actualizaciones del sistema<br> ¿Estás seguro de querer editar "<$text text=<<title>>/>"?
|
13
14
|
ConfirmAction: ¿Desea continuar?
|
14
15
|
Count: Número
|
15
16
|
DefaultNewTiddlerTitle: Nuevo Tiddler
|
16
17
|
Diffs/CountMessage: <<diff-count>> diferencias
|
17
|
-
DropMessage: Suéltalo
|
18
|
+
DropMessage: Suéltalo ahora o pulsa ''ESC'' para cancelar
|
18
19
|
Encryption/Cancel: Cancelar
|
19
20
|
Encryption/ConfirmClearPassword: ¿Deseas borrar la contraseña? <br> Revocarás el cifrado que se aplica para guardar este wiki
|
20
21
|
Encryption/PromptSetPassword: Especifica nueva contraseña para este TiddlyWiki
|
@@ -6,7 +6,7 @@ Appearance/Caption: ظاهر
|
|
6
6
|
Appearance/Hint: روشهای تغییر ظاهر TiddlyWiki
|
7
7
|
Basics/AnimDuration/Prompt: طول زمان انیمیشن:
|
8
8
|
Basics/Caption: اساسیها
|
9
|
-
Basics/DefaultTiddlers/BottomHint: Use [[double square brackets]] for titles with spaces. Or you can choose to
|
9
|
+
Basics/DefaultTiddlers/BottomHint: Use [[double square brackets]] for titles with spaces. Or you can choose to {{retain story ordering||$:/snippets/retain-story-ordering-button}}
|
10
10
|
Basics/DefaultTiddlers/Prompt: تیدلرهای پیشفرض:
|
11
11
|
Basics/DefaultTiddlers/TopHint: انتخاب کن که کدوم تیدلرها در هنگام شروع نمایش داده بشن:
|
12
12
|
Basics/Language/Prompt: سلام! زبان حاضر:
|
@@ -18,6 +18,8 @@ CopyToClipboard/Caption: copier dans le presse-papier
|
|
18
18
|
CopyToClipboard/Hint: Copie ce texte dans le presse-papier
|
19
19
|
Delete/Caption: supprimer
|
20
20
|
Delete/Hint: Supprime ce tiddler
|
21
|
+
DeleteTiddlers/Caption: supprimer les tiddlers
|
22
|
+
DeleteTiddlers/Hint: Supprime ces tiddlers
|
21
23
|
Edit/Caption: éditer
|
22
24
|
Edit/Hint: Édite ce tiddler
|
23
25
|
Encryption/Caption: chiffrement
|
@@ -7,7 +7,7 @@ Appearance/Hint: Personnalisation de l'apparence de votre ~TiddlyWiki.
|
|
7
7
|
Basics/AnimDuration/Prompt: Durée de l'animation
|
8
8
|
Basics/AutoFocus/Prompt: Champ qui recevra le focus par défaut pour les nouveaux tiddlers
|
9
9
|
Basics/Caption: Fondamentaux
|
10
|
-
Basics/DefaultTiddlers/BottomHint: Utilisez les [[crochets doubles]] pour les titres contenant des espaces. Vous pouvez aussi décider de
|
10
|
+
Basics/DefaultTiddlers/BottomHint: Utilisez les [[crochets doubles]] pour les titres contenant des espaces. Vous pouvez aussi décider de {{Conserver le déroulé actuel||$:/snippets/retain-story-ordering-button}}
|
11
11
|
Basics/DefaultTiddlers/Prompt: Tiddlers par défaut
|
12
12
|
Basics/DefaultTiddlers/TopHint: Liste les tiddlers qui seront affichés au démarrage :
|
13
13
|
Basics/Language/Prompt: Bonjour ! Langue active :
|
@@ -27,10 +27,17 @@ Basics/Tiddlers/Prompt: Nombre de tiddlers :
|
|
27
27
|
Basics/Title/Prompt: Titre de ce ~TiddlyWiki :
|
28
28
|
Basics/Username/Prompt: Signer les modifications avec ce nom d'utilisateur :
|
29
29
|
Basics/Version/Prompt: Version de ~TiddlyWiki :
|
30
|
+
Cascades/Caption: Cascades
|
31
|
+
Cascades/Hint: Ces règles globales servent à choisir dynamiquement certains templates. Le résultat de la cascade est le résultat du premier filtre de la séquence qui retourne un résultat.
|
32
|
+
Cascades/TagPrompt: Filtres tagués <$macrocall $name="tag" tag=<<currentTiddler>>/>
|
30
33
|
EditorTypes/Caption: Types d'éditeur
|
31
34
|
EditorTypes/Editor/Caption: Éditeur
|
32
35
|
EditorTypes/Hint: Ces tiddlers déterminent l'éditeur à utiliser pour éditer tel ou tel type de tiddler.
|
33
36
|
EditorTypes/Type/Caption: Type
|
37
|
+
EditTemplateBody/Caption: Édition du corps
|
38
|
+
EditTemplateBody/Hint: Cette cascade de règles est utilisée par le template d'édition par défaut pour choisir dynamiquement le template à appliquer pour éditer le corps d'un tiddler.
|
39
|
+
FieldEditor/Caption: Édition des champs
|
40
|
+
FieldEditor/Hint: Cette cascade de règles sert à choisir dynamiquement le template de rendu d'un champ de tiddler en fonction de son nom. Il est utilisé dans le template d'édition.
|
34
41
|
Info/Caption: Info
|
35
42
|
Info/Hint: Information sur ce TiddlyWiki
|
36
43
|
KeyboardShortcuts/Add/Prompt: Entrez le raccourci ici
|
@@ -122,6 +129,7 @@ Saving/TiddlySpot/Advanced/Heading: Paramètres avancés
|
|
122
129
|
Saving/TiddlySpot/BackupDir: Dossier des //sauvegardes//
|
123
130
|
Saving/TiddlySpot/Backups: Sauvegardes
|
124
131
|
Saving/TiddlySpot/Caption: Enregistreur ~TiddlySpot
|
132
|
+
Saving/TiddlySpot/ControlPanel: Panneau de contrôle ~TiddlySpot
|
125
133
|
Saving/TiddlySpot/Description: Ces paramètres ne servent que lors de la sauvegarde vers [[TiddlySpot|http://tiddlyspot.com]], [[TiddlyHost|https://tiddlyhost.com]] ou vers un serveur distant compatible. Voir [[ici|https://github.com/simonbaird/tiddlyhost/wiki/TiddlySpot-Saver-configuration-for-Tiddlyhost-and-Tiddlyspot]] pour plus d'informations sur la configuration de la sauvegarde sur ~TiddlySpot et ~TiddlyHost.
|
126
134
|
Saving/TiddlySpot/Filename: Nom du fichier enregistré
|
127
135
|
Saving/TiddlySpot/Heading: ~TiddlySpot
|
@@ -190,6 +198,8 @@ Settings/TitleLinks/Yes/Description: Afficher les titres des tiddlers comme des
|
|
190
198
|
Settings/MissingLinks/Caption: Liens wiki
|
191
199
|
Settings/MissingLinks/Hint: Peut-on pointer vers des tiddlers qui n'existent pas encore ?
|
192
200
|
Settings/MissingLinks/Description: Active les liens vers les tiddlers inexistants
|
201
|
+
StoryTiddler/Caption: Tiddlers du déroulé
|
202
|
+
StoryTiddler/Hint: Cette cascade de règles sert à choisir dynamiquement le template d'affichage d'un tiddler dans le déroulé.
|
193
203
|
StoryView/Caption: Vue sur le déroulé
|
194
204
|
StoryView/Prompt: Vue courante :
|
195
205
|
Stylesheets/Caption: Feuilles de style
|
@@ -200,6 +210,10 @@ Theme/Caption: Thème
|
|
200
210
|
Theme/Prompt: Thème courant :
|
201
211
|
TiddlerFields/Caption: Champs des tiddlers
|
202
212
|
TiddlerFields/Hint: Il s'agit de la totalité des [[champs|TiddlerFields]] utilisés dans ce wiki (y compris les tiddlers système, mais non compris les tiddlers //shadow//).
|
213
|
+
TiddlerColour/Caption: Couleur du tiddler
|
214
|
+
TiddlerColour/Hint: Cette cascade de règle sert à choisir dynamiquement la couleur d'un tiddler (utilisée pour l'icone et la pastille du tag associé).
|
215
|
+
TiddlerIcon/Caption: Icone du tiddler
|
216
|
+
TiddlerIcon/Hint: Cette cascade de règles sert à déterminer dynamiquement l'icone d'un tiddler.
|
203
217
|
Toolbars/Caption: Barres d'outils
|
204
218
|
Toolbars/EditToolbar/Caption: Barre d'outils du mode édition
|
205
219
|
Toolbars/EditToolbar/Hint: Choix des boutons à afficher pour les tiddlers en cours d'édition
|
@@ -211,3 +225,7 @@ Toolbars/EditorToolbar/Hint: Choix des boutons à afficher dans la barre d'outil
|
|
211
225
|
Toolbars/ViewToolbar/Caption: Barre d'outils du mode visualisation
|
212
226
|
Toolbars/ViewToolbar/Hint: Choix des boutons à afficher pour les tiddlers en mode visualisation
|
213
227
|
Tools/Download/Full/Caption: Télécharger le wiki complet
|
228
|
+
ViewTemplateBody/Caption: Visualisation du corps
|
229
|
+
ViewTemplateBody/Hint: Cette cascade de règles est utilisée par le template de visualisation par défaut pour choisir dynamiquement le template d'affichage du corps d'un tiddler.
|
230
|
+
ViewTemplateTitle/Caption: Visualisation du titre
|
231
|
+
ViewTemplateTitle/Hint: Cette cascade de règles est utilisée par le template de visualisation par défaut pour choisir dynamiquement le template d'affichage du titre d'un tiddler.
|
@@ -1,5 +1,6 @@
|
|
1
1
|
title: $:/language/EditTemplate/
|
2
2
|
|
3
|
+
Caption: Éditeur
|
3
4
|
Body/External/Hint: Ce tiddler affiche du contenu situé en dehors du fichier TiddlyWiki principal. Vous pouvez éditer les tags et les champs mais pas directement le contenu lui-même
|
4
5
|
Body/Placeholder: Entrez le texte ici
|
5
6
|
Body/Preview/Type/Output: sortie
|
@@ -3,6 +3,7 @@ title: $:/language/Docs/Fields/
|
|
3
3
|
_canonical_uri: L'URI complet vers le contenu externe d'un tiddler image
|
4
4
|
bag: Nom du <q>bag</q> d'où provient le tiddler
|
5
5
|
caption: Texte à afficher sur un onglet ou un bouton
|
6
|
+
code-body: Le template de visualisation affichera ce tiddler comme du code si la valeur est ''yes''
|
6
7
|
color: Couleur CSS associée au tiddler
|
7
8
|
component: Nom du composant responsable pour un [[tiddler d'alerte|AlertMechanism]]
|
8
9
|
current-tiddler: Sert à cacher le tiddler situé au début de l'[[historique|HistoryMechanism]]
|
@@ -13,8 +14,9 @@ description: Texte de description d'un plugin, ou d'une boîte de dialogue
|
|
13
14
|
draft.of: Pour les tiddlers en cours d'édition, contient le titre du tiddler initial
|
14
15
|
draft.title: Pour les tiddlers en cours d'édition, contient le nouveau titre prévu pour le tiddler
|
15
16
|
footer: Texte de bas de page dans le cas d'un wizard
|
17
|
+
hide-body: Le template de visualisation cachera le corps des tiddlers si la valeur est ''yes''
|
16
18
|
icon: Titre du tiddler contenant l'icone associée à un tiddler
|
17
|
-
library:
|
19
|
+
library: Si la valeur est <q>yes</q>, indique qu'un tiddler doit être sauvegardé comme bibliothèque JavaScript
|
18
20
|
list: Liste ordonnée de titres de tiddlers associée à un tiddler
|
19
21
|
list-before: Si présent, contient le titre du tiddler avant lequel ce tiddler doit être ajouté dans la liste ordonnée des titres de tiddlers. Si ce champ est présent mais vide, le titre doit être ajouté au début de la liste.
|
20
22
|
list-after: Si présent, contient le titre du tiddler après lequel ce tiddler doit être ajouté dans la liste ordonnée des titres de tiddlers.
|
@@ -31,7 +33,7 @@ tags: Liste des tags associés à un tiddler
|
|
31
33
|
text: Texte du corps de ce tiddler
|
32
34
|
throttle.refresh: Si présent, ralentit les rafraîchissements de ce tiddler
|
33
35
|
title: Nom unique du tiddler
|
34
|
-
toc-link: Une valeur à ''no'' supprime le lien vers le tiddler dans l'
|
36
|
+
toc-link: Une valeur à ''no'' supprime le lien vers le tiddler dans l'arborescence des tables des matières
|
35
37
|
type: Type de contenu du tiddler
|
36
38
|
version: S'il s'agit d'un plugin, l'information de version
|
37
39
|
_is_skinny: Si présent, indique que le champ //text// du tiddler doit être chargé depuis le serveur
|
@@ -3,6 +3,7 @@ title: $:/language/Help/default
|
|
3
3
|
\define commandTitle()
|
4
4
|
$:/language/Help/$(command)$
|
5
5
|
\end
|
6
|
+
\whitespace trim
|
6
7
|
```
|
7
8
|
usage: tiddlywiki [<dossierwiki>] [--<commande> [<arguments>...]...]
|
8
9
|
```
|
@@ -11,7 +12,9 @@ Liste des commandes disponibles :
|
|
11
12
|
|
12
13
|
<ul>
|
13
14
|
<$list filter="[commands[]sort[title]]" variable="command">
|
14
|
-
<li><$link to=<<commandTitle>>><$macrocall $name="command" $type="text/plain" $output="text/plain"/></$link> :
|
15
|
+
<li><$link to=<<commandTitle>>><$macrocall $name="command" $type="text/plain" $output="text/plain"/></$link> :
|
16
|
+
 
|
17
|
+
<$transclude tiddler=<<commandTitle>> field="description"/></li>
|
15
18
|
</$list>
|
16
19
|
</ul>
|
17
20
|
|
@@ -31,5 +31,6 @@ Notes :
|
|
31
31
|
|
32
32
|
Exemples :
|
33
33
|
|
34
|
-
* `--render "[!is[system]]" "[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]"` -- enregistre le
|
34
|
+
* `--render "[!is[system]]" "[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]"` -- enregistre le rendu HTML de tous les tiddlers non-système vers des fichiers du sous-répertoire "tiddlers", nommés après encodage URL des titres et ajout d'une extension html.
|
35
|
+
* `--render '.' 'tiddlers.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[tag[HelloThere]]'` -- enregistre le rendu JSON des tiddlers tagués "HelloThere" dans un fichier nommé "tiddlers.json"
|
35
36
|
|