├── .gitignore └── wikilabs ├── markdown-it ├── variant.tid ├── docs_type_markdown.tid ├── history.tid ├── files │ └── tiddlywiki.files ├── license.tid ├── plugin.info ├── readme.tid └── EditorToolbar │ ├── bold.tid │ ├── quote.tid │ ├── italic.tid │ ├── heading-1.tid │ ├── heading-2.tid │ ├── heading-3.tid │ ├── heading-4.tid │ ├── heading-5.tid │ ├── heading-6.tid │ ├── mono-line.tid │ ├── list-bullet.tid │ └── list-number.tid ├── field-search ├── tiddlers │ ├── config │ │ ├── data_Any Field.json │ │ ├── exclude.tid │ │ ├── data_Any Field.json.meta │ │ ├── sortby.tid │ │ └── tab_Any Field.tid │ ├── css │ │ ├── column-styles.css.meta │ │ ├── column-styles.css │ │ └── styles.tid │ ├── templates │ │ ├── ItemTemplate.tid │ │ └── ListItemTemplate.tid │ ├── ui │ │ ├── edit-sortby.tid │ │ └── edit-exclude.tid │ └── meta │ │ ├── license.tid │ │ ├── readme.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── click-effect ├── tiddlers │ ├── config │ │ └── config_clickEffect.tid │ └── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── custom-markup ├── tiddlers │ ├── config │ │ ├── shortcuts │ │ │ ├── add-angel.tid │ │ │ ├── add-glyph.tid │ │ │ ├── toggle-tick.tid │ │ │ ├── toggle-glyph.tid │ │ │ ├── toggle-inline.tid │ │ │ ├── add-newline.tid │ │ │ ├── remove-angel.tid │ │ │ ├── remove-glyph.tid │ │ │ ├── open-block-dropdown.tid │ │ │ ├── open-inline-dropdown.tid │ │ │ └── remove-custom-markers.tid │ │ ├── ShortcutInfo │ │ │ ├── add-angel.tid │ │ │ ├── add-newline.tid │ │ │ ├── remove-angel.tid │ │ │ ├── toggle-glyph.tid │ │ │ ├── toggle-tick.tid │ │ │ ├── toggle-inline.tid │ │ │ ├── open-block-dropdown.tid │ │ │ └── remove-custom-markers.tid │ │ ├── config_pragma_PageTemplate.tid │ │ ├── _config_WLCM_InlineSet_Config.tid │ │ ├── _config_WLCM_LineSet_Config.tid │ │ └── icons │ │ │ └── glyphs │ │ │ └── active.tid │ ├── EditorToolbar │ │ ├── notify │ │ │ ├── snippet-prepared.tid │ │ │ └── id-prepared.tid │ │ ├── chooser-inline.tid │ │ ├── chooser-block.tid │ │ ├── add-angel.tid │ │ ├── remove-angel.tid │ │ ├── custom-markers.tid │ │ ├── remove-tick.tid │ │ ├── add-newline.tid │ │ └── add-tick.tid │ ├── system │ │ └── ui │ │ │ └── $__plugins_wikilabs_custom-markup_styles.css.meta │ ├── license.tid │ ├── images │ │ ├── glyphs │ │ │ ├── single.tid │ │ │ ├── tick.tid │ │ │ ├── pilcrow.tid │ │ │ ├── angle.tid │ │ │ └── degree.tid │ │ ├── inline │ │ │ ├── braille.tid │ │ │ ├── corner.tid │ │ │ └── slash.tid │ │ ├── inline-toggle.tid │ │ ├── glyph-minus.tid │ │ ├── tick-minus.svg.tid │ │ ├── angel-minus.tid │ │ ├── tick-plus.svg.tid │ │ ├── glyph-plus.tid │ │ ├── glyph-toggle.tid │ │ ├── angel-plus.tid │ │ └── add-newline.tid │ ├── readme.tid │ └── history.tid └── plugin.info ├── info-area ├── tiddlers │ ├── meta │ │ ├── readme.tid │ │ ├── history.tid │ │ └── license.tid │ └── control-panel │ │ └── $__plugins_amp_MagicTabs_dashboard_configuration.tid └── plugin.info.WIP ├── trigger ├── tiddlers │ ├── readme.tid │ ├── log.json.meta │ ├── license.tid │ ├── _templates_tid-tiddler.tid │ ├── history.tid │ └── log-actions.tid └── plugin.info ├── field-editor ├── tiddlers │ ├── global-config │ │ └── $__config_TiddlerInfo_Mode.tid │ ├── global-state │ │ ├── state-editpreviewtype.tid │ │ └── viewtemplate-active-field.tid │ ├── EditTemplate │ │ ├── note-editor │ │ │ ├── config │ │ │ │ ├── $__config_wikilabs_EditTemplateFields_note_default.tid │ │ │ │ ├── $__config_wikilabs_EditTemplateFields_text_default.tid │ │ │ │ ├── EditTemplateFields_Visibility_wl-field-name-note.tid │ │ │ │ ├── EditTemplateFields_Visibility_wl-field-name-text.tid │ │ │ │ ├── EditToolbarButtons_Visibility_$__core_ui_Buttons_info.tid │ │ │ │ └── config-EditTemplateBodyFilters-default.tid │ │ │ └── ui │ │ │ │ ├── EditTemplate_body_preview_note.tid │ │ │ │ └── images │ │ │ │ ├── $__images_layout-full.tid │ │ │ │ └── $__images_layout-half.tid │ │ ├── edit-Buttons-info.tid │ │ ├── note-editor-EditTemplate.tid │ │ ├── edit-button-TiddlerInfo.tid │ │ └── warning │ │ │ └── existing-field-overwrite-warning.tid │ ├── Sidebar │ │ └── switcher │ │ │ └── template │ │ │ └── field-editor_text.tid │ ├── view-info-button │ │ └── $__config_ViewToolbarButtons_Visibility_$__core_ui_Buttons_info.tid │ ├── system │ │ └── config │ │ │ └── $__config_ui_EditTemplate.tid │ ├── ViewTemplate │ │ ├── ViewTemplate_body_field.tid │ │ └── config │ │ │ └── ViewTemplateBodyFilters_body_field.tid │ ├── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid │ └── styles │ │ └── note-styles.tid └── plugin.info ├── prng ├── tiddlers │ ├── meta │ │ ├── history.tid │ │ ├── license.tid │ │ └── readme.tid │ ├── config │ │ └── config.tid │ └── lib │ │ └── tiddlywiki.files └── plugin.info.wip ├── speciallinks ├── tiddlers │ ├── readme.tid │ ├── license.tid │ └── history.tid └── plugin.info ├── xenlist ├── readme.tid ├── license.tid ├── history.tid └── plugin.info ├── saver-timestamps ├── tiddlers │ └── meta │ │ ├── readme.tid │ │ ├── history.tid │ │ └── license.tid └── plugin.info.WIP ├── uni-link ├── tiddlers │ ├── alias-list.tid │ ├── config │ │ ├── $__config_shortcuts_aliasify.tid │ │ ├── $__config_wikilabs_uni-link_field.tid │ │ ├── $__config_ShortcutInfo_aliasify.tid │ │ ├── $__config_ShortcutInfo_alias_link.tid │ │ └── $__config_shortcuts_alias-link.tid │ ├── aka-footer-template.tid │ ├── language │ │ └── buttons.multids │ ├── aka-footer.tid │ ├── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid │ ├── styles │ │ └── styles.tid │ ├── uni-link-style.tid │ ├── ui │ │ ├── EditorToolbar │ │ │ ├── SearchResults.tid │ │ │ └── alias.tid │ │ └── MoreSideBar │ │ │ ├── Aliases.tid │ │ │ ├── Aliases_undefined.tid │ │ │ └── Aliases_byAlias.tid │ ├── modules │ │ └── filters │ │ │ └── all │ │ │ └── aliases.js │ └── system │ │ └── $__core_ui_EditorToolbar_aliasify.tid └── plugin.info ├── dayjs ├── tiddlers │ └── meta │ │ ├── readme.tid │ │ ├── history.tid │ │ └── license.tid ├── files │ └── tiddlywiki.files └── plugin.info.WIP ├── youtube-lite ├── tiddlers │ └── meta │ │ ├── history.tid │ │ └── license.tid └── plugin.info.WIP ├── content-presentation ├── tiddlers │ ├── Page-01.tid │ ├── readme.tid │ ├── $_tags_PluginInfo_Installed_Content.tid │ ├── license.tid │ └── history.tid └── plugin.info ├── stories ├── tiddlers │ ├── config │ │ └── config-field-list.tid │ └── meta │ │ ├── readme.tid │ │ ├── history.tid │ │ └── license.tid └── plugin.info.WIP ├── bundler ├── tiddlers │ ├── config │ │ ├── importHeaderTemplate.tid │ │ ├── $__config_TiddlerInfo_Mode.tid │ │ ├── $__config_wikilabs_enableImportBundle.tid │ │ ├── $__config_TiddlerInfo_Defaults.tid │ │ └── $__config_ViewToolbarButtons_Visibility_$__core_ui_Buttons_info.tid │ ├── system │ │ ├── import-cascade │ │ │ └── $__plugins_bundler_ViewTemplateBodyFilters_import.tid │ │ └── viewtemplate-cascade │ │ │ ├── $__config_ViewTemplateBodyFilters_filters.tid │ │ │ └── $__plugin_wikilabs_ui_ViewTemplate_body_filters.tid │ ├── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid │ ├── ui │ │ ├── tiddler-info │ │ │ ├── listTemplate.tid │ │ │ └── listFilteredTemplate.tid │ │ ├── list-links-custom_element-delete.tid │ │ └── buttons │ │ │ ├── export-bundle-filter.tid │ │ │ └── export-bundle.tid │ └── styles │ │ └── styles.tid └── plugin.info ├── external-core ├── wiki │ └── config │ │ └── PageControlButtons.multids ├── language │ └── en-GB │ │ └── Buttons.multids ├── templates │ └── external-js │ │ ├── tiddlywiki.js.tiddlers.tid │ │ ├── save-all-external-js.tid │ │ ├── tiddlywiki.js.tid │ │ └── save-offline-external-js.tid └── tiddlyweb │ ├── tags-syncerdropdown.tid │ └── syncer-actions-download-tiddlywikicore.tid ├── markdown-it-toc ├── tiddlers │ ├── meta │ │ ├── history.tid │ │ ├── readme.tid │ │ └── license.tid │ └── init.js ├── files │ └── tiddlywiki.files └── plugin.info.TEST ├── pluginlibrary ├── asset-list-json.tid ├── plugin.info └── readme.tid ├── palette-watch ├── tiddlers │ └── meta │ │ ├── history.tid │ │ ├── license.tid │ │ ├── docs │ │ ├── DarkLightChangeActions-status.tid │ │ └── SystemTag_ $__tags_DarkLightChangeActions.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── palette-switcher ├── tiddlers │ ├── config │ │ └── palette │ │ │ ├── $__config_palette_enable-light-dark-detection.tid │ │ │ ├── default-dark.tid │ │ │ └── default-light.tid │ ├── meta │ │ ├── docs │ │ │ └── DarkLightStartup-status.tid │ │ ├── license.tid │ │ ├── history.tid │ │ └── wikilabs-settings.tid │ ├── ui │ │ └── styles │ │ │ └── styles.tid │ └── languages │ │ └── en-GB │ │ └── Translations.multids └── plugin.info ├── trails ├── tiddlers │ ├── config │ │ ├── trails_height.tid │ │ ├── trails_fontSize.tid │ │ ├── trails_paddingTop.tid │ │ ├── trails_showArrows.tid │ │ ├── trails_filtersMode.tid │ │ └── trails_paddingBottom.tid │ ├── meta │ │ ├── license.tid │ │ ├── wikilabs-settings.tid │ │ ├── icon.tid │ │ └── history.tid │ ├── breadcrumbs-macro.tid │ ├── definitions │ │ ├── Trail.tid │ │ └── Breadcrumbs.tid │ └── templates │ │ └── tw-com-template.tid └── plugin.info ├── thin-scrollbars ├── tiddlers │ ├── readme.tid │ ├── license.tid │ ├── history.tid │ └── thin-scrollbars-styles.tid └── plugin.info ├── advanced-search-plus ├── tiddlers │ ├── ui │ │ ├── timeline-subfilter-days.tid │ │ ├── $__plugins_wikilabs_advanced-search-plus_menu.tid │ │ ├── advanced-search │ │ │ ├── Filter_FilterButtons_export.tid │ │ │ ├── Filter_FilterButtons_dropdown.tid │ │ │ ├── Filter.tid │ │ │ ├── System.tid │ │ │ ├── Shadows.tid │ │ │ └── Standard.tid │ │ ├── templates │ │ │ ├── StandardSearchTemplate-emptyMessage.tid │ │ │ └── TabButtonTemplate.tid │ │ ├── $__tags_AdvancedSearch.tid │ │ ├── shadow │ │ │ └── shadow-search-plus-new.tid │ │ ├── standard │ │ │ └── standard-search-plus-new.tid │ │ ├── system │ │ │ └── system-search-plus-new.tid │ │ └── filter │ │ │ ├── filter-search-plus-new.tid │ │ │ └── filter-search.svg.tid │ ├── config │ │ └── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_search-plus.tid │ └── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid ├── styles │ └── advanced-search-plus-styles.tid └── plugin.info ├── wltm-open-story ├── tiddlers │ ├── readme.tid │ ├── license.tid │ └── history.tid └── plugin.info ├── cheatsheet ├── tiddlers │ ├── styles │ │ └── stylesheet.tid │ ├── cs │ │ ├── Cheatsheet PlainText.tid │ │ ├── Cheatsheet Comment.tid │ │ ├── Cheatsheet CodeML.tid │ │ ├── Cheatsheet DL.tid │ │ ├── Cheatsheet ML.tid │ │ ├── Cheatsheet OL.tid │ │ ├── Cheatsheet UL.tid │ │ ├── Cheatsheet Quotes.tid │ │ ├── Cheatsheet QuotesML.tid │ │ ├── Cheatsheet CS.tid │ │ ├── Cheatsheet HL.tid │ │ ├── Cheatsheet Table.tid │ │ ├── Cheatsheet MCall.tid │ │ ├── Cheatsheet HR.tid │ │ ├── Cheatsheet QuotesMIX.tid │ │ ├── Cheatsheet HTML.tid │ │ ├── Cheatsheet Widget.tid │ │ ├── Cheatsheet TB.tid │ │ ├── Cheatsheet MDefinition.tid │ │ ├── Cheatsheet Functions.tid │ │ └── Cheatsheet PM.tid │ ├── toolbar │ │ ├── $__config_shortcuts-mac_show-cheatsheet.tid │ │ ├── $__config_shortcuts-not-mac_show-cheatsheet.tid │ │ └── $__config_ShortcutInfo_show-cheatsheet.tid │ ├── license.tid │ └── readme.tid └── plugin.info ├── webdav-lm ├── tiddlers │ ├── license.tid │ ├── readme.tid │ └── history.tid └── plugin.info ├── new-tiddler-from-search ├── tiddlers │ ├── $__plugins_wikilabs_new-tiddler-from-search_styles.tid │ ├── license.tid │ ├── history.tid │ └── readme.tid └── plugin.info ├── tocP ├── tiddlers │ ├── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid │ ├── $__plugins_wikilabs_tocP_Stylesheet.tid │ └── $__plugins_wikilabs_tocP_toggle-new-child-button.tid └── plugin.info ├── info-session ├── tiddlers │ ├── license.tid │ └── history.tid └── plugin.info ├── field-visibility ├── tiddlers │ ├── ui │ │ ├── TiddlerInfo_Fields.tid │ │ └── TiddlerFields.tid │ └── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── remove-states ├── tiddlers │ ├── meta │ │ ├── license.tid │ │ ├── readme.tid │ │ ├── wikilabs-settings.tid │ │ └── history.tid │ └── $__plugins_wikilabs_remove-states.tid └── plugin.info ├── pragma-comment ├── tiddlers │ ├── license.tid │ └── history.tid └── plugin.info ├── trim-whitespace ├── tiddlers │ ├── meta │ │ ├── readme.tid │ │ ├── license.tid │ │ ├── history.tid │ │ ├── icon.tid │ │ └── wikilabs-settings.tid │ ├── images │ │ └── trim-whitespace.tid │ ├── editor │ │ └── operations │ │ │ └── text │ │ │ └── select-all.js │ └── EditorToolbar │ │ └── trim-whitespace.tid └── plugin.info ├── palette-manager ├── tiddlers │ ├── palettes │ │ └── preview │ │ │ ├── tabbed-toc │ │ │ ├── previewTabbedToc.tid │ │ │ ├── previewTabbedToc-1.tid │ │ │ └── previewTabbedToc-2.tid │ │ │ ├── example │ │ │ ├── __palettes_preview_alert_example.tid │ │ │ └── __palettes_preview_tiddler-editor-fields-odd_example.tid │ │ │ ├── __palettes_preview_page-background.tid │ │ │ ├── __palettes_preview_code-foreground.tid │ │ │ ├── __palettes_preview_blockquote-bar.tid │ │ │ ├── __palettes_preview_tiddler-subtitle-foreground.tid │ │ │ ├── __palettes_preview_highlight-foreground.tid │ │ │ ├── __palettes_preview_wikilist-url.tid │ │ │ ├── __palettes_preview_alert-muted-foreground.tid │ │ │ ├── __palettes_preview_site-title-foreground.tid │ │ │ ├── __palettes_preview_table-header-background.tid │ │ │ ├── __palettes_preview_toolbar-done-button.tid │ │ │ ├── __palettes_preview_toolbar-edit-button.tid │ │ │ ├── __palettes_preview_toolbar-info-button.tid │ │ │ ├── __palettes_preview_toolbar-close-button.tid │ │ │ ├── __palettes_preview_toolbar-cancel-button.tid │ │ │ ├── __palettes_preview_toolbar-delete-button.tid │ │ │ ├── __palettes_preview_toolbar-new-button.tid │ │ │ ├── __palettes_preview_notification-border.tid │ │ │ ├── __palettes_preview_sidebar-foreground-shadow.tid │ │ │ ├── __palettes_preview_toolbar-options-button.tid │ │ │ ├── __palettes_preview_selection-foreground.tid │ │ │ ├── __palettes_preview_dropzone-background.tid │ │ │ ├── __palettes_preview_primary.tid │ │ │ ├── __palettes_preview_tiddler-border.tid │ │ │ ├── __palettes_preview_external-link-foreground-visited.tid │ │ │ ├── __palettes_preview_pre-border.tid │ │ │ ├── __palettes_preview_sidebar-controls-foreground-hover.tid │ │ │ ├── __palettes_preview_muted-foreground.tid │ │ │ ├── __palettes_preview_tiddler-title-foreground.tid │ │ │ ├── __palettes_preview_untagged-background.tid │ │ │ ├── __palettes_preview_dragger-foreground.tid │ │ │ ├── __palettes_preview_tiddler-info-tab-background.tid │ │ │ ├── __palettes_preview_static-alert-foreground.tid │ │ │ ├── __palettes_preview_message-foreground.tid │ │ │ ├── __palettes_preview_tag-foreground.tid │ │ │ ├── __palettes_preview_dropdown-border.tid │ │ │ ├── __palettes_preview_diff-invisible-foreground.tid │ │ │ └── __palettes_preview_sidebar-muted-foreground-hover.tid │ ├── title-cascade │ │ └── $__config_ViewTemplateTitleFilters_palette.tid │ └── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── multicol-dropdown ├── tiddlers │ ├── license.tid │ ├── readme.tid │ └── history.tid └── plugin.info ├── persistent-states ├── tiddlers │ ├── meta │ │ ├── license.tid │ │ └── wikilabs-settings.tid │ ├── $__config_SaverFilter.tid │ ├── $__config_SyncFilter.tid │ └── $__plugins_wikilabs_remove-states.tid └── plugin.info ├── edit-tabs ├── tiddlers │ └── meta │ │ ├── readme.tid │ │ ├── license.tid │ │ └── wikilabs-settings.tid └── plugin.info ├── space-space-newline ├── plugin.info └── tiddlers │ ├── license.tid │ └── history.tid ├── keyvalues ├── plugin.info └── tiddlers │ ├── license.tid │ └── icon.tid ├── info-tagmap ├── plugin.info └── tiddlers │ ├── license.tid │ ├── $__wikilabs_ui_TiddlerInfo_TagMap_Styles.tid │ ├── readme.tid │ ├── $__wikilabs_ui_TiddlerInfo_TagMap.tid │ └── history.tid └── link-to-tabs ├── tiddlers ├── meta │ ├── license.tid │ ├── wikilabs-settings.tid │ └── readme.tid └── config │ └── config.tid └── plugin.info /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /wikilabs/markdown-it/variant.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/markdown/variant 2 | 3 | commonmark -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/config/data_Any Field.json: -------------------------------------------------------------------------------- 1 | { 2 | "*": "any field" 3 | } -------------------------------------------------------------------------------- /wikilabs/click-effect/tiddlers/config/config_clickEffect.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/clickEffect 2 | 3 | clickEffect -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/add-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/add-angle 2 | tags: 3 | 4 | -------------------------------------------------------------------------------- /wikilabs/info-area/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-area/readme 2 | 3 | ! ~ReadMe 4 | 5 | -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trigger/readme 2 | 3 | 4 | * see trigger-test-edition 5 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/add-glyph.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/add-glyph 2 | tags: 3 | 4 | ctrl-9 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/toggle-tick.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/toggle-tick 2 | tags: 3 | 4 | ctrl-9 -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/global-config/$__config_TiddlerInfo_Mode.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/TiddlerInfo/Mode 2 | 3 | sticky -------------------------------------------------------------------------------- /wikilabs/prng/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/prng/history 2 | 3 | V 0.1.0 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /wikilabs/speciallinks/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/speciallinks/readme 2 | 3 | Allow Camel_Case links 4 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/toggle-glyph.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/toggle-glyph 2 | tags: 3 | 4 | ctrl-8 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/toggle-inline.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/toggle-inline 2 | tags: 3 | 4 | ctrl-0 -------------------------------------------------------------------------------- /wikilabs/xenlist/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/xenlist/readme 2 | 3 | * TODO 4 | 5 | ! Example 6 | 7 | ``` 8 | TODO 9 | ``` -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/add-newline.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/add-newline 2 | tags: 3 | 4 | ctrl-shift-Enter -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/remove-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/remove-angle 2 | tags: 3 | 4 | ctrl-shift-6 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/remove-glyph.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/remove-glyph 2 | tags: 3 | 4 | ctrl-shift-9 -------------------------------------------------------------------------------- /wikilabs/saver-timestamps/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/saver-timestampls/readme 2 | 3 | 4 | ! ~ReadMe 5 | 6 | TODO -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/alias-list.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uni-link/alias-list 2 | type: text/vnd.tiddlywiki 3 | 4 | <> -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/open-block-dropdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/open-block-dropdown 2 | tags: 3 | 4 | ctrl-6 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/open-inline-dropdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/open-inline-dropdown 2 | tags: 3 | 4 | ctrl-7 -------------------------------------------------------------------------------- /wikilabs/dayjs/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/dayjs/readme 2 | 3 | This plugin can add a dayjs to every date-like field 4 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/config/$__config_shortcuts_aliasify.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/aliasify 2 | type: text/vnd.tiddlywiki 3 | 4 | ctrl-K -------------------------------------------------------------------------------- /wikilabs/youtube-lite/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-editor/history 2 | 3 | V 0.0.1 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /wikilabs/content-presentation/tiddlers/Page-01.tid: -------------------------------------------------------------------------------- 1 | title: page-01 2 | created: 20210610173041535 3 | modified: 20210610173042586 4 | 5 | This is a test -------------------------------------------------------------------------------- /wikilabs/stories/tiddlers/config/config-field-list.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wl/stories/field-list 2 | type: text/vnd.tiddlywiki 3 | 4 | text list filter test -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/config/importHeaderTemplate.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/bundler/importHeaderTemplate 2 | 3 | <> -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/shortcuts/remove-custom-markers.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/shortcuts/remove-custom-markers 2 | tags: 3 | 4 | ctrl-shift-7 -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/config/$__config_wikilabs_uni-link_field.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/uni-link/field 2 | type: text/vnd.tiddlywiki 3 | 4 | title -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/global-state/state-editpreviewtype.tid: -------------------------------------------------------------------------------- 1 | title: $:/state/editpreviewtype 2 | 3 | $:/plugins/wikilabs/ui/EditTemplate/body/preview/note -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/css/column-styles.css.meta: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Stylesheet 2 | title: $:/plugins/wikilabs/field-search/css/column-styles 3 | type: text/css -------------------------------------------------------------------------------- /wikilabs/markdown-it/docs_type_markdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/Docs/Types/text/x-markdown 2 | description: Markdown 3 | name: text/x-markdown 4 | group: Text 5 | -------------------------------------------------------------------------------- /wikilabs/prng/tiddlers/config/config.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/prng/config 2 | 3 | This tiddler is used to configure the "prng" plugin behaviour. 4 | 5 | -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/config/exclude.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/field-search/exclude 2 | type: text/vnd.tiddlywiki 3 | 4 | bag revision exclude draft.of draft.title -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/log.json.meta: -------------------------------------------------------------------------------- 1 | created: 20191022121041276 2 | modified: 20191022121939758 3 | tags: $:/tags/AboveStory 4 | title: log 5 | type: application/json -------------------------------------------------------------------------------- /wikilabs/content-presentation/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/content-presentation/readme 2 | 3 | This plugin adds is for testing the new plugin UI only. 4 | -------------------------------------------------------------------------------- /wikilabs/external-core/wiki/config/PageControlButtons.multids: -------------------------------------------------------------------------------- 1 | title: $:/config/PageControlButtons/Visibility/$:/ 2 | 3 | core/ui/Buttons/export-tiddlywikicore: hide 4 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/global-state/viewtemplate-active-field.tid: -------------------------------------------------------------------------------- 1 | title: $:/state/wikilabs/viewtemplate/body/active/field 2 | 3 | $:/config/wikilabs/field-editor/text -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/markdown-it-toc/history 2 | 3 | V 0.0.1 - 2023-06-13 4 | 5 | * initial release 6 | -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/markdown-it-toc/readme 2 | 3 | This plugin can add a dayjs to every date-like field 4 | -------------------------------------------------------------------------------- /wikilabs/pluginlibrary/asset-list-json.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/pluginlibrary/asset-list-json 2 | 3 | `var assetList = `<$view tiddler="$:/UpgradeLibrary/List"/>`; 4 | ` -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/$__config_wikilabs_EditTemplateFields_note_default.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/EditTemplateFields/note/default 2 | 3 | text -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/$__config_wikilabs_EditTemplateFields_text_default.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/EditTemplateFields/text/default 2 | 3 | text -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/config/$__config_ShortcutInfo_aliasify.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/aliasify 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/language/Buttons/Aliasify/Hint}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/notify/snippet-prepared.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/notify/snippet-prepared 2 | 3 | Snipped copied to clipboard! -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/config/data_Any Field.json.meta: -------------------------------------------------------------------------------- 1 | caption: Any Field 2 | tags: $:/tags/field-search/data 3 | title: $:/config/field-search/data/Any Field 4 | type: application/json -------------------------------------------------------------------------------- /wikilabs/palette-watch/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-watch/history 2 | 3 | V 0.9.0 - 2025-08-25 4 | 5 | * Release as library pluguin 6 | * initial release 7 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/config/$__config_ShortcutInfo_alias_link.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/alias-link 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/language/Buttons/Make/Alias/Hint}} -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/EditTemplateFields_Visibility_wl-field-name-note.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/EditTemplateFields/Visibility/wl-field-name-note 2 | 3 | hide -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/EditTemplateFields_Visibility_wl-field-name-text.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/EditTemplateFields/Visibility/wl-field-name-text 2 | 3 | hide -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/config/sortby.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/field-search/sortby 2 | type: text/vnd.tiddlywiki 3 | 4 | title text tags caption subtitle creator modifier created modified type -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/config/palette/$__config_palette_enable-light-dark-detection.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/palette/enable-light-dark-detection 2 | type: text/vnd.tiddlywiki 3 | 4 | yes -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_height.tid: -------------------------------------------------------------------------------- 1 | created: 20230405153335572 2 | modified: 20230405153359920 3 | tags: 4 | title: $:/config/wl/trails/height 5 | type: text/vnd.tiddlywiki 6 | 7 | 22 -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_fontSize.tid: -------------------------------------------------------------------------------- 1 | created: 20230405153335572 2 | modified: 20230405153359920 3 | tags: 4 | title: $:/config/wl/trails/fontSize 5 | type: text/vnd.tiddlywiki 6 | 7 | 15 -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/config/$__config_TiddlerInfo_Mode.tid: -------------------------------------------------------------------------------- 1 | created: 20210127183047822 2 | modified: 20210131231705323 3 | title: $:/config/TiddlerInfo/Mode 4 | type: text/vnd.tiddlywiki 5 | 6 | sticky -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/notify/id-prepared.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/notify/id-prepared 2 | 3 | ID Button prepared!
4 | Content copied to clipboard! -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/EditToolbarButtons_Visibility_$__core_ui_Buttons_info.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/EditToolbarButtons/Visibility/$:/core/ui/Buttons/info 2 | 3 | show -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_paddingTop.tid: -------------------------------------------------------------------------------- 1 | created: 20230405153411402 2 | modified: 20230405153422513 3 | tags: 4 | title: $:/config/wl/trails/paddingTop 5 | type: text/vnd.tiddlywiki 6 | 7 | 3 -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_showArrows.tid: -------------------------------------------------------------------------------- 1 | created: 20230405155139328 2 | modified: 20230405155734969 3 | tags: 4 | title: $:/config/wl/trails/showArrows 5 | type: text/vnd.tiddlywiki 6 | 7 | yes -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/templates/ItemTemplate.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/templates/ItemTemplate 2 | type: text/vnd.tiddlywiki 3 | 4 | ::: <$link /> -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/config/palette/default-dark.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/ControlPanel/Palette/Config/DefaultDark/Caption}} 2 | title: $:/config/palette/default-dark 3 | 4 | $:/palettes/GruvboxDark -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/config/palette/default-light.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/ControlPanel/Palette/Config/DefaultLight/Caption}} 2 | title: $:/config/palette/default-light 3 | 4 | $:/palettes/Vanilla -------------------------------------------------------------------------------- /wikilabs/stories/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/stories/readme 2 | 3 | * TODO 4 | 5 | ! Example 6 | 7 | ``` 8 | <$button message="stories" param="Story/NewX" >open story 9 | ``` -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_filtersMode.tid: -------------------------------------------------------------------------------- 1 | created: 20230405155139328 2 | modified: 20230415112737614 3 | tags: 4 | title: $:/config/wl/trails/filterMode 5 | type: text/vnd.tiddlywiki 6 | 7 | story -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/config/trails_paddingBottom.tid: -------------------------------------------------------------------------------- 1 | created: 20230405153404714 2 | modified: 20230405153410088 3 | tags: 4 | title: $:/config/wl/trails/paddingBottom 5 | type: text/vnd.tiddlywiki 6 | 7 | 4 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/add-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/add-angle 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/add-angle!!description}} -------------------------------------------------------------------------------- /wikilabs/thin-scrollbars/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/thin-scrollbars/readme 2 | 3 | This plugin adds a little bit of CSS that creates small scrollbars for ~FireFox and ~WebKit based browsers 4 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/timeline-subfilter-days.tid: -------------------------------------------------------------------------------- 1 | title: timeline-subfilter-days 2 | 3 | ``` 4 | <> 5 | ``` 6 | 7 | <> -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/config/$__config_wikilabs_enableImportBundle.tid: -------------------------------------------------------------------------------- 1 | created: 20210111210505370 2 | modified: 20210128135045924 3 | title: $:/config/wikilabs/enableImportBundle 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/add-newline.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/add-newline 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/add-newline!!description}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/remove-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/remove-angle 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/remove-angle!!description}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/toggle-glyph.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/toggle-glyph 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/toggle-glyph!!description}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/toggle-tick.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/toggle-tick 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/toggle-tick!!description}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/config_pragma_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/custom-markup/pragma/PageTemplate 2 | tags: $:/tags/PageTemplate 3 | 4 | \importcustom [tag[$:/tags/Pragma]] 5 | 6 |
<$view />
-------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/config/$__config_shortcuts_alias-link.tid: -------------------------------------------------------------------------------- 1 | created: 20190210193620358 2 | modified: 20190210193621514 3 | title: $:/config/shortcuts/alias-link 4 | type: text/vnd.tiddlywiki 5 | 6 | ctrl-? ctrl-Space -------------------------------------------------------------------------------- /wikilabs/wltm-open-story/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/tm-open-story/readme 2 | 3 | * TODO 4 | 5 | ! Example 6 | 7 | ``` 8 | <$button message="tm-open-story" param="Story/NewX" >open story 9 | ``` -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/styles/stylesheet.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/cheatsheet/styles 2 | tags: $:/tags/Stylesheet 3 | type: text/css 4 | 5 | .wl-cheatsheet th { 6 | border-top: 3px solid; 7 | padding: 3px 0; 8 | } 9 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/toggle-inline.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/toggle-inline 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/toggle-inline!!description}} -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/aka-footer-template.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uni-link/aka-footer/template 2 | type: text/vnd.tiddlywiki 3 | 4 | ''Note'': This tiddler has the following aliases || <> -------------------------------------------------------------------------------- /wikilabs/xenlist/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/xenlist/license 2 | 3 | [[Xenlist Plugin|https://wikilabs.github.io/#xenlist]] (C) Mario Pietsch - 2021-<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/config/$__config_TiddlerInfo_Defaults.tid: -------------------------------------------------------------------------------- 1 | created: 20210127204125388 2 | modified: 20210127204125410 3 | title: $:/config/TiddlerInfo/Defaults 4 | type: text/vnd.tiddlywiki 5 | 6 | :/core/ui/TiddlerInfo/Bundle -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet PlainText.tid: -------------------------------------------------------------------------------- 1 | created: 20221025130723157 2 | modified: 20230115185753273 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet PlainText 5 | type: text/vnd.tiddlywiki 6 | 7 | Some plain text -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/toolbar/$__config_shortcuts-mac_show-cheatsheet.tid: -------------------------------------------------------------------------------- 1 | created: 20230501131245143 2 | modified: 20230501131707404 3 | title: $:/config/shortcuts-mac/show-cheatsheet 4 | type: text/vnd.tiddlywiki 5 | 6 | meta-shift-H -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/toolbar/$__config_shortcuts-not-mac_show-cheatsheet.tid: -------------------------------------------------------------------------------- 1 | created: 20230501131245144 2 | modified: 20230501132227745 3 | title: $:/config/shortcuts-not-mac/show-cheatsheet 4 | type: text/vnd.tiddlywiki 5 | 6 | F1 -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/open-block-dropdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/open-block-dropdown 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/chooser-block!!description}} -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/templates/ListItemTemplate.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/templates/ListItemTemplate 2 | type: text/vnd.tiddlywiki 3 | 4 |
5 | <$link /> 6 |
-------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/config/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_search-plus.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/PageControlButtons/Visibility/$:/plugins/wikilabs/advanced-search-plus/ui/Buttons/search-plus 2 | 3 | show -------------------------------------------------------------------------------- /wikilabs/webdav-lm/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/webdav-lm/license 2 | 3 | [[WebDav-lm-Plugin|https://wikilabs.github.io/#webdav-lm]] (c) Mario Pietsch - 2019-<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/system/ui/$__plugins_wikilabs_custom-markup_styles.css.meta: -------------------------------------------------------------------------------- 1 | created: 20200827100914489 2 | modified: 20211012170334474 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/wikilabs/custom-markup/styles 5 | type: text/css -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/Sidebar/switcher/template/field-editor_text.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/field-editor/text 2 | tags: $:/tags/wikilabs/fieldswitcher 3 | icon: {{$:/core/images/globe}} 4 | description: Text field (default) 5 | 6 | text -------------------------------------------------------------------------------- /wikilabs/new-tiddler-from-search/tiddlers/$__plugins_wikilabs_new-tiddler-from-search_styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/new-tiddler-from-search/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | 5 | .wikilabs-full-width{ 6 | width: 100%; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/tocP/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/tocP/license 2 | 3 | [[Parent Based TOC Plugin|https://wikilabs.github.io/#edition-tocP]] (c) Mario Pietsch - 2017-<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/$__plugins_wikilabs_advanced-search-plus_menu.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/menu 2 | caption: {{$:/core/images/advanced-search-button}} 3 | tags: $:/tags/SideBar 4 | 5 | {{$:/AdvancedSearch}} -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/toolbar/$__config_ShortcutInfo_show-cheatsheet.tid: -------------------------------------------------------------------------------- 1 | created: 20230501131245142 2 | modified: 20230501131711792 3 | title: $:/config/ShortcutInfo/show-cheatsheet 4 | type: text/vnd.tiddlywiki 5 | 6 | Show Wikitext Cheetsheet Modal -------------------------------------------------------------------------------- /wikilabs/content-presentation/tiddlers/$_tags_PluginInfo_Installed_Content.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/content-presentation/plugin-info 2 | tags: $:/tags/PluginInfo/Installed/Content 3 | 4 | <> 5 | 6 | <> 7 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/ShortcutInfo/remove-custom-markers.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/ShortcutInfo/remove-custom-markers 2 | type: text/vnd.tiddlywiki 3 | 4 | {{$:/plugins/wikilabs/custom-markup/EditorToolbar/remove-custom-markers!!description}} -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet Comment.tid: -------------------------------------------------------------------------------- 1 | created: 20220822123735465 2 | modified: 20230115185939861 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet Comment 5 | type: text/vnd.tiddlywiki 6 | 7 | there is some text -------------------------------------------------------------------------------- /wikilabs/info-session/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-session/license 2 | 3 | [[Info-Session-Plugin|https://wikilabs.github.io/#info-session]] (c) Mario Pietsch - 2016<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/pluginlibrary/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/pluginlibrary", 3 | "name": "Wikilabs Plugin Library", 4 | "description": "Wikilabs plugin library configuration", 5 | "list": "readme", 6 | "stability": "STABILITY_2_STABLE" 7 | } 8 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet CodeML.tid: -------------------------------------------------------------------------------- 1 | created: 20220821210906207 2 | modified: 20230115190117755 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet CodeML 5 | type: text/vnd.tiddlywiki 6 | 7 | ``` 8 | multi-line 9 | code block 10 | ``` -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/license 2 | 3 | [[Custom Markup-Plugin|https://wikilabs.github.io/#custom-markup]] (c) Mario Pietsch - 2020-<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/field-visibility/tiddlers/ui/TiddlerInfo_Fields.tid: -------------------------------------------------------------------------------- 1 | caption: Visibility 2 | tags: $:/tags/TiddlerInfo 3 | title: $:/plugins/wikilabs/field-visibility/TiddlerInfo/Fields 4 | 5 | <$transclude tiddler="$:/plugins/wikilabs/field-visibility/TiddlerFields"/> 6 | -------------------------------------------------------------------------------- /wikilabs/remove-states/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/remove-states/license 2 | 3 | [[Remove-States-Plugin|https://wikilabs.github.io/#remove-states]] (c) Mario Pietsch - 2016<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/thin-scrollbars/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/thin-scrollbars/license 2 | 3 | [[Thin Scrollbars CSS|https://wikilabs.github.io/#thin-scrollbars]] (c) Mario Pietsch - 2021<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet DL.tid: -------------------------------------------------------------------------------- 1 | created: 20220821192659739 2 | modified: 20230115185958627 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet DL 5 | type: text/vnd.tiddlywiki 6 | 7 | Definition Lists 8 | 9 | ; term 10 | : definition -------------------------------------------------------------------------------- /wikilabs/external-core/language/en-GB/Buttons.multids: -------------------------------------------------------------------------------- 1 | title: $:/language/Buttons/XX 2 | 3 | # TODO 4 | 5 | ExportTiddlyWikiCore/Caption: export TiddlyWiki core 6 | ExportTiddlyWikiCore/Hint: Export the ~TiddlyWiki core code for running with external ~JavaScript 7 | -------------------------------------------------------------------------------- /wikilabs/pluginlibrary/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/pluginlibrary/readme 2 | 3 | This plugin is used behind the scenes by TiddlyWiki to build the plugin library. 4 | 5 | [[Source code|https://github.com/wikilabs/plugins/tree/master/wikilabs/pluginlibrary]] 6 | -------------------------------------------------------------------------------- /wikilabs/pragma-comment/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/pragma-comment/license 2 | 3 | [[Pragma Comments Plugin|https://wikilabs.github.io/#pragma-comments]] (c) Mario Pietsch - 2020<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trim-whitespace/readme 2 | 3 | This plugin "Trim Whitespace" adds a new button to the edit toolbar 4 | 5 | !! Trim Whitespace Settings 6 | 7 | {{$:/plugins/wikilabs/trim-whitespace/settings}} -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/config/$__config_ViewToolbarButtons_Visibility_$__core_ui_Buttons_info.tid: -------------------------------------------------------------------------------- 1 | created: 20210128111811458 2 | modified: 20210128114041585 3 | title: $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/info 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/tabbed-toc/previewTabbedToc.tid: -------------------------------------------------------------------------------- 1 | caption: Tabbed TOC 2 | tags: previewTabbedToc 3 | title: $:/palettes/preview/tab-foreground-selected/previewTabbedToc 4 | 5 | Related to Preview: Tabs (__palettes_preview_tab-foreground-selected) -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/language/buttons.multids: -------------------------------------------------------------------------------- 1 | title: $:/language/Buttons/ 2 | 3 | Aliasify/Caption: alias-link 4 | Aliasify/Hint: Wrap selection in square brackets and add alias postfix 5 | Make/Alias/Caption: make alias 6 | Make/Alias/Hint: Create a wikitext alias-link 7 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/Filter_FilterButtons_export.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Filter/FilterButtons/export 2 | tags: XX$:/tags/AdvancedSearchPlus/FilterButton 3 | 4 | {{$:/core/ui/AdvancedSearch/Filter/FilterButtons/export}} -------------------------------------------------------------------------------- /wikilabs/content-presentation/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/content-presentation/license 2 | 3 | [[Content-Presentation|https://wikilabs.github.io/#content-presentation]] (c) Mario Pietsch - 2021-<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/history 2 | 3 | V 9.1.1 - 2023-07-01 4 | 5 | * Update deprecated info in edition 6 | 7 | V 9.1.1 - 2022-03-27 8 | 9 | * update to TW v5.2.2 10 | * Deprecate this plugin. The used library is 9.1.1 11 | -------------------------------------------------------------------------------- /wikilabs/multicol-dropdown/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/multicol-dropdown/license 2 | 3 | [[Info-MultiCol-Dropdown-Plugin|https://wikilabs.github.io/#multicol-dropdown]] (c) Mario Pietsch - 2016<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/tabbed-toc/previewTabbedToc-1.tid: -------------------------------------------------------------------------------- 1 | caption: Tabbed TOC 1 2 | tags: previewTabbedToc 3 | title: $:/palettes/preview/tab-foreground-selected/previewTabbedToc-1 4 | 5 | Related to Preview: Tabs (__palettes_preview_tab-foreground-selected) -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/tabbed-toc/previewTabbedToc-2.tid: -------------------------------------------------------------------------------- 1 | caption: Tabbed TOC 2 2 | tags: previewTabbedToc 3 | title: $:/palettes/preview/tab-foreground-selected/previewTabbedToc-2 4 | 5 | Related to Preview: Tabs (__palettes_preview_tab-foreground-selected) -------------------------------------------------------------------------------- /wikilabs/persistent-states/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/persistent-states/license 2 | 3 | [[Persistent-States-Plugin|https://wikilabs.github.io/#persistent-states]] (c) Mario Pietsch - 2016<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/styles/advanced-search-plus-styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | .tc-tab-buttons svg { 5 | fill: #555; 6 | } 7 | 8 | .wltc-image-button svg { 9 | height: 1em; 10 | width: 1em; 11 | } -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/Filter_FilterButtons_dropdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Filter/FilterButtons/dropdown 2 | tags: XX$:/tags/AdvancedSearchPlus/FilterButton 3 | 4 | {{$:/core/ui/AdvancedSearch/Filter/FilterButtons/dropdown}} -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyphs/single.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyphs/single 2 | type: application/json 3 | 4 | { 5 | "glyph": "›", 6 | "element": "" 7 | } -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyphs/tick.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyphs/tick 2 | type: application/json 3 | 4 | { 5 | "glyph": "´", 6 | "element": "" 7 | } -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/readme 2 | 3 | Adds a possibilty to style text content with wikitext syntax 4 | 5 | It's possible to manipulate the rules behaviour with: 6 | 7 | `\rules only ticktext` 8 | `\rules excpet ticktext` 9 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/view-info-button/$__config_ViewToolbarButtons_Visibility_$__core_ui_Buttons_info.tid: -------------------------------------------------------------------------------- 1 | created: 20211108163044489 2 | modified: 20211108163044489 3 | title: $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/info 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /wikilabs/prng/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uheprnglicense 2 | license-text: $:/plugins/wikilabs/prng/prng.js 3 | 4 | [[prng functions|https://wikilabs.github.io/#prng] (c) Mario Pietsch - 2025- 5 | 6 | [[Public Domain License|$:/plugins/wikilabs/prng/prng.js]] 7 | -------------------------------------------------------------------------------- /wikilabs/dayjs/files/tiddlywiki.files: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": [ 3 | { 4 | "file": "dayjs-min.js", 5 | "fields": { 6 | "type": "application/javascript", 7 | "title": "$:/plugins/wikilabs/dayjs/dayjs-min.js", 8 | "module-type": "library" 9 | } 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/templates/StandardSearchTemplate-emptyMessage.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/StandardSearchTemplate-emptyMessage 2 | 3 | <$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]"> 4 | <$transclude/> 5 | 6 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet ML.tid: -------------------------------------------------------------------------------- 1 | created: 20220821204921376 2 | modified: 20230115190052591 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet ML 5 | type: text/vnd.tiddlywiki 6 | 7 | Mixed Lists 8 | 9 | # ordered 10 | #* unordered 11 | #*; term 12 | #*: definition -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet OL.tid: -------------------------------------------------------------------------------- 1 | created: 20220821191227008 2 | modified: 20230115185805564 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet OL 5 | type: text/vnd.tiddlywiki 6 | 7 | Ordered Lists 8 | 9 | # item 1 10 | # item 2 11 | ## level two 12 | ### level three -------------------------------------------------------------------------------- /wikilabs/dayjs/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/dayjs/history 2 | 3 | V 0.0.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.0.1 - 2022-11-27 9 | 10 | * initial release 11 | -------------------------------------------------------------------------------- /wikilabs/edit-tabs/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/edit-tabs/readme 2 | 3 | This plugin adds a little link icon to every tab. 4 | 5 | ''Important:'' This plugin changes the core tabs macro. 6 | 7 | ! Link-to-Tabs Settings 8 | 9 | {{$:/core/ui/ControlPanel/Settings/edit-tabs}} -------------------------------------------------------------------------------- /wikilabs/new-tiddler-from-search/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/new-tiddler-from-search/license 2 | 3 | [[New-Tiddler-From-Search-Plugin|https://wikilabs.github.io/#new-tiddler-from-search]] (c) Mario Pietsch - 2016<> 4 | 5 | https://opensource.org/licenses/BSD-3-Clause 6 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet UL.tid: -------------------------------------------------------------------------------- 1 | created: 20220821192058829 2 | modified: 20230115185855339 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet UL 5 | type: text/vnd.tiddlywiki 6 | 7 | Unordered Lists 8 | 9 | * item 1 10 | * item 2 11 | ** level two 12 | *** level three -------------------------------------------------------------------------------- /wikilabs/info-area/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-area/history 2 | 3 | V 0.0.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.0.1 2022-12-09 9 | 10 | * initial release 11 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/example/__palettes_preview_alert_example.tid: -------------------------------------------------------------------------------- 1 | count: 10 2 | created: 20220824110144443 3 | modified: 20220826211839158 4 | title: $:/palettes/preview/alert/example 5 | type: text/vnd.tiddlywiki 6 | 7 | Lorem ipsum dolor sit amet, consectetur adipisicing elit -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/aka-footer.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uni-link/aka-footer 2 | tags: $:/tags/ViewTemplate 3 | type: text/vnd.tiddlywiki 4 | 5 | <$list filter="[all[current]has[aliases]]"> 6 |
7 |
8 | 9 | {{||$:/plugins/wikilabs/uni-link/aka-footer/template}} 10 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet Quotes.tid: -------------------------------------------------------------------------------- 1 | created: 20220821205428297 2 | modified: 20230115190109205 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet Quotes 5 | type: text/vnd.tiddlywiki 6 | 7 | Blockquote Single Line 8 | 9 | > blockquote 10 | >> level two 11 | >>> level three -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet QuotesML.tid: -------------------------------------------------------------------------------- 1 | created: 20220821205712620 2 | modified: 20230115185817058 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet QuotesML 5 | type: text/vnd.tiddlywiki 6 | 7 | Blockquote Multiline 8 | 9 | <<< 10 | paragraph 1 11 | 12 | paragraph 2 13 | <<< -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/cheatsheet/license 2 | license-text: https://opensource.org/license/BSD-3-clause/ 3 | 4 | [[Cheatsheet|https://wikilabs.github.io/#cheatsheet]] (c) Mario Pietsch - 2023-<> 5 | 6 | [[https://opensource.org/license/BSD-3-clause/]] 7 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/inline/braille.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/inline/braille 2 | type: application/json 3 | 4 | { 5 | "prefix": "⠒", 6 | "suffix": "⠶", 7 | "element": "" 8 | } 9 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/system/config/$__config_ui_EditTemplate.tid: -------------------------------------------------------------------------------- 1 | description: This configuration changes the edit-cascade default from: $:/core/ui/EditTemplate to: $:/plugins/wikilabs/field-editor/EditTemplate 2 | title: $:/config/ui/EditTemplate 3 | 4 | $:/plugins/wikilabs/field-editor/EditTemplate -------------------------------------------------------------------------------- /wikilabs/space-space-newline/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/space-space-newline", 3 | "name": "Space Space Newline", 4 | "description": "Adds a new rule to create hard linebreaks", 5 | "version": "1.0.0", 6 | "list": "readme license history", 7 | "stability": "STABILITY_2_STABLE" 8 | } 9 | -------------------------------------------------------------------------------- /wikilabs/content-presentation/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/content-presentation/history 2 | 3 | V 0.0.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.0.1 9 | 10 | * initial test 2021.06.10 -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet CS.tid: -------------------------------------------------------------------------------- 1 | created: 20220821220043774 2 | modified: 20230115185948472 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet CS 5 | type: text/vnd.tiddlywiki 6 | 7 | Custom Styled List 8 | 9 | @@background-color:yellow;color:blue; 10 | * List One 11 | * List Two 12 | @@ -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/markdown-it-toc/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[markdown-it-toc|https://wikilabs.github.io/#markdown-it-toc]] (c) Mario Pietsch - 2022<> 5 | 6 | MIT-license -------------------------------------------------------------------------------- /wikilabs/markdown-it/files/tiddlywiki.files: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": [ 3 | { 4 | "file": "markdown-it.min.js", 5 | "fields": { 6 | "type": "application/javascript", 7 | "title": "$:/plugins/wikilabs/markdown-it/markdown-it-min.js", 8 | "module-type": "library" 9 | } 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/meta/docs/DarkLightStartup-status.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-switcher/DarkLightStartup-status 2 | 3 | Currently the following tiddlers are tagged <>: 4 | 5 | <> -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/files/tiddlywiki.files: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": [ 3 | { 4 | "file": "markdown-it-toc.js", 5 | "fields": { 6 | "type": "application/javascript", 7 | "title": "$:/plugins/wikilabs/markdown-it/markdown-it-toc.js", 8 | "module-type": "library" 9 | } 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /wikilabs/remove-states/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/remove-states/readme 2 | 3 | ! Overview 4 | 5 | This plugin creates a simple UI, to remove all state tiddlers. 6 | 7 | ! Simple UI 8 | 9 | [[$:/plugins/wikilabs/ui/remove-states]] 10 | 11 | {{$:/plugins/wikilabs/ui/remove-states}} 12 | -------------------------------------------------------------------------------- /wikilabs/saver-timestamps/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/saver-timestampls/history 2 | 3 | V 0.0.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.0.1 - 2024-03-08 9 | 10 | * initial realease 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/speciallinks/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/speciallinks", 3 | "name": "Speciallinks", 4 | "description": "Camel_Case wikilinks are possible", 5 | "core-version": ">=5.1.13", 6 | "version": "0.1.1", 7 | "list": "readme license history", 8 | "stability": "STABILITY_1_EXPERIMENTAL" 9 | } 10 | -------------------------------------------------------------------------------- /wikilabs/prng/tiddlers/lib/tiddlywiki.files: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": [ 3 | { 4 | "file": "prng.js", 5 | "fields": { 6 | "type": "application/javascript", 7 | "title": "$:/plugins/wikilabs/prng/prng.js", 8 | "module-type": "library" 9 | }, 10 | "suffix": "\nexports.prng = prng;\n" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /wikilabs/stories/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/stories/history 2 | 3 | V 0.3.1-beta - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.0-beta - 2023.10.24 9 | 10 | * initial release 11 | ** name: stories 12 | -------------------------------------------------------------------------------- /wikilabs/tocP/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/tocP", 3 | "name": "tocP", 4 | "description": "Parent Based - Table of Contents", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.1", 7 | "version": "1.0.1", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/bundler/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/bundler", 3 | "name": "Bundler", 4 | "description": "Simple UI to create tiddler bundles", 5 | "author": "pmario", 6 | "core-version": ">=5.3.0", 7 | "version": "1.2.0", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet HL.tid: -------------------------------------------------------------------------------- 1 | created: 20220822121844102 2 | modified: 20230115190006611 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet HL 5 | type: text/vnd.tiddlywiki 6 | 7 | Hard Linebreaks 8 | 9 | """ 10 | line 1 11 | line 2 12 | """ 13 | 14 | Standard text using an HTML `BR` tag
Next line -------------------------------------------------------------------------------- /wikilabs/keyvalues/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/keyvalues", 3 | "name": "Key Values", 4 | "description": "improve data-tiddler handling", 5 | "author": "pmario", 6 | "core-version": ">=5.1.14", 7 | "version": "2.2.1", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_page-background.tid: -------------------------------------------------------------------------------- 1 | caption: Page Background 2 | created: 20220824230508947 3 | modified: 20220902181759309 4 | search-term: page background 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/page-background 7 | type: text/vnd.tiddlywiki 8 | 9 | Page background -------------------------------------------------------------------------------- /wikilabs/persistent-states/tiddlers/$__config_SaverFilter.tid: -------------------------------------------------------------------------------- 1 | created: 20160902131547270 2 | modified: 20160902131552116 3 | title: $:/config/SaverFilter 4 | type: text/vnd.tiddlywiki 5 | 6 | [all[]] -[prefix[$:/HistoryList]] -[prefix[$:/StoryList]] -[status[pending]plugin-type[import]] -[[$:/isEncrypted]] -[[$:/UploadName]] -[prefix[$:/temp/]] 7 | -------------------------------------------------------------------------------- /wikilabs/click-effect/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/click-effect", 3 | "name": "Click Effect", 4 | "description": "A simple mouse-button click effect", 5 | "author": "pmario", 6 | "core-version": ">=5.1.22", 7 | "version": "0.3.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/dayjs/plugin.info.WIP: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/dayjs", 3 | "name": "Date Picker", 4 | "description": "A flexible date picker for TiddlyWiki", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "version": "0.0.2", 8 | "list": "readme history license", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_code-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Code 2 | created: 20220824120858159 3 | modified: 20220902181641972 4 | search-term: code background border foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/code-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | `inline code element` -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/example/__palettes_preview_tiddler-editor-fields-odd_example.tid: -------------------------------------------------------------------------------- 1 | created: 20220902211027547 2 | field-1: test field 1 3 | field-2: test field 2 4 | modified: 20220902211104291 5 | title: $:/palettes/preview/tiddler-editor-fields-odd/example 6 | type: text/vnd.tiddlywiki 7 | 8 | some text in tiddler example -------------------------------------------------------------------------------- /wikilabs/remove-states/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/remove-states", 3 | "name": "Remove States", 4 | "description": "Remove all state tiddlers. Simple UI", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.6", 7 | "version": "1.0.1", 8 | "list": "readme license", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet Table.tid: -------------------------------------------------------------------------------- 1 | created: 20220821215553807 2 | modified: 20230115185825531 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet Table 5 | type: text/vnd.tiddlywiki 6 | 7 | |utilityClass anotherClass|k 8 | |This is a caption |c 9 | |Header|Header|h 10 | |Cell1 |Cell2 | 11 | |Cell3 |Cell3 | 12 | |Footer|Footer|f -------------------------------------------------------------------------------- /wikilabs/external-core/templates/external-js/tiddlywiki.js.tiddlers.tid: -------------------------------------------------------------------------------- 1 | title: $:/core/templates/tiddlywiki5.js/tiddlers 2 | 3 | ` 4 | $tw.preloadTiddlerArray(`<$text text=<>/>`); 5 | $tw.preloadTiddlerArray([{ 6 | title: "$:/config/SaveWikiButton/Template", 7 | text: "$:/core/save/offline-external-js" 8 | }]); 9 | ` 10 | -------------------------------------------------------------------------------- /wikilabs/field-search/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/field-search", 3 | "name": "Field Search", 4 | "description": "New tabs are added to search results", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.18", 7 | "version": "1.0.1", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-switcher/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/palette-switcher", 3 | "name": "Palette Switcher", 4 | "description": "Advanced Palette Switcher", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.3.1", 7 | "version": "1.0.0", 8 | "list": "readme history license", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-watch/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-watch/license 2 | license-text: https://opensource.org/license/BSD-3-clause/ 3 | 4 | [[Palette Watch Plugin|https://wikilabs.github.io/#palette-watch]] (c) Mario Pietsch - 2023<> 5 | 6 | [[The 3-Clause BSD License|https://opensource.org/license/BSD-3-clause/]] 7 | -------------------------------------------------------------------------------- /wikilabs/trigger/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/trigger", 3 | "name": "Trigger", 4 | "description": "Activate actions, whenever the widget is shown", 5 | "author": "pmario", 6 | "core-version": ">=5.1.14", 7 | "version": "0.2.1-beta", 8 | "list": "readme license history", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/xenlist/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/xenlist/history 2 | 3 | V 0.0.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.0.1-experimental - 2021.01.25 9 | 10 | * initial release 11 | ** needed by bundler and wltm-open-story plugins 12 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/$__tags_AdvancedSearch.tid: -------------------------------------------------------------------------------- 1 | title: $:/tags/AdvancedSearchPlus 2 | list: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Standard $:/plugins/wikilabs/ui/AdvancedSearchPlus/System $:/plugins/wikilabs/ui/AdvancedSearchPlus/Shadows $:/plugins/wikilabs/ui/AdvancedSearchPlus/Filter $:/plugins/wikilabs/ui/AdvancedSearchPlus/Devider 3 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/system/import-cascade/$__plugins_bundler_ViewTemplateBodyFilters_import.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/bundler/ViewTemplateBodyFilters/import 2 | list-before: $:/config/ViewTemplateBodyFilters/import 3 | tags: $:/tags/ViewTemplateBodyFilterXX 4 | 5 | [field:plugin-type[import]then[$:/plugins/wikilabs/bundler/ui/ViewTemplate/body/import]] -------------------------------------------------------------------------------- /wikilabs/cheatsheet/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/cheatsheet", 3 | "name": "Cheatsheet TW WikiText", 4 | "description": "A compact wikitext syntax overview", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "version": "1.1.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyphs/pilcrow.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyphs/pilcrow 2 | type: application/json 3 | 4 | { 5 | "glyph": "¶", 6 | "element": "" 7 | } -------------------------------------------------------------------------------- /wikilabs/markdown-it/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/license 2 | 3 | [[TiddlyWiki plugin markdown-it|https://wikilabs.github.io/#markdown-it]] (c) Mario Pietsch - 2017<> 4 | https://opensource.org/licenses/BSD-3-Clause 5 | 6 | markdown-it has its own licnese: markdown-it - https://github.com//markdown-it/markdown-it - license MIT 7 | -------------------------------------------------------------------------------- /wikilabs/multicol-dropdown/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/multicol-dropdown/readme 2 | 3 | ! Overview 4 | 5 | * This plugin changes most dropdown dialogs into multi column dialogs, with CSS only. 6 | * This plugin is handy, if you have eg: ''a lot of tags'' 7 | 8 | ! Important 9 | 10 | This plugin does ''not'' change any core templates! -------------------------------------------------------------------------------- /wikilabs/webdav-lm/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/webdav-lm", 3 | "name": "WegDav lm", 4 | "description": "WebDav PUT saver - takes precedence", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.14", 7 | "version": "0.1.4-beta", 8 | "list": "readme history license", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/ViewTemplate/ViewTemplate_body_field.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-editor/ViewTemplate/body/field 2 | code-body: yes 3 | 4 | <$transclude field={{{[{$:/state/wikilabs/viewtemplate/body/active/field}get[text]trim[]!match[text]]}}}> 5 | 6 | <$transclude tiddler="$:/core/ui/ViewTemplate/body/default" /> 7 | 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/info-tagmap/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/info-tagmap", 3 | "name": "Info TagMap", 4 | "description": "Adds a Tag-Map tab to the tiddler info section", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.0", 7 | "version": "0.2.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/plugin.info.TEST: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/markdown-it/markdown-it-toc", 3 | "name": "markdown-it-toc", 4 | "description": "Markdown-It TOC", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "version": "0.0.2", 8 | "list": "readme history license", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-switcher/license 2 | license-text: https://opensource.org/license/BSD-3-clause/ 3 | 4 | [[Palette Switcher Plugin|https://wikilabs.github.io/#palette-switcher]] (c) Mario Pietsch - 2023<> 5 | 6 | [[The 3-Clause BSD License|https://opensource.org/license/BSD-3-clause/]] 7 | -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trim-whitespace/license 2 | license-text: https://opensource.org/license/BSD-3-clause/ 3 | 4 | [[Trim Whitespace Plugin|https://wikilabs.github.io/#trim-whitespace]] (c) Mario Pietsch - 2023-<> 5 | 6 | [[The 3-Clause BSD License|https://opensource.org/license/BSD-3-clause/]] 7 | -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/ui/edit-sortby.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/ui/edit/sortby 2 | type: text/vnd.tiddlywiki 3 | 4 | !! [[Field Sort order|$:/plugins/wikilabs/field-search/ui/edit/sortby]] 5 | <<< 6 | Sort order: [[$:/config/field-search/sortby]] 7 | 8 | <$edit-text class="wltc-max-width" tiddler="$:/config/field-search/sortby" tag="input"/> 9 | <<< -------------------------------------------------------------------------------- /wikilabs/markdown-it/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/markdown-it", 3 | "description": "Markdown parser (Commonmark compatible)", 4 | "name": "Markdown It", 5 | "author": "pmario", 6 | "core-version": ">=5.0.0", 7 | "version": "9.1.1-DEPRECATED", 8 | "list": "readme usage history license", 9 | "stability": "STABILITY_0_DEPRECATED" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/multicol-dropdown/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/multicol-dropdown", 3 | "name": "Multi Column Tag Dropdown", 4 | "description": "contains flex-box CSS only", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.0", 7 | "version": "1.0.3", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/pragma-comment/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/pragma-comment", 3 | "name": "Pragma Comment", 4 | "description": "Add possibility to add 'pragma comments'", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "0.1.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_0_DEPRECATED" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/thin-scrollbars/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/thin-scrollbars", 3 | "name": "Thin Scrollbars", 4 | "description": "A bit of CSS to modify default scrollbars", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "0.1.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/uni-link/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/uni-link", 3 | "description": "Enhances the prettylink-parser" , 4 | "name": "Uni-Link", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.3.0", 7 | "plugin-type": "plugin", 8 | "version":"3.0.2", 9 | "list": "readme history license", 10 | "stability": "STABILITY_2_STABLE" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/xenlist/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/xenlist", 3 | "name": "xenlist", 4 | "description": "New enlist operator that understands comments and filter syntax", 5 | "author": "pmario", 6 | "core-version": ">=5.1.14", 7 | "version": "0.0.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/edit-tabs/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/edit-tabs", 3 | "name": "Edit Tabs", 4 | "description": "Internal link- or edit-buttons are added to tabs if selected", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "3.0.2", 8 | "list": "readme history license", 9 | "stability": "STABILITY_0_DEPRECATED" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/info-area/plugin.info.WIP: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/info-area", 3 | "name": "Info Area", 4 | "description": "Advanced Tiddler Info Area at the bottom of a tiddler", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "version": "0.0.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/thin-scrollbars/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/thin-scrollbars/history 2 | 3 | V 0.1.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.1 - 2022-03-27 9 | 10 | * update to TW v5.2.2 11 | 12 | V 0.1.0 - 2021-01-05 13 | 14 | * initial release 15 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/advanced-search-plus", 3 | "name": "Advance Search Plus", 4 | "description": "Adds some powerfull search tools", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "1.0.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/bundler/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Bundler-Plugin|https://wikilabs.github.io/#bundler]] (C) Mario Pietsch - 2017-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/edit-Buttons-info.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/core/images/info-button}} {{$:/language/Buttons/Info/Caption}} 2 | description: {{$:/language/Buttons/Info/Hint}} 3 | list-before: $:/core/ui/Buttons/cancel 4 | tags: $:/tags/EditToolbar 5 | title: $:/plugins/wikilabs/field-editor/edit/Buttons/info 6 | 7 | <$transclude tiddler="$:/core/ui/Buttons/info"/> -------------------------------------------------------------------------------- /wikilabs/info-session/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/info-session", 3 | "name": "Info Session", 4 | "description": "Info button, with session persistent open/closed status", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.6", 7 | "version": "0.1.6", 8 | "list": "readme license history", 9 | "stability": "STABILITY_0_DEPRECATED" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/new-tiddler-from-search/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/new-tiddler-from-search", 3 | "name": "New Tiddler from Search", 4 | "description": "Extends the search interface", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.6", 7 | "version": "1.0.3", 8 | "list": "readme license history", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trails/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Trails Navigation|https://wikilabs.github.io/#trails]] (c) Mario Pietsch - 2023-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trigger/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Trigger-Plugin|https://wikilabs.github.io/#trigger]] (C) Mario Pietsch - 2019-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/trim-whitespace", 3 | "name": "Trim Whitespace", 4 | "description": "New Editor Button to Trim Whitespace from Selections", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "1.0.1", 8 | "list": "readme history license", 9 | "stability": "STABILITY_2_STABLE" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet MCall.tid: -------------------------------------------------------------------------------- 1 | code-body: yes 2 | created: 20220822124925667 3 | modified: 20230115190043040 4 | tags: [[Wikitext Cheatsheet]] 5 | title: $:/Cheatsheet MCall 6 | type: text/vnd.tiddlywiki 7 | 8 | 9 | \import [[$:/Cheatsheet MDefinition]] 10 | 11 | <> 12 | 13 | <> -------------------------------------------------------------------------------- /wikilabs/info-tagmap/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-tagmap/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Info-Tag-Map|https://wikilabs.github.io/#info-tagmap]] (c) Mario Pietsch - 2016<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/keyvalues/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/keyvalues/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Key/Values-Plugin|https://wikilabs.github.io/#keyvalues]] (C) Mario Pietsch - 2019<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_blockquote-bar.tid: -------------------------------------------------------------------------------- 1 | caption: Blockquote 2 | created: 20220824120314274 3 | modified: 20220902164458383 4 | search-term: blockquote bar 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/blockquote-bar 7 | type: text/vnd.tiddlywiki 8 | 9 | <<< 10 | some text 11 | 12 | some more text 13 | <<< 14 | -------------------------------------------------------------------------------- /wikilabs/persistent-states/tiddlers/$__config_SyncFilter.tid: -------------------------------------------------------------------------------- 1 | created: 20160902131452473 2 | modified: 20160902131509079 3 | title: $:/config/SyncFilter 4 | type: text/vnd.tiddlywiki 5 | 6 | [is[tiddler]] -[[$:/core]] -[[$:/library/sjcl.js]] -[prefix[$:/boot/]] -[prefix[$:/HistoryList]] -[status[pending]plugin-type[import]] -[[$:/isEncrypted]] -[prefix[$:/status/]] -[prefix[$:/temp/]] 7 | -------------------------------------------------------------------------------- /wikilabs/stories/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/stories/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Open Story Plugin|https://wikilabs.github.io/#stories]] (C) Mario Pietsch - 2019<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uni-link/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Uni-Link Plugin|https://wikilabs.github.io/#uni-link]] (C) Mario Pietsch - 2017-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/custom-markup", 3 | "name": "Custom Markup", 4 | "description": "Adds a possibilty to style text content with wikitext syntax", 5 | "dependents": ["$:/plugins/wikilabs/pragma-comment"], 6 | "version": "0.22.1-beta", 7 | "list": "readme license history", 8 | "stability": "STABILITY_1_EXPERIMENTAL" 9 | } 10 | -------------------------------------------------------------------------------- /wikilabs/edit-tabs/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/edit-tabs/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Edit-Tabs-Macro|https://wikilabs.github.io/#edit-tabs]] (c) Mario Pietsch - 2018-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/config/config-EditTemplateBodyFilters-default.tid: -------------------------------------------------------------------------------- 1 | description: This filter completely replaces the default EditTemplate/body 2 | list-before: $:/config/EditTemplateBodyFilters/default 3 | tags: $:/tags/EditTemplateBodyFilter 4 | title: $:/config/wikilabs/EditTemplateBodyFilters/default 5 | 6 | [[$:/plugins/wikilabs/ui/EditTemplate/body]] -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/css/column-styles.css: -------------------------------------------------------------------------------- 1 | /* columns responsive*/ 2 | .c2, .c3, .columns2, .columns3 { 3 | column-rule: 1px solid #ccc; 4 | column-gap: 2em; 5 | } 6 | 7 | .c2, .columns2 { column-count:2;} 8 | .c3, .columns3 { column-count:3;} 9 | 10 | .-gap { column-gap: initial;} 11 | .-cr { column-rule: initial;} 12 | 13 | .wltc-max-width { 14 | width: 100%; 15 | } -------------------------------------------------------------------------------- /wikilabs/info-area/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-area/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Info Area Plugin|https://wikilabs.github.io/#info-area]] (C) Mario Pietsch - 2017<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/saver-timestamps/plugin.info.WIP: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/saver-timestamps", 3 | "name": "Saver Timestamps", 4 | "description": "This plugin adds saving timestamp tiddlers to the store", 5 | "author": "pmario", 6 | "core-version": ">=5.3.0", 7 | "version": "0.0.2", 8 | "list": "readme license history", 9 | "stability": "STABILITY_1_EXPERIMENTAL" 10 | } 11 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/palette-manager", 3 | "description": " - to be included into the TW core", 4 | "name": "Palette Manager", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.14", 7 | "plugin-type": "plugin", 8 | "version":"1.0.3", 9 | "list": "license readme history", 10 | "stability": "STABILITY_2_STABLE" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/speciallinks/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/speciallinks/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Speciallinks-Plugin|https://wikilabs.github.io/#speciallinks]] (c) Mario Pietsch - 2020<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/stories/plugin.info.WIP: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/stories", 3 | "name": "Open Story", 4 | "description": "Open several story tiddlers", 5 | "author": "pmario", 6 | "core-version": ">=5.1.14", 7 | "version": "0.3.1-beta", 8 | "dependents": ["$:/plugins/wikilabs/xenlist"], 9 | "list": "readme license history", 10 | "stability": "STABILITY_1_EXPERIMENTAL" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/click-effect/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/click-effect/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Click-Effect-Plugin|https://wikilabs.github.io/#click-effect]] (C) Mario Pietsch - 2020-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyphs/angle.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyphs/angle 2 | type: application/json 3 | 4 | { 5 | "glyph": "»", 6 | "disabled": "no", 7 | "element": "" 8 | } -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/ViewTemplate/config/ViewTemplateBodyFilters_body_field.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/ViewTemplateBodyFilters/body/field 2 | tags: $:/tags/ViewTemplateBodyFilter 3 | list-before: $:/config/ViewTemplateBodyFilters/default 4 | 5 | [{$:/state/wikilabs/viewtemplate/body/active/field}get[text]trim[]!match[text]then[$:/plugins/wikilabs/field-editor/ViewTemplate/body/field]else[]] -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Field Search-Plugin|https://wikilabs.github.io/#field-search]] (c) Mario Pietsch - 2019<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/link-to-tabs/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/link-to-tabs/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Link-to-Tabs-Macro|https://wikilabs.github.io/#link-to-tabs]] (c) Mario Pietsch - 2016<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_tiddler-subtitle-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Tiddler Subtitle 2 | created: 20220825131449922 3 | modified: 20220902171115239 4 | search-term: tiddler subtitle foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/tiddler-subtitle-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | {{||$:/core/ui/ViewTemplate/subtitle}} -------------------------------------------------------------------------------- /wikilabs/wltm-open-story/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/tm-open-story/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Open Story Plugin|https://wikilabs.github.io/#tm-open-story]] (C) Mario Pietsch - 2019-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet HR.tid: -------------------------------------------------------------------------------- 1 | created: 20220822122255279 2 | modified: 20230115190014403 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet HR 5 | type: text/vnd.tiddlywiki 6 | 7 | The three dashes `---` need to be in their own line with _no_ leading or trailing spaces 8 | 9 | --- 10 | 11 | or you can use the HTML `
` element
which has no such restrictions 12 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-editor/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Multiline Field Editor|https://wikilabs.github.io/#field-editor]] (c) Mario Pietsch - 2021-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/title-cascade/$__config_ViewTemplateTitleFilters_palette.tid: -------------------------------------------------------------------------------- 1 | created: 20220901092557267 2 | list-before: $:/config/ViewTemplateTitleFilters/system 3 | modified: 20220901120329231 4 | tags: $:/tags/ViewTemplateTitleFilter 5 | title: $:/config/ViewTemplateTitleFilters/palette 6 | type: text/vnd.tiddlywiki 7 | 8 | [tag[$:/tags/Palette]then[$:/core/ui/ViewTemplate/title/palette]] -------------------------------------------------------------------------------- /wikilabs/persistent-states/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/persistent-states", 3 | "description": "Makes all state tiddlers persistent", 4 | "name": "Persistent States", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.0", 7 | "version":"1.0.5", 8 | "plugin-type": "plugin", 9 | "list": "license readme history", 10 | "stability": "STABILITY_1_EXPERIMENTAL" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/wltm-open-story/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/tm-open-story", 3 | "name": "Open Story", 4 | "description": "Open several story tiddlers", 5 | "author": "pmario", 6 | "core-version": ">=5.1.14", 7 | "version": "0.3.1-beta", 8 | "dependents": ["$:/plugins/wikilabs/xenlist"], 9 | "list": "readme license history", 10 | "stability": "STABILITY_1_EXPERIMENTAL" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/ui/tiddler-info/listTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20210125174245130 2 | modified: 20210127212537087 3 | tags: 4 | title: $:/plugins/wikilabs/ui/TiddlerInfo/listTemplate 5 | type: text/vnd.tiddlywiki 6 | 7 | <$macrocall $name="list-links-custom" tiddler=<> field="text" type="div" subtype="div" class="" itemTemplate="$:/plugins/wikilabs/bundler/list-links-custom/element-delete"/> -------------------------------------------------------------------------------- /wikilabs/field-visibility/tiddlers/ui/TiddlerFields.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-visibility/TiddlerFields 2 | 3 | 4 | 5 | 6 | <$list filter="[all[current]fields[]sort[title]] -text" template="$:/plugins/wikilabs/field-visibility/TiddlerFieldTemplate" variable="listItem"/> 7 | 8 |
Field NameValueEditor
9 | -------------------------------------------------------------------------------- /wikilabs/trails/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/trails", 3 | "name": "Trails", 4 | "description": "Show a breadcrumbs trail to visualize the context", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.1", 7 | "icon": "$:/plugins/wikilabs/trails/icon", 8 | "version": "1.1.1", 9 | "list": "readme settings license history", 10 | "stability": "STABILITY_2_STABLE" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Advanced Search Plus|https://wikilabs.github.io/#advanced-search-plus]] (c) Mario Pietsch - 2016-2025 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/shadow/shadow-search-plus-new.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/shadow-search-plus-new 2 | 3 | <> -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/standard/standard-search-plus-new.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/standard-search-plus-new 2 | 3 | <> -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/system/system-search-plus-new.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/system-search-plus-new 2 | 3 | <> -------------------------------------------------------------------------------- /wikilabs/field-visibility/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-visibility/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Field Visibility Toggle|https://wikilabs.github.io/#field-visibility]] (c) Mario Pietsch - 2021<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-manager/license 2 | 3 | [[Palette-Manager-Plugin|https://wikilabs.github.io/#palette-manager]] (c) Mario Pietsch - 2022<> 4 | 5 | [[Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 6 | 7 | The full license text can be found at the link above. 8 | -------------------------------------------------------------------------------- /wikilabs/palette-watch/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/palette-watch", 3 | "name": "Palette Watch", 4 | "description": "Advanced Palette Watch", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.3.1", 7 | "version": "0.9.1", 8 | "list": "readme history license", 9 | "stability": "STABILITY_1_EXPERIMENTAL", 10 | "dependents": ["$:/plugins/wikilabs/palette-switcher"] 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/prng/plugin.info.wip: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/prng", 3 | "name": "Pseudo Random Number Generator", 4 | "description": "Ultra-High Entropy Pseudo-Random Number Generator", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.3.3", 7 | "icon": "$:/plugins/wikilabs/prng/icon", 8 | "version": "0.1.0", 9 | "list": "readme settings license history", 10 | "stability": "" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/breadcrumbs-macro.tid: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Macro 2 | title: $:/plugins/wikilabs/trails/breadcrumbs-macro 3 | code-body: yes 4 | 5 | \define breadcrumbs(start, stop, exclude, label, field:"parent" mode:"story") 6 | <$macrocall 7 | $name="trail" start=<<__start__>> stop=<<__stop__>> 8 | exclude=<<__exclude__>> label=<<__label__>> field=<<__field__>> mode=<<__mode__>> 9 | /> 10 | \end 11 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/styles/styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/unilink/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | .wltc-15-gap { 5 | margin-left: 1.5em; 6 | } 7 | 8 | .wltc-muted-forground { 9 | color: #ffffff; 10 | } 11 | 12 | .wltc-options-button svg { 13 | fill: #ccc; 14 | width: 1.3em; 15 | float: right; 16 | margin-top: -7px; 17 | } 18 | 19 | .wltc-full-width { 20 | width: 100%; 21 | } -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/system/viewtemplate-cascade/$__config_ViewTemplateBodyFilters_filters.tid: -------------------------------------------------------------------------------- 1 | created: 20230103225817080 2 | list-before: $:/config/ViewTemplateBodyFilters/code-body 3 | modified: 20230103230312279 4 | tags: $:/tags/ViewTemplateBodyFilter 5 | title: $:/config/ViewTemplateBodyFilters/filters 6 | type: text/vnd.tiddlywiki 7 | 8 | [tag[$:/tags/Filter]then[$:/plugin/wikilabs/ui/ViewTemplate/body/filters]] -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/inline-toggle.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/inline-toggle 2 | 3 | 4 | 5 | 6 | {{$:/config/wikilabs/custom-markup/icons/inline/active##element}} 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor-EditTemplate.tid: -------------------------------------------------------------------------------- 1 | description: This template adds tiddlerInfoState, which is needed for the info-area-button in edit mode then it calls the core EditTemplate 2 | title: $:/plugins/wikilabs/field-editor/EditTemplate 3 | 4 | <$let tiddlerInfoState=<> > 5 | 6 | <$transclude tiddler="$:/core/ui/EditTemplate" /> 7 | 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/saver-timestamps/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/saver-timestampls/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Saver Timestampls Plugin|https://wikilabs.github.io/#saver-timestampls]] (C) Mario Pietsch - 2017<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/ui/tiddler-info/listFilteredTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20210127184606709 2 | modified: 20210127213056496 3 | tags: 4 | title: $:/plugins/wikilabs/ui/TiddlerInfo/listFilteredTemplate 5 | type: text/vnd.tiddlywiki 6 | 7 | <$macrocall $name="list-links-custom" tiddler=<> field="filter" type="div" subtype="div" class="" itemTemplate="$:/plugins/wikilabs/bundler/list-links-custom/element-delete"/> -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/css/styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | .wltc-show-system { 5 | float: right; 6 | cursor: pointer; 7 | } 8 | 9 | .wltc-show-system input { 10 | visibility: hidden; 11 | margin-left: -1em; 12 | width: initial; 13 | } 14 | 15 | .wltc-show-system input[checked] + span{ 16 | color: blue; 17 | font-weight: bold; 18 | } -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/_templates_tid-tiddler.tid: -------------------------------------------------------------------------------- 1 | created: 20190906130953559 2 | modified: 20190906131037641 3 | tags: 4 | title: /templates/tid-tiddler 5 | type: text/vnd.tiddlywiki 6 | 7 | <$fields exclude='text bag created modified' template='$name$: $value$ 12 | '>` 13 | `<$view field="text" format="text" /> -------------------------------------------------------------------------------- /wikilabs/link-to-tabs/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/link-to-tabs", 3 | "name": "Link to Tabs", 4 | "description": "Internal links are added to tabs if selected", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.3.3", 7 | "icon": "$:/plugins/wikilabs/link-to-tabs/icon", 8 | "version": "3.0.1", 9 | "list": "readme settings license history", 10 | "stability": "STABILITY_2_STABLE" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/space-space-newline/tiddlers/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/space-space-newline/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[Space Space Newline-Plugin|https://wikilabs.github.io/#space-space-newline]] (c) Mario Pietsch - 2020<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/filter/filter-search-plus-new.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/filter-search-plus-new 2 | 3 | \whitespace trim 4 | <> -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet QuotesMIX.tid: -------------------------------------------------------------------------------- 1 | created: 20220821210008513 2 | modified: 20230115185753277 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet QuotesMIX 5 | type: text/vnd.tiddlywiki 6 | 7 | Blockquote Mixed 8 | 9 | <<< 10 | paragraph 1 11 | 12 | > inner quote, level 1 13 | 14 | >> inner quote, level 2 15 | 16 | some more text 17 | <<< ref: [[https://tiddlywiki.com/#Block Quotes in WikiText]] -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/edit-button-TiddlerInfo.tid: -------------------------------------------------------------------------------- 1 | list-before: $:/core/ui/EditTemplate/title 2 | tags: $:/tags/EditTemplate 3 | title: $:/plugins/wikilabs/ui/EditTemplate/TiddlerInfo 4 | 5 | <$reveal type="nomatch" text="" default="" state=<> class="tc-tiddler-info tc-popup-handle" animate="yes" retain="yes"> 6 | 7 | <$transclude tiddler="$:/core/ui/TiddlerInfo" mode="block"/> 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_highlight-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Highlight 2 | created: 20221116121018728 3 | modified: 20221116121155406 4 | search-term: highlight background foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/highlight-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | ``` 10 | Some @@highlighted@@ text. 11 | ``` 12 | 13 | Some @@highlighted@@ text. -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-switcher/history 2 | 3 | V 1.0.0 - 2025-08-24 4 | 5 | * Release as UI plugin only, since core does not support dynamic switching 6 | 7 | V 0.1.1 - 2024-05-23 8 | 9 | * Add stability badges 10 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 11 | 12 | V 0.1.0 - 2023-09-29 13 | 14 | * initial release 15 | -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trim-whitespace/history 2 | 3 | V 1.0.1 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 1.0.0 - 2024.04.18 9 | 10 | * Settings are now in $:/ControlPanel -> ''Settings'' -> ''WikiLabs'' tab 11 | 12 | V 0.1.0 - 2023-05-04 13 | 14 | * initial release 15 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet HTML.tid: -------------------------------------------------------------------------------- 1 | created: 20220821220043774 2 | modified: 20230115190023673 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet HTML 5 | type: text/vnd.tiddlywiki 6 | 7 |

A h2 heading

8 |

9 | Some text in a paragraph 10 |

11 |

    12 |
  • List level 1
  • 13 |
      14 |
    1. Ordered list level 2
    2. 15 |
    16 |
  • List level 1 element 2
  • 17 |
18 | -------------------------------------------------------------------------------- /wikilabs/content-presentation/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/presentation-test", 3 | "name": "Presentation Test", 4 | "description": "A plugin to test subtypes", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "version": "0.0.2", 8 | "list": "readme license history", 9 | "plugin-type": "content", 10 | "plugin-subtype": "Presentation", 11 | "stability": "STABILITY_1_EXPERIMENTAL" 12 | } 13 | -------------------------------------------------------------------------------- /wikilabs/info-tagmap/tiddlers/$__wikilabs_ui_TiddlerInfo_TagMap_Styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/wikilabs/ui/TiddlerInfo/TagMap/Styles 2 | tags: $:/tags/Stylesheet 3 | type: text/plain 4 | 5 | .flexbox { 6 | display: -webkit-flex; 7 | display: -ms-flexbox; 8 | display: flex; 9 | overflow: hidden; 10 | flex-direction: row; 11 | flex-flow: row wrap; 12 | } 13 | 14 | .flexbox .col { 15 | flex: 1 1 33%; 16 | margin-bottom: 1em; 17 | } -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_wikilist-url.tid: -------------------------------------------------------------------------------- 1 | caption: Wikilist 2 | created: 20220825150217084 3 | modified: 20220826143643298 4 | tags: 5 | title: $:/palettes/preview/wikilist-url 6 | type: text/vnd.tiddlywiki 7 | 8 | It seems they are used for TiddlyDesktop 9 | 10 | TODO: 11 | 12 | * Check if it's possible to dynamically add to the palette tiddlers?! 13 | * Test with TD and add a screenshot -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/ui/edit-exclude.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/ui/edit/exclude 2 | type: text/vnd.tiddlywiki 3 | 4 | !! [[Exclude Fields|$:/plugins/wikilabs/field-search/ui/edit/exclude]] 5 | <<< 6 | The following fields are excluded: ''{{$:/config/field-search/exclude}}'' 7 | 8 | Exclude from field list: 9 | <$edit-text class="wltc-max-width" tiddler="$:/config/field-search/exclude" tag="input"/> 10 | <<< -------------------------------------------------------------------------------- /wikilabs/youtube-lite/plugin.info.WIP: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/youtube-lite", 3 | "name": "Youtube Lite Viewer", 4 | "description": "A light weight youtube view using a no-cookie embed", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "version": "0.0.1", 8 | "icon": "$:/plugins/wikilabs/youtube-lite/icon", 9 | "list": "readme license history", 10 | "stability": "STABILITY_1_EXPERIMENTAL" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/cheatsheet/readme 2 | 3 | This plugin adds the [[Wikitext Cheatsheet]] overview to your wiki. 4 | 5 | ''Cheatsheet Settings'' 6 | 7 | This plugin adds 2 new "Show Wikitext Cheatsheet" buttons and an editor-shortcut to your wiki 8 | 9 | * A "Cheatsheet" button is added as a "page button" 10 | * A "Cheatsheet" button is added to the edit toolbars .. Shortcut F1 11 | -------------------------------------------------------------------------------- /wikilabs/info-tagmap/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-tagmap/readme 2 | 3 | This plugin adds a new tab to the tiddler info section. It's a multi column list of all tiddler tags plus all tagged tiddlers. 4 | 5 | This plugin doesn't change any core templates. 6 | 7 | The code below can be copied into the tag tiddlers. 8 | 9 | ``` 10 | All tiddlers tagged: {{!!title}} 11 | 12 | <> 13 | ``` -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/filter/filter-search.svg.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/filter-search.svg 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /wikilabs/dayjs/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/dayjs/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | [[dayjs|https://wikilabs.github.io/#dayjs]] (c) Mario Pietsch - 2022-<> 5 | 6 | [[Creative Commons Attribution-NonCommercial-ShareAlike|https://creativecommons.org/licenses/by-nc-sa/4.0/]] 7 | 8 | datejs -- v1.11.6 -- MIT-License: https://github.com/iamkun/dayjs/blob/dev/LICENSE*/ 9 | -------------------------------------------------------------------------------- /wikilabs/field-visibility/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/field-visibility", 3 | "name": "Toggle Field Visibility", 4 | "description": "Change the field visibility in the tiddler info area fields tab", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.1.15", 7 | "icon": "$:/plugins/wikilabs/field-visibility/icon", 8 | "version": "1.0.1", 9 | "list": "readme license history", 10 | "stability": "STABILITY_2_STABLE" 11 | } 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_alert-muted-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Alert 2 | created: 20220824104445923 3 | modified: 20220903111935250 4 | search-term: alert background border highlight muted foreground 5 | tags: 6 | title: $:/palettes/preview/alert-muted-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | <$tiddler tiddler="$:/palettes/preview/alert/example"> 10 | {{||$:/core/ui/AlertTemplate}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_site-title-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Site Title 2 | created: 20220825012034243 3 | modified: 20220902181834158 4 | search-term: site title foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/site-title-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | \define tv-wikilinks() no 10 | 11 | !.tc-site-title {{$:/SiteTitle}} 12 | 13 | Only work for "non-links" titles -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/meta/icon.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trim-whitespace/icon 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/webdav-lm/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/webdav-lm/readme 2 | 3 | ''Important:'' This plugin takes precedence over the core webDav PUT saver! 4 | 5 | This saver uses `last-modified` and `if-unmodified-since` HTTP header attributes, to detect file inconsistencies, 6 | which allows the server to activate server-side file compression. 7 | 8 | The core PUT saver uses etags, which don't work, if server-side file compression is active. 9 | -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/field-search/readme 2 | 3 | This plugin adds a "Field Search" tab to the search results 4 | 5 | {{$:/plugins/wikilabs/field-search/CP/Settings/field-search}} 6 | 7 | !! This plugin replaces the following system modules 8 | 9 |
    <$list filter="[[$:/plugins/wikilabs/field-search]plugintiddlers[]prefix[$:/core/]]">
  • <$link to=<>><>
-------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/uni-link-style.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/uni-link/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | .uni-link { 5 | color: navy; 6 | } 7 | 8 | .uni-caption { 9 | color: #2a699f; 10 | } 11 | 12 | .uni-subtitle { 13 | color: #0e8446; 14 | } 15 | 16 | .uni-alias { 17 | color: #7557d8; 18 | } 19 | 20 | .uni-alias-missing { 21 | color: red; 22 | } 23 | 24 | .uni-link-sidebar .tc-tab-buttons { 25 | padding-top: 0; 26 | } 27 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/_config_WLCM_InlineSet_Config.tid: -------------------------------------------------------------------------------- 1 | created: 20210915084029691 2 | modified: 20210915084041216 3 | title: /config/WLCM/InlineSet/Config 4 | type: text/vnd.tiddlywiki 5 | 6 | \import [[/config/WLCM/InlineSet/Config/Macros]] 7 | 8 | \define characterRange() a b c d e f g h 9 | 10 | ! Select an Inline Set 11 | 12 | <> 13 | 14 | This configuration allows you to define "inline snippets" for the selected set 15 | 16 | <
> -------------------------------------------------------------------------------- /wikilabs/field-editor/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/wikilabs/field-editor", 3 | "name": "Multiline Field Editor", 4 | "description": "Side by side multiline field editor", 5 | "author": "Mario Pietsch", 6 | "core-version": ">=5.2.0", 7 | "icon": "$:/plugins/wikilabs/field-editor/icon", 8 | "version": "1.1.0", 9 | "list": "readme license history", 10 | "dependents": ["$:/plugins/wikilabs/field-visibility"], 11 | "stability": "STABILITY_2_STABLE" 12 | } 13 | -------------------------------------------------------------------------------- /wikilabs/persistent-states/tiddlers/$__plugins_wikilabs_remove-states.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/persistent-states 2 | 3 | \define theFilter() 4 | [prefix[$:/state/]] 5 | \end 6 | 7 | <$button> 8 | <$action-deletetiddler $filter=<> /> 9 | Delete all: ''~$:/state/'' tiddlers 10 | 11 | 12 | <$list filter=<> > 13 | <$button> 14 | <$action-deletetiddler $tiddler=<>/> 15 | x 16 | - <$link />
17 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/_config_WLCM_LineSet_Config.tid: -------------------------------------------------------------------------------- 1 | created: 20210425113849845 2 | modified: 20210426141701028 3 | tags: 4 | title: $:/config/WLCM/LineSet/Config 5 | type: text/vnd.tiddlywiki 6 | 7 | \import [[$:/config/WLCM/LineSet/Config/Macros]] 8 | 9 | \define characterRange() a b c d e f g h 10 | 11 | ! Select a Prefix Set 12 | 13 | <> 14 | 15 | This configuration allows you to define "line prefixes" for the selected set 16 | 17 | <
> -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/inline/corner.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/inline/corner 2 | type: application/json 3 | 4 | { 5 | "prefix": "❮", 6 | "suffix": "❯", 7 | "element": "" 8 | } -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/Filter.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Filter 2 | caption: 3 | info: {{$:/language/Search/Filter/Caption}} 4 | hint: {{$:/language/Search/Filter/Hint}} 5 | icon: $:/plugins/wikilabs/advanced-search-plus/filter-search.svg 6 | tags: $:/tags/AdvancedSearchPlus 7 | 8 | <$transclude tiddler="$:/plugins/wikilabs/advanced-search-plus/filter-search-plus-new"/> 9 | <$transclude tiddler="$:/core/ui/AdvancedSearch/Filter"/> -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/System.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/System 2 | caption: 3 | info: {{$:/language/Search/System/Caption}} 4 | hint: {{$:/language/Search/System/Hint}} 5 | icon: $:/plugins/wikilabs/advanced-search-plus/system-search.svg 6 | tags: $:/tags/AdvancedSearchPlus 7 | 8 | <$transclude tiddler="$:/plugins/wikilabs/advanced-search-plus/system-search-plus-new"/> 9 | <$transclude tiddler="$:/core/ui/AdvancedSearch/System"/> -------------------------------------------------------------------------------- /wikilabs/youtube-lite/tiddlers/meta/license.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/youtube-lite/license 2 | license-text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode 3 | 4 | Code License: https://github.com/paulirish/lite-youtube-embed/blob/master/LICENSE 5 | 6 | [[Youtube Lite Plugin|https://wikilabs.github.io/#youtube-lite]] (c) Mario Pietsch - 2022-<> 7 | 8 | [[Creative Commons Attribution-ShareAlike|https://creativecommons.org/licenses/by-sa/4.0/]] 9 | 10 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/Shadows.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Shadows 2 | caption: 3 | info: {{$:/language/Search/Shadows/Caption}} 4 | hint: {{$:/language/Search/Shadows/Hint}} 5 | icon: $:/plugins/wikilabs/advanced-search-plus/shadow-search.svg 6 | tags: $:/tags/AdvancedSearchPlus 7 | 8 | <$transclude tiddler="$:/plugins/wikilabs/advanced-search-plus/shadow-search-plus-new"/> 9 | <$transclude tiddler="$:/core/ui/AdvancedSearch/Shadows"/> -------------------------------------------------------------------------------- /wikilabs/palette-watch/tiddlers/meta/docs/DarkLightChangeActions-status.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-watch/docs/DarkLightChangeActions-status 2 | 3 | Currently the following tiddlers are tagged ~$:/tags/DarkLightChangeActions: 4 | 5 | <> 6 | 7 | Currently the following tiddlers are tagged ~$:/tags/StartupAction/Browser: 8 | 9 | <> -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyph-minus.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyph-minus 2 | 3 | 4 | 5 | 6 | {{$:/config/wikilabs/custom-markup/icons/glyphs/active##element}} 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/ui/EditorToolbar/SearchResults.tid: -------------------------------------------------------------------------------- 1 | created: 20190210164849276 2 | modified: 20190210194648558 3 | title: $:/plugins/wikilabs/uni-link/ui/EditorToolbar/SearchResults 4 | type: text/vnd.tiddlywiki 5 | 6 | \whitespace trim 7 | 8 |
9 | <$macrocall $name="tabs" 10 | tabsList="[all[shadows+tiddlers]tag[$:/tags/AliasResults]!has[draft.of]]" 11 | default="$:/plugins/wikilabs/uni-link/ui/EditorToolbar/SearchTemplate" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet Widget.tid: -------------------------------------------------------------------------------- 1 | code-body: yes 2 | created: 20220822135537754 3 | modified: 20230115185931451 4 | tags: [[Wikitext Cheatsheet]] 5 | title: $:/Cheatsheet Widget 6 | type: text/vnd.tiddlywiki 7 | 8 | Widgets provide rich functionality within WikiText. They have the same syntax as HTML elements, but the tag name always starts with `$`. For example: 9 | 10 | <$button message="tm-navigate" to="$:/Cheatsheet Widget">Open tiddler: ~$:/Cheatsheet Widget 11 | -------------------------------------------------------------------------------- /wikilabs/external-core/tiddlyweb/tags-syncerdropdown.tid: -------------------------------------------------------------------------------- 1 | title: $:/tags/SyncerDropdown 2 | list: $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/login-status $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/login $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/refresh $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/logout $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/save-snapshot $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/download-tiddlywikicore $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/copy-logs 3 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_table-header-background.tid: -------------------------------------------------------------------------------- 1 | caption: Table 2 | created: 20220825112945378 3 | modified: 20220902181944182 4 | search-term: table border footer background header 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/table-header-background 7 | type: text/vnd.tiddlywiki 8 | 9 | |myclass anotherClass|k 10 | |This is a caption |c 11 | |Header|Header|h 12 | |Cell1 |Cell2 | 13 | |Cell3 |Cell3 | 14 | |Footer|Footer|f 15 | -------------------------------------------------------------------------------- /wikilabs/palette-watch/tiddlers/meta/docs/SystemTag_ $__tags_DarkLightChangeActions.tid: -------------------------------------------------------------------------------- 1 | caption: $:/tags/DarkLightChangeActions 2 | description: marks actions executed on dark / light mode changes 3 | tags: SystemTags 4 | title: $:/plugins/wikilabs/palette-watch/docs/SystemTag: $:/tags/DarkLightChangeActions 5 | 6 | The [[system tag|SystemTags]] `$:/tags/DarkLightChangeActions` marks actions executed on dark / light mode changes. 7 | 8 | * [[DarkLightChangeActions]] 9 | * $:/info/darkmode 10 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-done-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Done 2 | created: 20220825144128867 3 | modified: 20220902171319854 4 | search-term: toolbar done button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-done-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/done-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-edit-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Edit 2 | created: 20220825144515940 3 | modified: 20220902171333252 4 | search-term: toolbar edit button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-edit-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/edit-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-info-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Info 2 | created: 20220825144531255 3 | modified: 20220902171346971 4 | search-term: toolbar info button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-info-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/info-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/keyvalues/tiddlers/icon.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/keyvalues/icon 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-close-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Close 2 | created: 20220825144020435 3 | modified: 20220902171248255 4 | search-term: toolbar close button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-close-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/close-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet TB.tid: -------------------------------------------------------------------------------- 1 | created: 20220822142452539 2 | modified: 20230115185834405 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet TB 5 | type: text/vnd.tiddlywiki 6 | 7 | ~WikiText can include blocks of text that are rendered with an explicit ~ContentType like this: 8 | 9 | $$$image/svg+xml 10 | 11 | 12 | 13 | $$$ 14 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-cancel-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Cancel 2 | created: 20220825143342214 3 | modified: 20220902171228730 4 | search-term: toolbar cancel button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-cancel-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/cancel-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-delete-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Delete 2 | created: 20220825144114937 3 | modified: 20220902171304753 4 | search-term: toolbar delete button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-delete-button 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | <$button class="tc-btn-invisible">{{$:/core/images/delete-button}} 11 | 12 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-new-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar New 2 | created: 20220825144544675 3 | modified: 20220902171400526 4 | search-term: toolbar new button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-new-button 7 | type: text/vnd.tiddlywiki 8 | 9 | ''Page Controls'' 10 | 11 | 12 | <$button class="tc-btn-invisible">{{$:/core/images/new-button}} 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_notification-border.tid: -------------------------------------------------------------------------------- 1 | caption: Notification 2 | created: 20220824225128841 3 | modified: 20220902165947829 4 | search-term: notification background border 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/notification-border 7 | type: text/vnd.tiddlywiki 8 | 9 |
10 | 11 | Lorem ipsum ''dolor sit amet'', consectetur adipisicing elit 12 | 13 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_sidebar-foreground-shadow.tid: -------------------------------------------------------------------------------- 1 | caption: Sidebar Foreground Shadow 2 | created: 20220826142022991 3 | modified: 20220902170326137 4 | search-term: sidebar foreground shadow 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/sidebar-foreground-shadow 7 | type: text/vnd.tiddlywiki 8 | 9 | ToDo: Part of snowwhite theme 10 | 11 | ``` 12 | .tc-sidebar-header { 13 | text-shadow: 0 1px 0 <>; 14 | } 15 | ``` -------------------------------------------------------------------------------- /wikilabs/tocP/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/tocP/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/prng/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/prng/readme 2 | 3 | This plugin adds a little link icon to every tab. 4 | 5 | !! Settings 6 | 7 | * Have a closer look at the "settings-tab" here or 8 | * Open the ''$:/ControlPanel -> Settings -> WikiLabs'' tab 9 | 10 | ''Important:'' This plugin modifies a core module and templates 11 | 12 |
    <$list filter="[[$:/plugins/wikilabs/prng]plugintiddlers[]prefix[$:/core/]] ">
  • <$link to=<>><>
-------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/images/trim-whitespace.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trim-whitespace/icons/trim-whitespace 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/templates/TabButtonTemplate.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/advanced-search-plus/TabButtonTemplate 2 | 3 | \whitespace trim 4 | 5 | <$tiddler tiddler=<>> 6 | <$wikify name="hint" text={{!!hint}}> 7 | >><$transclude tiddler={{!!icon}}/> 8 | <$transclude tiddler=<> field="caption"> 9 | <$macrocall $name="currentTab" $type="text/plain" $output="text/plain"/> 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/chooser-inline.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/chooser-inline 2 | button-classes: tc-text-editor-toolbar-item-adjunct 3 | caption: choose inline glyph 4 | condition: [all[shadows+tiddlers]tag[$:/tags/EditPreview]!has[draft.of]butfirst[]limit[1]] 5 | description: Choose Inline Glyph 6 | dropdown: $:/plugins/wikilabs/custom-markup/EditorToolbar/inline-dropdown 7 | icon: $:/core/images/chevron-down 8 | tags: $:/tags/EditorToolbar 9 | shortcuts: ((open-inline-dropdown)) -------------------------------------------------------------------------------- /wikilabs/markdown-it/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/markdown-it/readme 2 | 3 | The plugin version mirrors the markdown-it library version! 4 | 5 | This is a WikiLabs plugin for parsing Markdown text, based on the [[markdown-it|https://markdown-it.github.io/]] project. 6 | 7 | It is completely self-contained, and doesn't need an Internet connection in order to work. It works both in the browser and under Node.js. 8 | 9 | [[Source code can be found here!|https://github.com/wikilabs/plugins/tree/master/wikilabs]] 10 | -------------------------------------------------------------------------------- /wikilabs/pragma-comment/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/pragma-comment/history 2 | 3 | V 0.1.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.1-DEPRECATED - 2022.03.27 9 | 10 | * removed from landing page 11 | * add DEPRECATED to version number 12 | 13 | V 0.1.1 - 2020.10.06 14 | 15 | * Deprecated since there is a similar function in the core 16 | 17 | V 0.1.0 - 2020.12.25 18 | 19 | * Initial release 20 | -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/trails/settings" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/uni-link/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/chooser-block.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/chooser-block 2 | button-classes: tc-text-editor-toolbar-item-adjunct 3 | caption: choose glyph 4 | condition: [all[shadows+tiddlers]tag[$:/tags/EditPreview]!has[draft.of]butfirst[]limit[1]] 5 | description: Choose Line Glyph 6 | dropdown: $:/plugins/wikilabs/custom-markup/EditorToolbar/prefix-dropdown 7 | icon: $:/core/images/chevron-down 8 | tags: $:/tags/EditorToolbar 9 | shortcuts: ((open-block-dropdown)) 10 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/tick-minus.svg.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/tick-minus 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/field-editor/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_toolbar-options-button.tid: -------------------------------------------------------------------------------- 1 | caption: Toolbar Options 2 | created: 20220825144706827 3 | modified: 20220902171417572 4 | search-term: toolbar options button 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/toolbar-options-button 7 | type: text/vnd.tiddlywiki 8 | 9 | ''Page Controls'' 10 | 11 | 12 | <$button class="tc-btn-invisible">{{$:/core/images/options-button}} 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/remove-states/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/ui/remove-states" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/ui/advanced-search/Standard.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/AdvancedSearchPlus/Standard 2 | caption: 3 | icon: $:/plugins/wikilabs/advanced-search-plus/standard-search.svg 4 | info: {{$:/language/Search/Standard/Caption}} 5 | hint: {{$:/language/Search/Standard/Hint}} 6 | tags: $:/tags/AdvancedSearchPlus 7 | type: text/vnd.tiddlywiki 8 | 9 | <$transclude tiddler="$:/plugins/wikilabs/advanced-search-plus/standard-search-plus-new"/> 10 | <$transclude tiddler="$:/core/ui/AdvancedSearch/Standard"/> -------------------------------------------------------------------------------- /wikilabs/click-effect/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/click-effect/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/edit-tabs/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/core/ui/ControlPanel/Settings/edit-tabs" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/link-to-tabs/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/link-to-tabs/settings" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_selection-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Selection 2 | created: 20220824233018470 3 | modified: 20220902170132910 4 | search-term: selection background foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/selection-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | By default this element inherits the native browser settings 10 | 11 | ''Select some text'' in the text-area. 12 | 13 | <$edit-text class="tc-edit-max-width" tiddler="$:/temp/palette/test" /> -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/ui/styles/styles.tid: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Stylesheet 2 | title: $:/plugins/wikilabs/palette-switcher/ui/sidebar/styles 3 | code-body: yes 4 | 5 | .tc-table-palette-selector .tc-image-sun-button, 6 | .tc-table-palette-selector .tc-image-moon-button { 7 | min-width: 2em; 8 | min-height: 2em; 9 | } 10 | 11 | table.tc-table-palette-selector, 12 | .tc-table-palette-selector td, 13 | .tc-table-palette-selector .tc-table-paletteswitcher .tc-chooser{ 14 | border-left: none; 15 | border-right: none; 16 | } 17 | -------------------------------------------------------------------------------- /wikilabs/palette-watch/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/palette-watch/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/field-visibility/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/field-visibility/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/bold.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/bold 2 | list-after: $:/core/ui/EditorToolbar/bold 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/bold 5 | caption: {{$:/language/Buttons/Bold/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Bold/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((bold)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="wrap-selection" 13 | prefix="**" 14 | suffix="**" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/palette-manager/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_dropzone-background.tid: -------------------------------------------------------------------------------- 1 | caption: Dropzone 2 | created: 20220824185614075 3 | modified: 20220902165631771 4 | search-term: dropzone background 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/dropzone-background 7 | type: text/vnd.tiddlywiki 8 | 9 | To test this setting you need to ''drag and drop'' elements in the ''Right Sidebar -> Open tab'' 10 | 11 | ''Open Sidebar'' 12 | 13 |
14 | {{$:/core/ui/SideBar/Open}} 15 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_primary.tid: -------------------------------------------------------------------------------- 1 | caption: Primary 2 | created: 20220824231002539 3 | modified: 20221104142353056 4 | search-term: primary 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/primary 7 | type: text/vnd.tiddlywiki 8 | 9 | Select an input element. The outline uses the `primary` colour 10 | 11 | <$edit-text class="tc-edit-max-width" tiddler="$:/temp/palette/test" tag=input/> 12 |
13 | <$edit-text class="tc-edit-max-width" tiddler="$:/temp/palette/test" /> 14 | -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/palette-switcher/settings" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/trim-whitespace/settings" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/bundler/ui/ControlPanel/bundler-config" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/angel-minus.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/angle-minus 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyphs/degree.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyphs/degree 2 | type: application/json 3 | 4 | { 5 | "glyph": "°", 6 | "element": "" 7 | } -------------------------------------------------------------------------------- /wikilabs/link-to-tabs/tiddlers/meta/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/link-to-tabs/readme 2 | 3 | This plugin adds a little link icon to every tab. 4 | 5 | !! Settings 6 | 7 | * Have a closer look at the "settings-tab" here or 8 | * Open the ''$:/ControlPanel -> Settings -> WikiLabs'' tab 9 | 10 | ''Important:'' This plugin modifies a core module and templates 11 | 12 |
    <$list filter="[[$:/plugins/wikilabs/link-to-tabs]plugintiddlers[]prefix[$:/core/]] ">
  • <$link to=<>><>
-------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/quote.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/quote 2 | list-after: $:/core/ui/EditorToolbar/quote 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/quote 5 | caption: {{$:/language/Buttons/Quote/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Quote/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((quote)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character=">" 14 | count="1" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_tiddler-border.tid: -------------------------------------------------------------------------------- 1 | caption: Tiddler 2 | created: 20220825120243619 3 | modified: 20220902170823039 4 | search-term: tiddler background border 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/tiddler-border 7 | type: text/vnd.tiddlywiki 8 | 9 | These colours will be visible for every tiddler here 10 | 11 | TODO create previews 12 | 13 | 4 elements in base 14 | 15 | * tc-tiddler-frame 16 | * tc-tiddler-border 17 | * tiddler in new window background 18 | 19 | -------------------------------------------------------------------------------- /wikilabs/persistent-states/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/persistent-states/readme" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/advanced-search-plus/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/advanced-search-plus/settings" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/config/icons/glyphs/active.tid: -------------------------------------------------------------------------------- 1 | title: $:/config/wikilabs/custom-markup/icons/glyphs/active 2 | type: application/json 3 | 4 | { 5 | "glyph": "°", 6 | "element": "" 7 | } -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/meta/wikilabs-settings.tid: -------------------------------------------------------------------------------- 1 | title: $:/ControlPanel/Settings/WikiLabs 2 | caption: WikiLabs 3 | tags: $:/tags/ControlPanel/SettingsTab 4 | 5 | Get an overview about all [[WikiLab Pugins|https://wikilabs.github.io]] 6 | 7 |
8 | <$macrocall $name="tabs" 9 | tabsList="[all[shadows+tiddlers]tag[$:/tags/ControlPanel/WikiLabs]!has[draft.of]]" 10 | default="$:/plugins/wikilabs/field-search/CP/Settings/field-search" 11 | explicitState="$:/state/tab/settings/wikilabs" 12 | /> 13 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_external-link-foreground-visited.tid: -------------------------------------------------------------------------------- 1 | caption: External Link 2 | created: 20220824185755901 3 | modified: 20220826140246076 4 | tags: $:/tags/palette/preview 5 | title: $:/palettes/preview/external-link-foreground-visited 6 | type: text/vnd.tiddlywiki 7 | search-term: external link background hover visited foreground 8 | 9 | Most of the settings use native browser defaults atm. So links can depend on browser and OS native settings 10 | 11 | https://tiddlywiki.com --- hover is possible -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_pre-border.tid: -------------------------------------------------------------------------------- 1 | caption: Pre 2 | created: 20220824230802380 3 | modified: 20220902170023941 4 | search-term: pre background border 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/pre-border 7 | type: text/vnd.tiddlywiki 8 | 9 | ``` 10 | Lorem ipsum ''dolor sit amet'', 11 | consectetur adipisicing elit 12 | ``` 13 | 14 | <<<.tc-big-quote 15 | @@white-space:normal; 16 | ''The ~TiddlyWiki is the best software I've ever found for organising my ideas.'' 17 | @@ 18 | <<< -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/definitions/Trail.tid: -------------------------------------------------------------------------------- 1 | created: 20230408132900014 2 | modified: 20230408133628079 3 | tags: Definitions 4 | title: Trail 5 | type: text/vnd.tiddlywiki 6 | 7 | >As in path 8 | >A rough course or way formed by or as if by repeated footsteps 9 | > 10 | > https://www.merriam-webster.com/thesaurus/trail 11 | 12 | >A trail, also known as a path or track, is an unpaved lane or a small paved road not intended for usage by motorized vehicles, usually passing through a natural area. [. . .] 13 | > 14 | >https://en.wikipedia.org/wiki/Trail -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/italic.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/italic 2 | list-after: $:/core/ui/EditorToolbar/italic 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/italic 5 | caption: {{$:/language/Buttons/Italic/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Italic/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((italic)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="wrap-selection" 13 | prefix="*" 14 | suffix="*" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/ui/EditTemplate_body_preview_note.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/EditTemplate/Body/Preview/Type/Output}} (edit field) 2 | created: 20221229122428844 3 | list-after: $:/core/ui/EditTemplate/body/preview/output 4 | modified: 20221229124326754 5 | tags: $:/tags/EditPreview 6 | title: $:/plugins/wikilabs/ui/EditTemplate/body/preview/note 7 | type: text/vnd.tiddlywiki 8 | 9 | <$transclude field=<> > 10 | 11 | <$transclude tiddler="$:/language/MissingTiddler/Hint"/> 12 | 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/speciallinks/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/speciallinks/history 2 | 3 | V 0.1.1 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.0 - 2022.03.27 9 | 10 | * update to TW v5.2.2 11 | * ''Important'': Changed license to Attribution-NonCommercial-ShareAlike -- [[CC-BY-NC-SA|$:/plugins/wikilabs/speciallinks/license]] 12 | 13 | V 0.0.2 - 2020.12.25 14 | 15 | * update license 16 | 17 | V 0.0.1 - 2020-02-25 18 | 19 | * initial release 20 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/ui/MoreSideBar/Aliases.tid: -------------------------------------------------------------------------------- 1 | caption: Aliases 2 | created: 20171214213808142 3 | list-before: $:/core/ui/MoreSideBar/Recent 4 | modified: 20171214215245931 5 | tags: $:/tags/MoreSideBar 6 | title: $:/plugins/wikilabs/uni-link/ui/MoreSideBar/Aliases 7 | type: text/vnd.tiddlywiki 8 | 9 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/tick-plus.svg.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/tick-plus 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/info-tagmap/tiddlers/$__wikilabs_ui_TiddlerInfo_TagMap.tid: -------------------------------------------------------------------------------- 1 | title: $:/wikilabs/ui/TiddlerInfo/TagMap 2 | tags: $:/tags/TiddlerInfo 3 | caption: Tag Map 4 | 5 | \whitespace trim 6 |
7 | <$list filter="[all[current]tags[]sort[title]]" emptyMessage="This tiddler has no tags"> 8 |
9 | 10 | <$transclude tiddler="$:/core/ui/ListItemTemplate"/> 11 | 12 |
13 | <$list filter="[all[current]tagging[]sort[title]]" template="$:/core/ui/ListItemTemplate" /> 14 |
15 | 16 |
-------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyph-plus.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyph-plus 2 | 3 | 4 | 5 | 6 | {{$:/config/wikilabs/custom-markup/icons/glyphs/active##element}} 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /wikilabs/info-area/tiddlers/control-panel/$__plugins_amp_MagicTabs_dashboard_configuration.tid: -------------------------------------------------------------------------------- 1 | caption: ~MagicTabs 2 | icon: $:/plugins/amp/MagicTabs/images/config 3 | mt-dashboard.heading: Configuration 4 | mt-dashboard.icon: $:/plugins/amp/MagicTabs/images/config 5 | tags: $:/tags/ControlPanel 6 | title: $:/plugins/amp/MagicTabs/dashboard/configuration 7 | 8 | <> -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-1.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-1 2 | list-after: $:/core/ui/EditorToolbar/heading-1 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-1 5 | caption: {{$:/language/Buttons/Heading1/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading1/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-1)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="1" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-2.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-2 2 | list-after: $:/core/ui/EditorToolbar/heading-2 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-2 5 | caption: {{$:/language/Buttons/Heading2/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading2/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-2)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="2" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-3.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-3 2 | list-after: $:/core/ui/EditorToolbar/heading-3 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-3 5 | caption: {{$:/language/Buttons/Heading3/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading3/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-3)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="3" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-4.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-4 2 | list-after: $:/core/ui/EditorToolbar/heading-4 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-4 5 | caption: {{$:/language/Buttons/Heading4/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading4/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-4)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="4" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-5.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-5 2 | list-after: $:/core/ui/EditorToolbar/heading-5 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-5 5 | caption: {{$:/language/Buttons/Heading5/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading5/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-5)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="5" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/heading-6.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/heading-6 2 | list-after: $:/core/ui/EditorToolbar/heading-6 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/heading-6 5 | caption: {{$:/language/Buttons/Heading6/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/Heading6/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((heading-6)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="#" 14 | count="6" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/mono-line.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/mono-line 2 | list-after: $:/core/ui/EditorToolbar/mono-line 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/mono-line 5 | caption: {{$:/language/Buttons/MonoLine/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/MonoLine/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((mono-line)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="wrap-selection" 13 | prefix="`" 14 | suffix="`" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/ui/list-links-custom_element-delete.tid: -------------------------------------------------------------------------------- 1 | created: 20191220145841901 2 | modified: 20210127211305677 3 | tags: 4 | title: $:/plugins/wikilabs/bundler/list-links-custom/element-delete 5 | type: text/vnd.tiddlywiki 6 | 7 | \whitespace trim 8 | \rules only html transclude transcludeinline 9 | 10 | <$list filter="[all[current]has[title]]" >{{||$:/core/ui/Buttons/delete}} 11 | <$link to={{!!title}}> 12 | <$view field=title format=text/> 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/modules/filters/all/aliases.js: -------------------------------------------------------------------------------- 1 | /*\ 2 | title: $:/plugins/wikilabs/uni-link/filters/all/aliases.js 3 | type: application/javascript 4 | module-type: allfilteroperator 5 | 6 | Filter function for [all[aliases]] 7 | 8 | \*/ 9 | /*jslint node: true, browser: true */ 10 | /*global $tw: false */ 11 | 12 | "use strict"; 13 | 14 | /* 15 | Export our filter function 16 | */ 17 | exports.aliases = function(source,prefix,options) { 18 | var index = $tw.wiki.getIndexer("AliasIndexer"); 19 | return index.trie.suggestPossibleWords("").strings; 20 | }; 21 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/ui/images/$__images_layout-full.tid: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Image Icons Images SVG 2 | title: $:/images/layout-full 3 | 4 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/add-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/add-angle 2 | caption: add-angle 3 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 4 | description: Add a "angle bracket" at the start of the selected line(s) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/angle-plus 6 | shortcuts: ((add-angle)) 7 | tags: $:/tags/EditorToolbar 8 | 9 | <$action-sendmessage 10 | $message="tm-edit-text-operation" 11 | $param="add-glyph" 12 | character="»" 13 | count="1" 14 | force="no" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/remove-angel.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/remove-angle 2 | caption: remove-angle 3 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 4 | description: Remove a "angle bracket" at the start of the selected line(s) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/angle-minus 6 | shortcuts: ((remove-angle)) 7 | tags: $:/tags/EditorToolbar 8 | 9 | <$action-sendmessage 10 | $message="tm-edit-text-operation" 11 | $param="remove-tick" 12 | character="»" 13 | count="1" 14 | /> 15 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/list-bullet.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/list-bullet 2 | list-after: $:/core/ui/EditorToolbar/list-bullet 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/list-bullet 5 | caption: {{$:/language/Buttons/ListBullet/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/ListBullet/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((list-bullet)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="*" 14 | count="1" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/markdown-it/EditorToolbar/list-number.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/markdown/EditorToolbar/list-number 2 | list-after: $:/core/ui/EditorToolbar/list-number 3 | tags: $:/tags/EditorToolbar 4 | icon: $:/core/images/list-number 5 | caption: {{$:/language/Buttons/ListNumber/Caption}} (Markdown) 6 | description: {{$:/language/Buttons/ListNumber/Hint}} 7 | condition: [type[text/x-markdown]] 8 | shortcuts: ((list-number)) 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="prefix-lines" 13 | character="1." 14 | count="1" 15 | /> 16 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_sidebar-controls-foreground-hover.tid: -------------------------------------------------------------------------------- 1 | caption: Sidebar Controls 2 | created: 20220824235800427 3 | modified: 20220902170243747 4 | search-term: sidebar controls foreground hover 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/sidebar-controls-foreground-hover 7 | type: text/vnd.tiddlywiki 8 | 9 | ''Links are deactivated, but New Tiddler works'' 10 | 11 | <$linkcatcher> 12 | 13 |
14 | {{$:/core/ui/PageTemplate/pagecontrols}} 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /wikilabs/palette-switcher/tiddlers/languages/en-GB/Translations.multids: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/palette-switcher/languages/en-GB/ 2 | 3 | Palette/Config/DefaultDark/Caption: Dark palette 4 | Palette/Config/DefaultLight/Caption: Light palette 5 | Palette/Picker/Prompt: Automatic selection can be configured using [[custom actions|$:/plugins/wikilabs/palette-switcher/DarkLightStartup]] 6 | Palette/Picker/Enable: Enable Dark/Light Mode Handling 7 | Palette/Picker/Heading: Dark/Light Mode Configuraton 8 | Palette/Picker/ShowAllPalettes: Show all palettes 9 | Palette/Switcher/Heading: Switch Palette -------------------------------------------------------------------------------- /wikilabs/space-space-newline/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/space-space-newline/history 2 | 3 | V 1.0.0 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.2.0 - 2022-03-27 9 | 10 | * ''Important'': Changed license to Attribution-NonCommercial-ShareAlike -- [[CC-BY-NC-SA|$:/plugins/wikilabs/space-space-newline/license]] 11 | * update to TW v5.2.2 12 | 13 | 14 | V 0.0.2 - 2020-12-25 15 | 16 | * update license 17 | 18 | V 0.0.1 - 2020-08-28 19 | 20 | * initial release 21 | -------------------------------------------------------------------------------- /wikilabs/wltm-open-story/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/tm-open-story/history 2 | 3 | V 0.3.1-beta - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.3.0-beta - 2022.03.27 9 | 10 | * ''Important'': Changed license to Attribution-NonCommercial-ShareAlike -- [[CC-BY-NC-SA|$:/plugins/wikilabs/tm-open-story/license]] 11 | 12 | V 0.1.1-beta - 2020.12.25 13 | 14 | * update license 15 | 16 | V 0.1.0-beta - 2020.01.19 17 | 18 | * initial release 19 | ** name: wltm-open-story 20 | -------------------------------------------------------------------------------- /wikilabs/external-core/tiddlyweb/syncer-actions-download-tiddlywikicore.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/tiddlywiki/tiddlyweb/syncer-actions/download-tiddlywikicore 2 | tags: $:/tags/SyncerDropdown 3 | 4 | \define tiddlywikicoreFilename() tiddlywikicore-$(version)$.js 5 | <$reveal state="$:/config/SaveWikiButton/Template" type="match" text="$:/core/save/offline-external-js"> 6 | >>{{$:/core/images/download-button}} Save ~TiddlyWiki core for offline use 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_muted-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Muted 2 | created: 20220824224151203 3 | modified: 20220902165929287 4 | search-term: muted foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/muted-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | There are 43 CSS rules that use `muted-foreground` 10 | 11 | <$tiddler tiddler="$:/temp/palette/muted"> 12 | {{$:/palettes/preview/button}} 13 | {{$:/core/ui/EditTemplate/fields}} 14 | {{$:/core/ui/EditTemplate/type}} 15 | 16 | ToDo open all tiddlers that use it -------------------------------------------------------------------------------- /wikilabs/multicol-dropdown/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/multicol-dropdown/history 2 | 3 | V 1.0.3 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 1.0.2 - 2022-03-27 9 | 10 | * update to TW v5.2.2 11 | * update license 12 | 13 | V 1.0.1 - 2020-12-25 14 | 15 | * update license 16 | 17 | V 1.0.0 - 2020.12.08 18 | 19 | * Make CSS compatible with 5.1.23 20 | 21 | V 0.1.2 - 2020.01.19 22 | 23 | * Update license link/text 24 | 25 | V 0.1.1 - 2016 26 | 27 | * initial release 28 | -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/meta/icon.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trails/icon 2 | 3 | 4 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/note-editor/ui/images/$__images_layout-half.tid: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Image Icons Images SVG 2 | title: $:/images/layout-half 3 | 4 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_tiddler-title-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Tiddler Title 2 | created: 20220825131927189 3 | modified: 20220902171208562 4 | search-term: tiddler title foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/tiddler-title-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 |
10 | 11 | {{$:/palettes/preview/tiddler-editor/example||$:/core/ui/ViewTemplate/title/default}} 12 | 13 | {{$:/PaletteManager||$:/core/ui/ViewTemplate/title/system}} 14 | 15 |
-------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_untagged-background.tid: -------------------------------------------------------------------------------- 1 | caption: Untagged 2 | created: 20220825150355695 3 | modified: 20220902171454168 4 | search-term: untagged background 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/untagged-background 7 | type: text/vnd.tiddlywiki 8 | 9 | Important: It seems the untagged tag-pill uses the `tag-foreground` colour 10 | 11 | * Related to issue: https://github.com/Jermolene/TiddlyWiki5/issues/6929 12 | * ToDo untagged should also use dynamic forground-colour adjustment 13 | 14 | {{$:/core/ui/UntaggedTemplate}} -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/ui/MoreSideBar/Aliases_undefined.tid: -------------------------------------------------------------------------------- 1 | caption: Undefined 2 | created: 20180202150804918 3 | list-before: $:/core/ui/MoreSideBar/Recent 4 | modified: 20180202151517364 5 | tags: $:/plugins/wikilabs/uni-link/ui/MoreSideBar/Aliases 6 | title: $:/plugins/wikilabs/uni-link/ui/MoreSideBar/Aliases/undefined 7 | type: text/vnd.tiddlywiki 8 | 9 | \import [[$:/core/ui/TiddlerInfo/References]] 10 | 11 | <$list filter="[[?]aliasbacklinks:augmented[]sort[]]"><$link to=<>/> - <>
12 | 13 | --- 14 | 15 | You'll need to reload the page, to update this list! 16 | -------------------------------------------------------------------------------- /wikilabs/webdav-lm/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/webdav-lm/history 2 | 3 | V 0.1.4-beta - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.3 - 2020.12.27 9 | 10 | * update to TW v5.2.2 11 | 12 | V 0.1.2 - 2020.12.25 13 | 14 | * update license 15 | 16 | V 0.1.1 - 2020.01.19 17 | 18 | * Update license link/text 19 | 20 | V 0.1.0 - 2019.03.18 21 | 22 | * Initial release 23 | * use `last-modified` and `If-Unmodified-Since` instead of `etag` to determine file "date" inconsistencies. 24 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/styles/styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/bundler/styles 2 | tags: $:/tags/Stylesheet 3 | 4 | .wltc-15-gap { 5 | margin-left: 1.5em; 6 | } 7 | 8 | .wltc-muted-forground { 9 | color: #ffffff; 10 | } 11 | 12 | .wltc-options-button svg { 13 | fill: #ccc; 14 | width: 1.3em; 15 | float: right; 16 | margin-top: -7px; 17 | } 18 | 19 | .wltc-full-width { 20 | width: 100%; 21 | } 22 | 23 | .wltc-small-gap-top { 24 | margin-top: .3em; 25 | } 26 | 27 | .wltc-small-gap-bottom { 28 | margin-bottom: .3em; 29 | } 30 | 31 | .wltc-cursor-grab { 32 | cursor: grab; 33 | } 34 | -------------------------------------------------------------------------------- /wikilabs/new-tiddler-from-search/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/new-tiddler-from-search/history 2 | 3 | V 1.0.3 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 1.0.2 - 2022-03-27 9 | 10 | * update TW v5.2.2 11 | * update license 12 | 13 | V 1.0.1 - 2020-12-25 14 | 15 | * update license 16 | 17 | V 1.0.0 - 2020.12.08 18 | 19 | * Make it compatible to TW V5.1.23 20 | 21 | V 0.1.2 - 2020.01.19 22 | 23 | * Update license link/text 24 | 25 | V 0.1.1 - 2016 26 | 27 | * initial release 28 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_dragger-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Dragger 2 | created: 20220824141830974 3 | modified: 20220902165413156 4 | search-term: dragger background foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/dragger-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | It seems the following classes are defined in vanilla/base but are ''never used'' 10 | 11 | ``` 12 | .tc-tiddler-dragger-inner { 13 | ... 14 | color: <>; 15 | ... 16 | background-color: <>; 17 | ... 18 | } 19 | ``` -------------------------------------------------------------------------------- /wikilabs/thin-scrollbars/tiddlers/thin-scrollbars-styles.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/thin-scrollbars/styles 2 | tags: $:/tags/Stylesheet 3 | type: text/css 4 | 5 | * { 6 | scrollbar-width: thin; 7 | } 8 | 9 | .tc-tab-content:hover, 10 | .tc-sidebar-scrollable:hover { 11 | scrollbar-width: auto; 12 | } 13 | 14 | *::-webkit-scrollbar { 15 | width: .4em; 16 | height: .4em; 17 | } 18 | 19 | *::-webkit-scrollbar-thumb { 20 | background: #bbb; 21 | } 22 | 23 | .tc-tab-content:hover::-webkit-scrollbar, 24 | .tc-sidebar-scrollable:hover::-webkit-scrollbar { 25 | width: .8em; 26 | height: .8em; 27 | } -------------------------------------------------------------------------------- /wikilabs/tocP/tiddlers/$__plugins_wikilabs_tocP_Stylesheet.tid: -------------------------------------------------------------------------------- 1 | created: 20170201173552575 2 | modified: 20170201214003877 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/wikilabs/tocP/Stylesheet 5 | type: text/css 6 | 7 | .tc-tabbed-table-of-contents .wltc-btn-new-child { 8 | display: none; 9 | } 10 | 11 | .tocp .tc-tiddlylink { 12 | color: green; 13 | } 14 | 15 | /* needed if streams headings are shown */ 16 | 17 | .tc-toc-caption h1, 18 | .tc-toc-caption h2, 19 | .tc-toc-caption h3, 20 | .tc-toc-caption h4, 21 | .tc-toc-caption h5, 22 | .tc-toc-caption h6 { 23 | display: inline-block; 24 | } -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/definitions/Breadcrumbs.tid: -------------------------------------------------------------------------------- 1 | created: 20230408132900014 2 | modified: 20230408133628079 3 | tags: Definitions 4 | title: Breadcrumbs 5 | type: text/vnd.tiddlywiki 6 | 7 | >A breadcrumb or breadcrumb trail is a graphical control element used as a navigational aid in user interfaces and on web pages. It allows users to keep track and maintain awareness of their locations within programs, documents, or websites. The term is a reference to the trail of bread crumbs left by Hansel and Gretel in the German fairy tale of the same name. 8 | > 9 | > https://en.wikipedia.org/wiki/Breadcrumb_navigation -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet MDefinition.tid: -------------------------------------------------------------------------------- 1 | code-body: yes 2 | created: 20220822124422967 3 | modified: 20230115190043035 4 | tags: [[Wikitext Cheatsheet]] 5 | title: $:/Cheatsheet MDefinition 6 | type: text/vnd.tiddlywiki 7 | 8 | 9 | \define sayhi(name:"Bugs Bunny") Hi, I'm <$text text=<<__name__>>/> 10 | 11 | 12 | \define sayhi(name:"Bugs Bunny") 13 | Hi, I'm <$text text=<<__name__>>/> 14 | \end 15 | 16 | Macro definitions are invisible. 17 | They are used in the examples below. -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/glyph-toggle.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/glyph-toggle 2 | 3 | 4 | 5 | 6 | {{$:/config/wikilabs/custom-markup/icons/glyphs/active##element}} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/tocP/tiddlers/$__plugins_wikilabs_tocP_toggle-new-child-button.tid: -------------------------------------------------------------------------------- 1 | created: 20170127145849380 2 | modified: 20170201213725315 3 | tags: 4 | title: $:/plugins/wikilabs/tocP/toggle-new-child-button 5 | type: text/vnd.tiddlywiki 6 | 7 | <$button> 8 | <$action-setfield $tiddler="$:/config/wikilabs/tocP/newChild" text="{{||$:/wikilabs/ui/buttons/new-child-alone}}"/> 9 | Enable "New Child" buttons 10 | 11 | <$button> 12 | <$action-deletetiddler $tiddler="$:/config/wikilabs/tocP/newChild"/> 13 | Disable "New Child" buttons 14 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/angel-plus.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/angle-plus 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/custom-markers.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/remove-custom-markers 2 | caption: remove-all-markers 3 | tags: $:/tags/EditorToolbar 4 | shortcuts: ((remove-custom-markers)) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/custom-minus-all 6 | description: Remove every "custom marker" from the selected line(s) 7 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 8 | 9 | <$action-sendmessage 10 | $message="tm-edit-text-operation" 11 | $param="remove-custom-markers" 12 | character="*" 13 | count="1" 14 | /> 15 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/ui/buttons/export-bundle-filter.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/core/images/export-button}} {{$:/language/Buttons/ExportTiddler/Caption}} 2 | created: 20170602112538007 3 | description: export bundle 4 | modified: 20170609084521879 5 | tags: 6 | title: $:/plugins/wikilabs/bundler/ui/Buttons/export-bundle-filter 7 | type: text/vnd.tiddlywiki 8 | 9 | \whitespace trim 10 | 11 | 12 | <$macrocall $name="exportButton" 13 | exportFilter={{!!filter}} 14 | lingoBase="$:/language/Buttons/ExportTiddlers/" 15 | baseFilename={{{ [] ".data" +[join[]] }}} 16 | /> 17 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet Functions.tid: -------------------------------------------------------------------------------- 1 | created: 20230501093733923 2 | modified: 20230501094251689 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet Functions 5 | type: text/vnd.tiddlywiki 6 | 7 | \function my-function(parameter:"2") 8 | [multiply[1.5]] 9 | \end 10 | 11 | A function is a named snippet of text containing a filter expression. Functions can have named parameters which are available within the function as variables. 12 | 13 | Functions are usually defined with the `\function` pragma 14 | 15 | ------------- 16 | 17 | 2 * 1.5 = <>
18 | 6 * 1.5 = <> -------------------------------------------------------------------------------- /wikilabs/markdown-it-toc/tiddlers/init.js: -------------------------------------------------------------------------------- 1 | /*\ 2 | title: $:/plugins/wikilabs/markdown-it/markdown-it-toc/init.js 3 | type: application/javascript 4 | module-type: startup 5 | 6 | \*/ 7 | 8 | /*jslint node: true, browser: true */ 9 | /*global $tw: false, exports: true */ 10 | "use strict"; 11 | 12 | // Export name and synchronous status 13 | exports.after = ["startup"]; 14 | exports.synchronous = true; 15 | 16 | exports.startup = function() { 17 | var plugin1 = require("$:/plugins/wikilabs/markdown-it/markdown-it-toc.js"); 18 | 19 | var md = $tw.Wiki.parsers["text/markdown"].prototype.md; 20 | 21 | md.use(plugin1); 22 | }; -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_tiddler-info-tab-background.tid: -------------------------------------------------------------------------------- 1 | caption: Tiddler Info 2 | created: 20220825130350869 3 | modified: 20220902171011371 4 | search-term: tiddler info background border tab 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/tiddler-info-tab-background 7 | type: text/vnd.tiddlywiki 8 | 9 |
10 | 11 | <$list filter="[all[shadows+tiddlers]tag[$:/tags/TiddlerInfoSegment]!has[draft.of]] [[$:/core/ui/TiddlerInfo]]" variable="listItem"><$transclude tiddler=<> mode="block"/> 12 | 13 |
-------------------------------------------------------------------------------- /wikilabs/info-session/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-session/history 2 | 3 | V 0.1.6 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.1.5 - 2022-03-27 9 | 10 | * removed from landing page 11 | * not maintained anymore 12 | 13 | V 0.1.5 - 2020-12-25 14 | 15 | * Deprecated plugin since the core has a similar function since 5.1.14 16 | 17 | V 0.1.4 - 2020-12-25 18 | 19 | * update license 20 | 21 | V 0.1.3 - 2020.01.19 22 | 23 | * Update license link/text 24 | 25 | V 0.1.2 - 2016 26 | 27 | * initial release 28 | -------------------------------------------------------------------------------- /wikilabs/new-tiddler-from-search/tiddlers/readme.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/new-tiddler-from-search/readme 2 | 3 | This plugin provides a minimal "new Tiddler" interface, if a search doesn't return any results. There are 2 buttons. 4 | 5 | * {{$:/core/images/cancel-button}} .. Clear the temporary template tiddler 6 | * {{$:/core/images/done-button}} .. Save the tiddler 7 | 8 | ''Important:'' This plugin modifies a core module and templates 9 | 10 |
    <$list filter="[[$:/plugins/wikilabs/new-tiddler-from-search]plugintiddlers[]prefix[$:/core/]] ">
  • <$link to=<>><>
-------------------------------------------------------------------------------- /wikilabs/remove-states/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/remove-states/history 2 | 3 | V 1.0.1 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 1.0.0 - 2024.04.18 9 | 10 | * Settings are now in $:/ControlPanel -> ''Settings'' -> ''WikiLabs'' tab 11 | 12 | V 0.1.5 - 2003-07-01 13 | 14 | * supress auto wikilinking for button text 15 | 16 | V 0.1.4 - 2022-03-27 17 | 18 | * update to TW v5.2.2 19 | 20 | V 0.1.4 - 2022-03-27 21 | 22 | * update to TW v5.2.2 23 | 24 | V 0.1.3 - 2020-12-25 25 | 26 | * update license 27 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/remove-tick.tid: -------------------------------------------------------------------------------- 1 | caption: remove-tick 2 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 3 | created: 20200830155036038 4 | description: Remove a "tick" at the start of the selected line(s) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/tick-minus 6 | modified: 20200914083802568 7 | shortcuts: ((remove-tick)) 8 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/remove-tick 9 | tags: $:/tags/EditorToolbarXXX 10 | 11 | <$action-sendmessage 12 | $message="tm-edit-text-operation" 13 | $param="remove-tick" 14 | character="´" 15 | count="1" 16 | /> 17 | -------------------------------------------------------------------------------- /wikilabs/external-core/templates/external-js/save-all-external-js.tid: -------------------------------------------------------------------------------- 1 | title: $:/core/save/all-external-js 2 | 3 | \import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]] 4 | \define saveTiddlerFilter() 5 | [is[tiddler]] -[prefix[$:/state/popup/]] -[prefix[$:/temp/]] -[prefix[$:/HistoryList]] -[status[pending]plugin-type[import]] -[[$:/core]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]] $(publishFilter)$ 6 | \end 7 | \define coreURL() %24%3A%2Fcore%2Ftemplates%2Ftiddlywiki5.js 8 | {{$:/core/templates/tiddlywiki5-external-js.html}} 9 | -------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/styles/note-styles.tid: -------------------------------------------------------------------------------- 1 | tags: $:/tags/Stylesheet 2 | title: $:/plugin/wikilabs/field-editor/note-styles 3 | 4 | .field-warning textarea.tc-edit-texteditor { 5 | border: 2px solid red; 6 | } 7 | 8 | .tcwl-field-label { 9 | float: right; 10 | color: #50adb1; 11 | } 12 | 13 | .tc-tiddler-frame.field-info { 14 | border: 1px solid blue; 15 | } 16 | 17 | .clearfix::after { 18 | content: ""; 19 | clear: both; 20 | display: table; 21 | } 22 | 23 | .both .left-half { 24 | float: left; 25 | width: 49%; 26 | } 27 | 28 | .both .right-half { 29 | float: right; 30 | width: 49%; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_static-alert-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Static Alert 2 | created: 20220825012735305 3 | modified: 20220902170619921 4 | search-term: static alert foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/static-alert-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | 15 |
This page is part of a static HTML representation of the ~TiddlyWiki at https://tiddlywiki.com/
16 | 17 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/ui/EditorToolbar/alias.tid: -------------------------------------------------------------------------------- 1 | button-classes: tc-text-editor-toolbar-item-start-group 2 | caption: {{$:/language/Buttons/Make/Alias/Caption}} 3 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 4 | created: 20190210145538580 5 | description: {{$:/language/Buttons/Make/Alias/Hint}} 6 | dropdown: $:/plugins/wikilabs/uni-link/ui/EditorToolbar/alias-dropdown 7 | icon: $:/core/images/link 8 | modified: 20190210194833231 9 | shortcuts: ((alias-link)) 10 | tags: $:/tags/EditorToolbar 11 | title: $:/plugins/wikilabs/uni-link/ui/EditorToolbar/alias 12 | type: text/vnd.tiddlywiki 13 | 14 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/add-newline.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/add-newline 2 | caption: add-newline 3 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 4 | description: Adds a newline character at the end of the selected line(s) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/add-newline 6 | shortcuts: ((add-newline)) 7 | button-classes: tc-text-editor-toolbar-item-start-group 8 | tags: $:/tags/EditorToolbar 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="add-newline" 13 | character=" 14 | " 15 | count="1" 16 | /> 17 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/history 2 | 3 | V 0.22.1-beta - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | ! Breaking Changes in V0.22.0 9 | 10 | V 0.22.0 - 2023-05-03 11 | 12 | * Use `❮ ❯` corner instead of `『 』`, becuase they had "strange white-spacing" as can be seen here 13 | * update license dates 14 | 15 | ------ 16 | 17 | V 0.21.3 - 2021-10-18 18 | 19 | * Fix "force glyph in empty line" for add-glyph button 20 | 21 | See [[full history|$:/plugins/wikilabs/custom-markup/history-full]] -------------------------------------------------------------------------------- /wikilabs/remove-states/tiddlers/$__plugins_wikilabs_remove-states.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/ui/remove-states 2 | tags: $:/tags/ControlPanel/WikiLabs 3 | caption: Remove States 4 | 5 | \define theFilter() 6 | [prefix[$:/state/]] 7 | \end 8 | 9 | <$button> 10 | <$action-deletetiddler $filter=<> /> 11 | <$set name="tv-wikilinks" value="no"> 12 | Delete all: <> tiddlers 13 | 14 | 15 | 16 | <$list filter=<> > 17 | <$button> 18 | <$action-deletetiddler $tiddler=<>/> 19 | x 20 | - <$link to=<> ><$text text=<> />
21 | -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/meta/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trails/history 2 | 3 | V 1.1.1 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 1.1.0 - 2024-04-22 9 | 10 | * Backport trails down to TW >= v5.2.1 11 | 12 | V 1.0.0 - 2024-04-18 13 | 14 | * Settings are now in $:/ControlPanel -> ''Settings'' -> ''WikiLabs'' tab 15 | 16 | V 0.9.1 - 2024-04-13 17 | 18 | * fix template for tiddlywiki.com 19 | * automatically activate trails if the plugin is imported at tiddlywiki.com 20 | 21 | V 0.9.0 - 2023-07-17 22 | 23 | * Initial release 24 | -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/editor/operations/text/select-all.js: -------------------------------------------------------------------------------- 1 | /*\ 2 | title: $:/plugins/wikilabs/trim-whitespace/editor/operations/text/select-all.js 3 | type: application/javascript 4 | module-type: texteditoroperation 5 | 6 | Trim whitespace from selection 7 | modes: leading, trailing, full, white-line 8 | 9 | \*/ 10 | (function(){ 11 | 12 | /*jslint node: true, browser: true */ 13 | /*global $tw: false */ 14 | "use strict"; 15 | 16 | exports["select-all"] = function(event,operation) { 17 | operation.replacement = ""; 18 | operation.newSelStart = 0; 19 | operation.newSelEnd = operation.text.length; 20 | }; 21 | 22 | })(); 23 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_message-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Message 2 | created: 20220824190822151 3 | modified: 20220902165825318 4 | search-term: message background border foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/message-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | <$linkcatcher> 10 |

This is a shadow tiddler. Any changes you make will override the default version from the plugin $:/core

11 | 12 | -------------------------------------------------------------------------------- /wikilabs/cheatsheet/tiddlers/cs/Cheatsheet PM.tid: -------------------------------------------------------------------------------- 1 | created: 20220822141712911 2 | modified: 20230115190100431 3 | tags: [[Wikitext Cheatsheet]] 4 | title: $:/Cheatsheet PM 5 | type: text/vnd.tiddlywiki 6 | 7 | In order to display Tiddlers (usually the text field), the ~WikiText parser reads and interprets the content and applies ~WikiText rules. The parser has three modes: 8 | 9 | * ''pragma mode'' - the parser will recognise only "pragma" punctuation. eg: `\import` 10 | 11 | * ''block mode'' - the parser will recognise only "block" punctuation. eg: `! heading` 12 | 13 | *''inline mode'' - the parser will recognise only "inline" ~WikiText. eg: `''bold''` -------------------------------------------------------------------------------- /wikilabs/field-search/tiddlers/config/tab_Any Field.tid: -------------------------------------------------------------------------------- 1 | caption: Any Field 2 | opt-checked: [all[]] 3 | opt-unchecked: [!is[system]] 4 | search-set: [!is[system]] 5 | search-sort: [sort[title]limit[250]] 6 | tags: $:/tags/SearchResults 7 | title: $:/config/field-search/tab/Any Field 8 | type: text/vnd.tiddlywiki 9 | 10 | \define searchTerm() [search:$(field)$] 11 | 12 | <$list filter="[[$:/config/field-search/data/Any Field]indexes[]sortby{$:/config/field-search/sortby}]" variable=field emptyMessage="[[- configuration needed -|$:/plugins/wikilabs/field-search/readme]]"> 13 | {{||$:/plugins/wikilabs/field-search/templates/Results}} 14 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/EditorToolbar/add-tick.tid: -------------------------------------------------------------------------------- 1 | caption: add-tick 2 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 3 | created: 20200830145744005 4 | description: Add a "tick" at the start of the selected line(s) 5 | icon: $:/plugins/wikilabs/custom-markup/icons/tick-plus 6 | modified: 20200913204237400 7 | shortcuts: ((add-tick)) 8 | title: $:/plugins/wikilabs/custom-markup/EditorToolbar/add-tick 9 | type: text/vnd.tiddlywiki 10 | 11 | <$action-sendmessage 12 | $message="tm-edit-text-operation" 13 | $param="add-glyph" 14 | character={{{ [[$:/config/edit/linePrefix]get[text]] }}} 15 | count="1" 16 | /> 17 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/inline/slash.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/inline/slash 2 | type: application/json 3 | 4 | { 5 | "prefix": "/°", 6 | "suffix": "°/", 7 | "element": "" 8 | } 9 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_tag-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Tags 2 | created: 20220825113231577 3 | modified: 20220902170757586 4 | search-term: tag background foreground 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/tag-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | @@white-space:normal; 10 | Important: Tag foreground is dynamically adjusted based on the brightness of the background
11 | Know issue: https://github.com/Jermolene/TiddlyWiki5/issues/6929 12 | 13 | * <> 14 | * {{$:/core/ui/UntaggedTemplate}} --- <$transclude tiddler="$:/language/Docs/PaletteColours/untagged-background"/> -------------------------------------------------------------------------------- /wikilabs/trails/tiddlers/templates/tw-com-template.tid: -------------------------------------------------------------------------------- 1 | code-body: yes 2 | created: 20230316112235083 3 | list-before: $:/core/ui/ViewTemplate/body 4 | modified: 20230326145802667 5 | tags: $:/tags/ViewTemplate template 6 | title: $:/plugins/wikilabs/trails/tw-com-template 7 | type: text/vnd.tiddlywiki 8 | 9 | 10 | 11 | \whitespace trim 12 | 13 | <$list filter="[[TableOfContents]is[tiddler]] :filter[<..currentTiddler>!is[system]]" variable="ignore" > 14 | <$macrocall $name="trail" stop="TableOfContents" exclude="$:/tags/SideBar" mode={{$:/config/wl/trails/filterMode}}/> 15 | -------------------------------------------------------------------------------- /wikilabs/custom-markup/tiddlers/images/add-newline.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/custom-markup/icons/add-newline 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wikilabs/info-tagmap/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/info-tagmap/history 2 | 3 | V 0.2.2 - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.2.1 - 2022-08-04 9 | 10 | * Fix whitespace handling for TW v5.2.3 11 | 12 | V 0.2.0 - 2022-03-27 13 | 14 | * ''Important'': Changed license to Attribution-NonCommercial-ShareAlike -- [[CC-BY-NC-SA|$:/plugins/wikilabs/info-tagmap/license]] 15 | 16 | V 0.1.3 - 2020-12-25 17 | 18 | * update license 19 | 20 | V 0.1.2 - 2020.01.19 21 | 22 | * Update license link/text 23 | 24 | V 0.1.1 - 2016 25 | 26 | * initial release 27 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_dropdown-border.tid: -------------------------------------------------------------------------------- 1 | caption: Dropdown 2 | created: 20220824141931472 3 | modified: 20220902165528625 4 | search-term: dropdown background border 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/dropdown-border 7 | type: text/vnd.tiddlywiki 8 | 9 | Test the ''mouse hover function!'' 10 | 11 | <$linkcatcher> 12 |
13 | [[ see -- color: <>;]] 14 | [[ see -- background-color: <>;]] 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/history.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/trigger/history 2 | 3 | V 0.2.1-beta - 2024-05-23 4 | 5 | * Add stability badges 6 | ** The development status of a plugin: deprecated, experimental, stable, or legacy 7 | 8 | V 0.2.0 - 2022-03-27 9 | 10 | * update to TW v5.2.2 11 | * ''Important'': Changed license to Attribution-NonCommercial-ShareAlike -- [[CC-BY-NC-SA|$:/plugins/wikilabs/trigger/license]] 12 | 13 | 14 | V 0.1.1 - 2020.12.25 15 | 16 | * update license 17 | 18 | V 0.1.0 - 2020.01.19 19 | 20 | * Update license link/text 21 | * Out of alpha no code changes 22 | 23 | V 0.0.1 - alpha 24 | 25 | * initial release 26 | ** name: trigger 27 | -------------------------------------------------------------------------------- /wikilabs/external-core/templates/external-js/tiddlywiki.js.tid: -------------------------------------------------------------------------------- 1 | title: $:/core/templates/tiddlywiki5.js 2 | 3 | \rules only filteredtranscludeinline transcludeinline codeinline 4 | 5 | /* 6 | {{ $:/core/copyright.txt ||$:/core/templates/plain-text-tiddler}} 7 | `*/ 8 | ` 9 | {{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/plain-text-tiddler}}} 10 | 11 | {{ $:/boot/bootprefix.js ||$:/core/templates/plain-text-tiddler}} 12 | 13 | {{$:/core/templates/tiddlywiki5.js/tiddlers}} 14 | 15 | {{ $:/boot/boot.js ||$:/core/templates/plain-text-tiddler}} 16 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/ui/MoreSideBar/Aliases_byAlias.tid: -------------------------------------------------------------------------------- 1 | caption: Alias 2 | created: 20171214203739053 3 | list-before: $:/core/ui/MoreSideBar/Recent 4 | modified: 20171214213743140 5 | tags: $:/plugins/wikilabs/uni-link/ui/MoreSideBar/Aliases 6 | title: $:/plugins/wikilabs/uni-link/ui/MoreSideBar/Aliases/byAlias 7 | type: text/vnd.tiddlywiki 8 | 9 | \whitespace trim 10 | <$list filter="[all[aliases]sort[title]]" variable=alias> 11 |
12 | <$macrocall $name="aka" target=<> /> 13 |
14 | <$macrocall $name="aka-no-links" target=<> /> 15 |
16 |
17 | 18 | -------------------------------------------------------------------------------- /wikilabs/trigger/tiddlers/log-actions.tid: -------------------------------------------------------------------------------- 1 | created: 20190906144716671 2 | modified: 20190906154301599 3 | title: log-actions 4 | type: text/vnd.tiddlywiki 5 | 6 | \define getText() $(currentTiddler)$ - $(diff-count)$ - errors - $(text-x)$ 7 | 8 | \define log(xx:"") 9 | <$set name="text-x" value="""$xx$""" emptyValue=<>> 10 | <$action-setfield $tiddler="log" $index=<> $value=<>/> 11 | 12 | \end 13 | 14 | \define clear-log() 15 | <$action-setfield $tiddler="log" text="" tags="$:/tags/BelowStory"/> 16 | <$action-setfield $tiddler="log" $index=<> $value=<>/> 17 | \end 18 | 19 |
<$view field="text"/>
-------------------------------------------------------------------------------- /wikilabs/field-editor/tiddlers/EditTemplate/warning/existing-field-overwrite-warning.tid: -------------------------------------------------------------------------------- 1 | title: $:/plugins/wikilabs/EditTemplate/fieldEditor/overwrite-warning 2 | list-after: $:/core/ui/EditTemplate/fields 3 | tags: $:/tags/EditTemplate 4 | 5 | \whitespace trim 6 | <$set name="Field" value={{{ [get[text]] }}}> 7 | <$list filter={{{ [all[current]hasthen[yes]else[]] }}} variable=ignore> 8 |
''Warning:'' The field ''"<>"'' exists. It may be hidden 9 |
It contains 10 |
<$view field=<> format=text/>
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /wikilabs/uni-link/tiddlers/system/$__core_ui_EditorToolbar_aliasify.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/Buttons/Aliasify/Caption}} 2 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 3 | created: 20180909082308073 4 | description: {{$:/language/Buttons/Aliasify/Hint}} 5 | icon: $:/core/images/aliasify 6 | list-before: $:/core/ui/EditorToolbar/mono-block 7 | modified: 20180909091537847 8 | shortcuts: ((aliasify)) 9 | tags: $:/tags/EditorToolbar 10 | title: $:/core/ui/EditorToolbar/aliasify 11 | type: text/vnd.tiddlywiki 12 | 13 | <$action-sendmessage 14 | $message="tm-edit-text-operation" 15 | $param="wrap-selection" 16 | prefix="[[" 17 | suffix="|?]]" 18 | /> 19 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/ui/buttons/export-bundle.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/core/images/export-button}} {{$:/language/Buttons/ExportTiddler/Caption}} 2 | created: 20170601135455476 3 | description: export bundle 4 | modified: 20170609084521882 5 | title: $:/plugins/wikilabs/bundler/ui/Buttons/export-bundle 6 | type: text/vnd.tiddlywiki 7 | 8 | \whitespace trim 9 | 10 | \define makeExportFilter() 11 | [enlist{$(currentTiddler)$}] 12 | \end 13 | 14 | 15 | <$macrocall $name="exportButton" 16 | exportFilter=<> 17 | lingoBase="$:/language/Buttons/ExportTiddler/" 18 | baseFilename={{{ [] ".data" +[join[]] }}} 19 | /> 20 | 21 | -------------------------------------------------------------------------------- /wikilabs/link-to-tabs/tiddlers/config/config.tid: -------------------------------------------------------------------------------- 1 | created: 20190712133008077 2 | initial-opacity: 0.7 3 | modified: 20190714104541701 4 | show-all-links: none 5 | show-single-link: inline-block 6 | title: $:/plugins/wikilabs/link-to-tabs/config 7 | transition: 0.3 8 | type: text/vnd.tiddlywiki 9 | 10 | This tiddler is used to configure the "Link-to-tabs" plugin behaviour. 11 | 12 | There are 4 fields, which are used by [[$:/plugins/wikilabs/link-to-tabs/styles]] enable and disable the internal links. 13 | 14 | * show-all-links: {{!!show-all-links}} 15 | * show-single-link: {{!!show-single-link}} 16 | * initial-opacity: {{!!initial-opacity}} 17 | * transition time in seconds: {{!!transition}} 18 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_diff-invisible-foreground.tid: -------------------------------------------------------------------------------- 1 | caption: Diff 2 | created: 20220824121516065 3 | modified: 20220902165240929 4 | search-term: diff delete background foreground equal insert invisible 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/diff-invisible-foreground 7 | type: text/vnd.tiddlywiki 8 | 9 | <$diff-text source="Hey Jude, don't make it bad. Take a sad song and make it better. 10 | Remember to let her into your heart 11 | Then you can start to make it better." dest="Hey Jude, don't be afraid. You were made to go out and get her. The minute you let her under your skin. Then you begin to make it better. 12 | 13 | "/> -------------------------------------------------------------------------------- /wikilabs/trim-whitespace/tiddlers/EditorToolbar/trim-whitespace.tid: -------------------------------------------------------------------------------- 1 | caption: trim-whitespace 2 | condition: [!has[type]] [type[text/vnd.tiddlywiki]] 3 | description: Trim whitesace from the selected line(s) 4 | icon: $:/plugins/wikilabs/trim-whitespace/icons/trim-whitespace 5 | shortcuts: ((trim-whitespace)) 6 | title: $:/plugins/wikilabs/trim-whitespace/EditorToolbar/trim-whitespace 7 | tags: $:/tags/EditorToolbar 8 | 9 | 10 | <$action-sendmessage 11 | $message="tm-edit-text-operation" 12 | $param="trim-whitespace" 13 | mode={{{ [{$:/config/trim-whitespace/mode}trim[]!is[blank]] ~[[white-line]] }}} 14 | /> 15 | -------------------------------------------------------------------------------- /wikilabs/palette-manager/tiddlers/palettes/preview/__palettes_preview_sidebar-muted-foreground-hover.tid: -------------------------------------------------------------------------------- 1 | caption: Sidebar Muted 2 | created: 20220825003704176 3 | modified: 20220902170352960 4 | search-term: sidebar muted foreground hover 5 | tags: $:/tags/palette/preview 6 | title: $:/palettes/preview/sidebar-muted-foreground-hover 7 | type: text/vnd.tiddlywiki 8 | 9 | ''Hover'' the ''{{$:/language/CloseAll/Button}}'' button below to see the related hover color 10 | 11 | ''Open Sidebar'' 12 | 13 |
14 | {{$:/core/ui/SideBar/Open}} 15 |
16 | 17 | ''Standard Link'' eg: `[[test]]` are ''not'' effected 18 | 19 | [[$:/PaletteManager]]
20 | [[:/palettes/components]] -------------------------------------------------------------------------------- /wikilabs/external-core/templates/external-js/save-offline-external-js.tid: -------------------------------------------------------------------------------- 1 | title: $:/core/save/offline-external-js 2 | 3 | \import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]] 4 | \define saveTiddlerFilter() 5 | [is[tiddler]] -[prefix[$:/state/popup/]] -[prefix[$:/temp/]] -[prefix[$:/HistoryList]] -[status[pending]plugin-type[import]] -[[$:/core]] -[[$:/plugins/tiddlywiki/filesystem]] -[[$:/plugins/tiddlywiki/tiddlyweb]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]] $(publishFilter)$ 6 | \end 7 | \define coreURL() tiddlywikicore-$(version)$.js 8 | {{$:/core/templates/tiddlywiki5-external-js.html}} 9 | -------------------------------------------------------------------------------- /wikilabs/bundler/tiddlers/system/viewtemplate-cascade/$__plugin_wikilabs_ui_ViewTemplate_body_filters.tid: -------------------------------------------------------------------------------- 1 | created: 20230103230023478 2 | modified: 20230103230115806 3 | tags: 4 | title: $:/plugin/wikilabs/ui/ViewTemplate/body/filters 5 | type: text/vnd.tiddlywiki 6 | 7 | <$transclude /> 8 | 9 | --- 10 | 11 | Description: {{!!description}} 12 | 13 | Filter:
<$view field="filter" mode=inline/>
14 | 15 |
Filter Results: <$count filter={{!!filter}}/> 16 |
17 | Open the tiddler InfoArea {{$:/core/images/info-button|1em}} for full functionality. 18 | 19 | <$macrocall $name="list-links" filter={{!!filter}} emptyMessage="--- no results ---"/> 20 |
21 |
--------------------------------------------------------------------------------