1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-02 14:29:55 +00:00

Merge branch 'TiddlyWiki:master' into feat/to-string

This commit is contained in:
lin onetwo 2024-08-04 21:40:41 +08:00 committed by GitHub
commit 96adee987a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
130 changed files with 373 additions and 169 deletions

View File

@ -231,7 +231,10 @@ rules:
prefer-spread: 'off' prefer-spread: 'off'
prefer-template: 'off' prefer-template: 'off'
quote-props: 'off' quote-props: 'off'
quotes: 'off' quotes:
- error
- double
- avoidEscape: true
radix: 'off' radix: 'off'
require-atomic-updates: error require-atomic-updates: error
require-await: error require-await: error

5
core/images/discord.tid Normal file
View File

@ -0,0 +1,5 @@
title: $:/core/images/discord
tags: $:/tags/Image
\parameters (size:"22pt")
<svg width=<<size>> height=<<size>> class="tc-image-discord tc-image-button" viewBox="0 -28.5 256 256"><path d="M216.856 16.597A208.502 208.502 0 0 0 164.042 0c-2.275 4.113-4.933 9.645-6.766 14.046-19.692-2.961-39.203-2.961-58.533 0-1.832-4.4-4.55-9.933-6.846-14.046a207.809 207.809 0 0 0-52.855 16.638C5.618 67.147-3.443 116.4 1.087 164.956c22.169 16.555 43.653 26.612 64.775 33.193A161.094 161.094 0 0 0 79.735 175.3a136.413 136.413 0 0 1-21.846-10.632 108.636 108.636 0 0 0 5.356-4.237c42.122 19.702 87.89 19.702 129.51 0a131.66 131.66 0 0 0 5.355 4.237 136.07 136.07 0 0 1-21.886 10.653c4.006 8.02 8.638 15.67 13.873 22.848 21.142-6.58 42.646-16.637 64.815-33.213 5.316-56.288-9.08-105.09-38.056-148.36ZM85.474 135.095c-12.645 0-23.015-11.805-23.015-26.18s10.149-26.2 23.015-26.2c12.867 0 23.236 11.804 23.015 26.2.02 14.375-10.148 26.18-23.015 26.18Zm85.051 0c-12.645 0-23.014-11.805-23.014-26.18s10.148-26.2 23.014-26.2c12.867 0 23.236 11.804 23.015 26.2 0 14.375-10.148 26.18-23.015 26.18Z"/></svg>

View File

@ -235,3 +235,7 @@ ViewTemplateBody/Caption: View Template Body
ViewTemplateBody/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the body of a tiddler. ViewTemplateBody/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the body of a tiddler.
ViewTemplateTitle/Caption: View Template Title ViewTemplateTitle/Caption: View Template Title
ViewTemplateTitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the title of a tiddler. ViewTemplateTitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the title of a tiddler.
ViewTemplateSubtitle/Caption: View Template Subtitle
ViewTemplateSubtitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the subtitle of a tiddler.
ViewTemplateTags/Caption: View Template Tags
ViewTemplateTags/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the tags area of a tiddler.

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/FunctionDefinition
tags: $:/tags/TextEditor/Snippet
caption: Function definition
\function f.name(param1,param2:"default value") [<param1>!is[blank]else<param2>]
<<f.name>>

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/ProcedureDefinition
tags: $:/tags/TextEditor/Snippet
caption: Procedure definition
\procedure procName(param1:"default value",param2)
Your text comes here.
\end

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO icon
name: image/x-icon
group: Image
group-sort: 1

View File

@ -0,0 +1,5 @@
title: $:/language/Docs/Types/text/vnd.tiddlywiki-multiple
description: Compound tiddler
name: text/vnd.tiddlywiki-multiple
group: Developer
group-sort: 2

View File

@ -12,7 +12,7 @@ Upgrader module that suppresses certain system tiddlers that shouldn't be import
/*global $tw: false */ /*global $tw: false */
"use strict"; "use strict";
var DONT_IMPORT_LIST = ["$:/Import"], var DONT_IMPORT_LIST = ["$:/Import", "$:/build"],
UNSELECT_PREFIX_LIST = ["$:/temp/","$:/state/","$:/StoryList","$:/HistoryList"], UNSELECT_PREFIX_LIST = ["$:/temp/","$:/state/","$:/StoryList","$:/HistoryList"],
WARN_IMPORT_PREFIX_LIST = ["$:/core/modules/"]; WARN_IMPORT_PREFIX_LIST = ["$:/core/modules/"];

View File

@ -75,7 +75,9 @@ DataWidget.prototype.computeDataTiddlerValues = function() {
} }
}); });
// Deal with $tiddler, $filter or $compound-tiddler attributes // Deal with $tiddler, $filter or $compound-tiddler attributes
var tiddlers = [],title; var tiddlers = [],
compoundTiddlers,
title;
if(this.hasAttribute("$tiddler")) { if(this.hasAttribute("$tiddler")) {
title = this.getAttribute("$tiddler"); title = this.getAttribute("$tiddler");
if(title) { if(title) {
@ -103,8 +105,17 @@ DataWidget.prototype.computeDataTiddlerValues = function() {
tiddlers.push.apply(tiddlers,this.extractCompoundTiddler(title)); tiddlers.push.apply(tiddlers,this.extractCompoundTiddler(title));
} }
} }
if(this.hasAttribute("$compound-filter")) {
filter = this.getAttribute("$compound-filter");
if(filter) {
compoundTiddlers = this.wiki.filterTiddlers(filter);
$tw.utils.each(compoundTiddlers, function(title){
tiddlers.push.apply(tiddlers,self.extractCompoundTiddler(title));
});
}
}
// Return the literal item if none of the special attributes were used // Return the literal item if none of the special attributes were used
if(!this.hasAttribute("$tiddler") && !this.hasAttribute("$filter") && !this.hasAttribute("$compound-tiddler")) { if(!this.hasAttribute("$tiddler") && !this.hasAttribute("$filter") && !this.hasAttribute("$compound-tiddler") && !this.hasAttribute("$compound-filter")) {
if(Object.keys(item).length > 0 && !!item.title) { if(Object.keys(item).length > 0 && !!item.title) {
return [new $tw.Tiddler(item)]; return [new $tw.Tiddler(item)];
} else { } else {

View File

@ -0,0 +1,9 @@
title: $:/core/ui/ControlPanel/ViewTemplateSubtitle
tags: $:/tags/ControlPanel/Cascades
caption: {{$:/language/ControlPanel/ViewTemplateSubtitle/Caption}}
\define lingo-base() $:/language/ControlPanel/ViewTemplateSubtitle/
<<lingo Hint>>
{{$:/tags/ViewTemplateSubtitleFilter||$:/snippets/ListTaggedCascade}}

View File

@ -0,0 +1,9 @@
title: $:/core/ui/ControlPanel/ViewTemplateTags
tags: $:/tags/ControlPanel/Cascades
caption: {{$:/language/ControlPanel/ViewTemplateTags/Caption}}
\define lingo-base() $:/language/ControlPanel/ViewTemplateTags/
<<lingo Hint>>
{{$:/tags/ViewTemplateTagsFilter||$:/snippets/ListTaggedCascade}}

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/bold icon: $:/core/images/bold
caption: {{$:/language/Buttons/Bold/Caption}} caption: {{$:/language/Buttons/Bold/Caption}}
description: {{$:/language/Buttons/Bold/Hint}} description: {{$:/language/Buttons/Bold/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((bold)) shortcuts: ((bold))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/excise icon: $:/core/images/excise
caption: {{$:/language/Buttons/Excise/Caption}} caption: {{$:/language/Buttons/Excise/Caption}}
description: {{$:/language/Buttons/Excise/Hint}} description: {{$:/language/Buttons/Excise/Hint}}
condition: [<targetTiddler>type[]] [<targetTiddler>type[text/vnd.tiddlywiki]] +[first[]] condition: [<targetTiddler>type[]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]] +[first[]]
shortcuts: ((excise)) shortcuts: ((excise))
dropdown: $:/core/ui/EditorToolbar/excise-dropdown dropdown: $:/core/ui/EditorToolbar/excise-dropdown

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-1 icon: $:/core/images/heading-1
caption: {{$:/language/Buttons/Heading1/Caption}} caption: {{$:/language/Buttons/Heading1/Caption}}
description: {{$:/language/Buttons/Heading1/Hint}} description: {{$:/language/Buttons/Heading1/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
button-classes: tc-text-editor-toolbar-item-start-group button-classes: tc-text-editor-toolbar-item-start-group
shortcuts: ((heading-1)) shortcuts: ((heading-1))

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-2 icon: $:/core/images/heading-2
caption: {{$:/language/Buttons/Heading2/Caption}} caption: {{$:/language/Buttons/Heading2/Caption}}
description: {{$:/language/Buttons/Heading2/Hint}} description: {{$:/language/Buttons/Heading2/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((heading-2)) shortcuts: ((heading-2))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-3 icon: $:/core/images/heading-3
caption: {{$:/language/Buttons/Heading3/Caption}} caption: {{$:/language/Buttons/Heading3/Caption}}
description: {{$:/language/Buttons/Heading3/Hint}} description: {{$:/language/Buttons/Heading3/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((heading-3)) shortcuts: ((heading-3))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-4 icon: $:/core/images/heading-4
caption: {{$:/language/Buttons/Heading4/Caption}} caption: {{$:/language/Buttons/Heading4/Caption}}
description: {{$:/language/Buttons/Heading4/Hint}} description: {{$:/language/Buttons/Heading4/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((heading-4)) shortcuts: ((heading-4))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-5 icon: $:/core/images/heading-5
caption: {{$:/language/Buttons/Heading5/Caption}} caption: {{$:/language/Buttons/Heading5/Caption}}
description: {{$:/language/Buttons/Heading5/Hint}} description: {{$:/language/Buttons/Heading5/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((heading-5)) shortcuts: ((heading-5))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/heading-6 icon: $:/core/images/heading-6
caption: {{$:/language/Buttons/Heading6/Caption}} caption: {{$:/language/Buttons/Heading6/Caption}}
description: {{$:/language/Buttons/Heading6/Hint}} description: {{$:/language/Buttons/Heading6/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((heading-6)) shortcuts: ((heading-6))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/italic icon: $:/core/images/italic
caption: {{$:/language/Buttons/Italic/Caption}} caption: {{$:/language/Buttons/Italic/Caption}}
description: {{$:/language/Buttons/Italic/Hint}} description: {{$:/language/Buttons/Italic/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((italic)) shortcuts: ((italic))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/link icon: $:/core/images/link
caption: {{$:/language/Buttons/Link/Caption}} caption: {{$:/language/Buttons/Link/Caption}}
description: {{$:/language/Buttons/Link/Hint}} description: {{$:/language/Buttons/Link/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
button-classes: tc-text-editor-toolbar-item-start-group button-classes: tc-text-editor-toolbar-item-start-group
shortcuts: ((link)) shortcuts: ((link))
dropdown: $:/core/ui/EditorToolbar/link-dropdown dropdown: $:/core/ui/EditorToolbar/link-dropdown

View File

@ -1,5 +1,5 @@
caption: {{$:/language/Buttons/Linkify/Caption}} caption: {{$:/language/Buttons/Linkify/Caption}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
description: {{$:/language/Buttons/Linkify/Hint}} description: {{$:/language/Buttons/Linkify/Hint}}
icon: $:/core/images/linkify icon: $:/core/images/linkify
list-before: $:/core/ui/EditorToolbar/mono-block list-before: $:/core/ui/EditorToolbar/mono-block

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/list-bullet icon: $:/core/images/list-bullet
caption: {{$:/language/Buttons/ListBullet/Caption}} caption: {{$:/language/Buttons/ListBullet/Caption}}
description: {{$:/language/Buttons/ListBullet/Hint}} description: {{$:/language/Buttons/ListBullet/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((list-bullet)) shortcuts: ((list-bullet))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/list-number icon: $:/core/images/list-number
caption: {{$:/language/Buttons/ListNumber/Caption}} caption: {{$:/language/Buttons/ListNumber/Caption}}
description: {{$:/language/Buttons/ListNumber/Hint}} description: {{$:/language/Buttons/ListNumber/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((list-number)) shortcuts: ((list-number))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/mono-block icon: $:/core/images/mono-block
caption: {{$:/language/Buttons/MonoBlock/Caption}} caption: {{$:/language/Buttons/MonoBlock/Caption}}
description: {{$:/language/Buttons/MonoBlock/Hint}} description: {{$:/language/Buttons/MonoBlock/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
button-classes: tc-text-editor-toolbar-item-start-group button-classes: tc-text-editor-toolbar-item-start-group
shortcuts: ((mono-block)) shortcuts: ((mono-block))

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/mono-line icon: $:/core/images/mono-line
caption: {{$:/language/Buttons/MonoLine/Caption}} caption: {{$:/language/Buttons/MonoLine/Caption}}
description: {{$:/language/Buttons/MonoLine/Hint}} description: {{$:/language/Buttons/MonoLine/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((mono-line)) shortcuts: ((mono-line))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/picture icon: $:/core/images/picture
caption: {{$:/language/Buttons/Picture/Caption}} caption: {{$:/language/Buttons/Picture/Caption}}
description: {{$:/language/Buttons/Picture/Hint}} description: {{$:/language/Buttons/Picture/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((picture)) shortcuts: ((picture))
dropdown: $:/core/ui/EditorToolbar/picture-dropdown dropdown: $:/core/ui/EditorToolbar/picture-dropdown

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/quote icon: $:/core/images/quote
caption: {{$:/language/Buttons/Quote/Caption}} caption: {{$:/language/Buttons/Quote/Caption}}
description: {{$:/language/Buttons/Quote/Hint}} description: {{$:/language/Buttons/Quote/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((quote)) shortcuts: ((quote))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/strikethrough icon: $:/core/images/strikethrough
caption: {{$:/language/Buttons/Strikethrough/Caption}} caption: {{$:/language/Buttons/Strikethrough/Caption}}
description: {{$:/language/Buttons/Strikethrough/Hint}} description: {{$:/language/Buttons/Strikethrough/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((strikethrough)) shortcuts: ((strikethrough))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/subscript icon: $:/core/images/subscript
caption: {{$:/language/Buttons/Subscript/Caption}} caption: {{$:/language/Buttons/Subscript/Caption}}
description: {{$:/language/Buttons/Subscript/Hint}} description: {{$:/language/Buttons/Subscript/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((subscript)) shortcuts: ((subscript))
<$action-sendmessage <$action-sendmessage

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/superscript icon: $:/core/images/superscript
caption: {{$:/language/Buttons/Superscript/Caption}} caption: {{$:/language/Buttons/Superscript/Caption}}
description: {{$:/language/Buttons/Superscript/Hint}} description: {{$:/language/Buttons/Superscript/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((superscript)) shortcuts: ((superscript))
<$action-sendmessage <$action-sendmessage

View File

@ -1,5 +1,5 @@
caption: {{$:/language/Buttons/Transcludify/Caption}} caption: {{$:/language/Buttons/Transcludify/Caption}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
description: {{$:/language/Buttons/Transcludify/Hint}} description: {{$:/language/Buttons/Transcludify/Hint}}
icon: $:/core/images/transcludify icon: $:/core/images/transcludify
list-before: $:/core/ui/EditorToolbar/mono-block list-before: $:/core/ui/EditorToolbar/mono-block

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
icon: $:/core/images/underline icon: $:/core/images/underline
caption: {{$:/language/Buttons/Underline/Caption}} caption: {{$:/language/Buttons/Underline/Caption}}
description: {{$:/language/Buttons/Underline/Hint}} description: {{$:/language/Buttons/Underline/Hint}}
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]] condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
shortcuts: ((underline)) shortcuts: ((underline))
<$action-sendmessage <$action-sendmessage

View File

@ -9,7 +9,7 @@ title: $:/core/ui/TagTemplate
colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}} colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}
palette={{$:/palette}} palette={{$:/palette}}
element-tag="$button" element-tag="$button"
element-attributes="""popup=<<qualify "$:/state/popup/tag">> dragFilter="[all[current]tagging[]]" tag='span'""" element-attributes="""popup=<<qualify "$:/state/popup/tag">> dragFilter="[subfilter{$:/core/config/TagPillDragFilter}]" tag='span'"""
/> />
<$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes" class="tc-drop-down"> <$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes" class="tc-drop-down">
<$set name="tv-show-missing-links" value="yes"> <$set name="tv-show-missing-links" value="yes">

View File

@ -13,7 +13,8 @@ title: $:/core/ui/TestCaseTemplate
testActions="Actions" testActions="Actions"
testHideIfPass=<<hideIfPass>> testHideIfPass=<<hideIfPass>>
> >
<$data $compound-filter={{!!import-compound}}/>
<$data $compound-tiddler=<<currentTiddler>>/> <$data $compound-tiddler=<<currentTiddler>>/>
<$data title="Description" text={{!!description}}/> <%if [{!!description}!is[blank]] %><$data title="Description" text={{!!description}}/><%endif%>
</$testcase> </$testcase>
</$let> </$let>

View File

@ -2,10 +2,4 @@ title: $:/core/ui/ViewTemplate/subtitle
tags: $:/tags/ViewTemplate tags: $:/tags/ViewTemplate
\whitespace trim \whitespace trim
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes"> <$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateSubtitleFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/subtitle/default]] }}} />
<div class="tc-subtitle">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Subtitle]!has[draft.of]]" variable="subtitleTiddler">
<$transclude tiddler=<<subtitleTiddler>> mode="inline"/><$list-join>&nbsp;</$list-join>
</$list>
</div>
</$reveal>

View File

@ -0,0 +1,10 @@
title: $:/core/ui/ViewTemplate/subtitle/default
\whitespace trim
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
<div class="tc-subtitle">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Subtitle]!has[draft.of]]" variable="subtitleTiddler">
<$transclude tiddler=<<subtitleTiddler>> mode="inline"/><$list-join>&nbsp;</$list-join>
</$list>
</div>
</$reveal>

View File

@ -2,6 +2,4 @@ title: $:/core/ui/ViewTemplate/tags
tags: $:/tags/ViewTemplate tags: $:/tags/ViewTemplate
\whitespace trim \whitespace trim
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes"> <$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateTagsFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/tags/default]] }}} />
<div class="tc-tags-wrapper"><$list filter="[all[current]tags[]sort[title]]" template="$:/core/ui/TagTemplate" storyview="pop"/></div>
</$reveal>

View File

@ -0,0 +1,11 @@
title: $:/core/ui/ViewTemplate/tags/default
\whitespace trim
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
<div class="tc-tags-wrapper">
<$list filter="[all[current]tags[]sort[title]]" template="$:/core/ui/TagTemplate" storyview="pop"/>
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Tags]!has[draft.of]]">
<$transclude mode="inline"/>
</$list>
</div>
</$reveal>

View File

@ -0,0 +1,2 @@
title: $:/core/config/TagPillDragFilter
text: [all[current]tagging[]] +[!is[draft]]

View File

@ -0,0 +1,4 @@
title: $:/config/ViewTemplateSubtitleFilters/
tags: $:/tags/ViewTemplateSubtitleFilter
default: [[$:/core/ui/ViewTemplate/subtitle/default]]

View File

@ -0,0 +1,4 @@
title: $:/config/ViewTemplateTagsFilters/
tags: $:/tags/ViewTemplateTagsFilter
default: [[$:/core/ui/ViewTemplate/tags/default]]

View File

@ -0,0 +1,2 @@
title: $:/tags/TextEditor/Snippet
list: $:/language/Snippets/ProcedureDefinition $:/language/Snippets/FunctionDefinition $:/language/Snippets/ListByTag $:/language/Snippets/Table4x3 $:/language/Snippets/TableOfContents $:/language/Snippets/MacroDefinition

View File

@ -1,12 +1,18 @@
title: TiddlyWiki Pre-release title: TiddlyWiki Pre-release
modified: 20230731122156493 modified: 20230731122156493
This is a pre-release build of TiddlyWiki provided for testing and review purposes. ''Please don't try to depend on the pre-release for anything important'' -- you should use the latest official release from https://tiddlywiki.com. <div class="tc-scary-warning">
!!! This is a pre-release build of TiddlyWiki provided for testing and review purposes.
''Please don't try to depend on the pre-release for anything important'' -- you should use the latest official release from https://tiddlywiki.com.
All of the changes in this pre-release are provisional until it is released and they become frozen by our backwards compatibility policies. This is the perfect time to raise questions or make suggestions. Please [[open a ticket at GitHub|https://github.com/TiddlyWiki/TiddlyWiki5/issues/new/choose]] or make a post at https://talk.tiddlywiki.org/. All of the changes in this pre-release are provisional until it is released and they become frozen by our backwards compatibility policies. This is the perfect time to raise questions or make suggestions. Please [[open a ticket at GitHub|https://github.com/TiddlyWiki/TiddlyWiki5/issues/new/choose]] or make a post at https://talk.tiddlywiki.org/.
The pre-release is also available as an [[empty wiki|https://tiddlywiki.com/prerelease/empty.html]] ready for reuse. The pre-release is also available as an [[empty wiki|https://tiddlywiki.com/prerelease/empty.html]] ready for reuse.
</div>
<$list filter="[tag[ReleaseNotes]!has[released]!sort[created]]"> <$list filter="[tag[ReleaseNotes]!has[released]!sort[created]]">
<div class="tc-titlebar"> <div class="tc-titlebar">
<h2 class="tc-title"><$text text=<<currentTiddler>>/></h2> <h2 class="tc-title"><$text text=<<currentTiddler>>/></h2>

View File

@ -0,0 +1,17 @@
tags: $:/tags/Stylesheet
title: $:/_tw5.com/prerelease-styles
type: text/vnd.tiddlywiki
\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock
.tc-scary-warning {
font-weight: bold;
padding: 0 1em;
margin-left: -1em;
margin-right: -1em;
color: #f22;
border-radius: 4px;
border: 3px solid transparent;
background: #ffd;
background: linear-gradient(#ffd, #ffd) padding-box, repeating-linear-gradient(-45deg, red 0, red 25%, transparent 0, transparent 50%) 0 / .6em .6em;
}

View File

@ -0,0 +1,54 @@
title: ReservedWikiText
description: Verify that reserved wikitext constructions are not parsed
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Narrative
Verifies that certain wikitext constructions that are reserved for use by other tools are not parsed by TiddlyWiki.
+
title: TestTiddler
{%%}
(==)
{% %}
(= =)
{% something %}
(= something =)
Inline {% something %} substitution
Inline (= something =) substitution
Prefix-{%
Prefix-(=
%}-Postfix
=)-Postfix
{%
(=
%}
=)
+
title: Output
<$wikify name="parsetree" text={{TestTiddler}} output="parsetree">
<$text text={{{ [<parsetree>jsonget[0],[children],[0],[text]] }}}/>
</$wikify>
+
title: ExpectedResult
<p>
{%%}
(==)
{% %}
(= =)
{% something %}
(= something =)
Inline {% something %} substitution
Inline (= something =) substitution
Prefix-{%
Prefix-(=
%}-Postfix
=)-Postfix
{%
(=
%}
=)
</p>

View File

@ -1,7 +1,8 @@
title: CompoundTiddlers
modified: 20240507221902644
created: 20240507221902644 created: 20240507221902644
modified: 20240729082610287
tags: Concepts tags: Concepts
title: CompoundTiddlers
type: text/vnd.tiddlywiki
Compound tiddlers are a special type of tiddler that can store one or more payload tiddlers. The tiddlers within a compound tiddler are only accessible via special operations, typically with the TestCaseWidget. Compound tiddlers are a special type of tiddler that can store one or more payload tiddlers. The tiddlers within a compound tiddler are only accessible via special operations, typically with the TestCaseWidget.
@ -29,3 +30,5 @@ tags: five six
This is the third tiddler This is the third tiddler
``` ```
Also see: [[TestCaseTiddlers]]

View File

@ -1,26 +1,30 @@
title: TestCaseTiddlers
modified: 20240507221902644
created: 20240507221902644 created: 20240507221902644
modified: 20240729083054531
tags: Concepts tags: Concepts
title: TestCaseTiddlers
type: text/vnd.tiddlywiki
Test case tiddlers encapsulate one or more tiddlers that can be displayed as a [[test case|TestCaseWidget]]: an independent embedded wiki that can be used for testing or learning purposes. Test case tiddlers encapsulate one or more tiddlers that can be displayed as a <<.wlink TestCaseWidget>>: an independent embedded wiki that can be used for testing or learning purposes.
Test case tiddlers are formatted as CompoundTiddlers, allowing them to contain multiple tiddlers packed into one. Test case tiddlers are formatted as CompoundTiddlers, allowing them to contain multiple tiddlers packed into one.
Test case tiddlers have the following fields: Test case tiddlers have the following ''fields'':
|!Field |!Description | |!Field |!Description |
|<<.field type>> | Should be set to `text/vnd.tiddlywiki-multiple` | |<<.field type>> |Needs to be set to `text/vnd.tiddlywiki-multiple` |
|<<.field tags>> | Test cases are tagged [[$:/tags/wiki-test-spec]]. Test cases that intentionally fail are tagged [[$:/tags/wiki-test-spec-failing]] | |<<.field tags>> |Test cases are tagged [[$:/tags/wiki-test-spec]]. Test cases that intentionally fail are tagged [[$:/tags/wiki-test-spec-failing]] |
|<<.field description>> |Descriptive heading for the test, intended to make it easy to identify the test | |<<.field description>> |Descriptive heading for the test, intended to make it easy to identify the test |
|<<.field display-format>> |Optional, defaults to `wikitext`. Set to `plaintext` to cause the output to be rended as plain text | |<<.field display-format>> |Optional, defaults to `wikitext`. Set to `plaintext` to cause the output to be rended as plain text |
|<<.field import-compound>> |<<.from-version "5.3.6">> A filter string, that defines a list of compound tiddlers, that should be imported. See: <<.wlink DataWidget>> widget |
Test case tiddlers with the appropriate tag are shown in $:/ControlPanel Test case tiddlers with the appropriate tag are shown in the $:/ControlPanel ''-> Advanced -> Test Cases ''
Some payload tiddlers are set aside for special purposes: Some ''payload ''tiddlers are set aside for special purposes:
|!Tiddler |!Description | |!Tiddler |!Description |
|''Narrative'' |Narrative description of the test, intended to explain the purpose and operation of the test | |''Narrative'' |Narrative description of the test, intended to explain the purpose and operation of the test |
|''Output'' |The tiddler that produces the test output | |''Output'' |The tiddler that produces the test output |
|''~ExpectedResult'' |HTML of expected result of rendering the ''Output'' tiddler | |''~ExpectedResult'' |HTML of expected result of rendering the ''Output'' tiddler |
|''Description'' |Set to the text of the <<.field description>> field | |''Description'' |Set to the text of the <<.field description>> field, if the field exists |
Also see: TestCaseWidget, DataWidget

View File

@ -41,6 +41,9 @@ TiddlyWiki lets you choose where to keep your data, guaranteeing that in the dec
<a href="https://www.youtube.com/c/JeremyRuston" class="tc-btn-big-green" style="border-radius:4px;background-color:#e52d27;" target="_blank" rel="noopener noreferrer"> <a href="https://www.youtube.com/c/JeremyRuston" class="tc-btn-big-green" style="border-radius:4px;background-color:#e52d27;" target="_blank" rel="noopener noreferrer">
{{$:/core/images/video}} ~YouTube {{$:/core/images/video}} ~YouTube
</a> </a>
<a href="https://discord.gg/HFFZVQ8" class="tc-btn-big-green" style="border-radius:4px;background-color:#5462EB;" target="_blank" rel="noopener noreferrer">
{{$:/core/images/discord}} Discord
</a>
<a href="https://twitter.com/TiddlyWiki" class="tc-btn-big-green" style="border-radius:4px;background-color:#1DA1F2;" target="_blank" rel="noopener noreferrer"> <a href="https://twitter.com/TiddlyWiki" class="tc-btn-big-green" style="border-radius:4px;background-color:#1DA1F2;" target="_blank" rel="noopener noreferrer">
{{$:/core/images/twitter}} Twitter {{$:/core/images/twitter}} Twitter
</a> </a>

View File

@ -0,0 +1,22 @@
created: 20240508093242925
modified: 20240728134955433
tags: [[Hidden Settings]]
title: Hidden Setting: Tag Pill Drag Filter
type: text/vnd.tiddlywiki
The ''~$:/core/config/TagPillDragFilter'' defines the filter string, that is used to drag & drop a tap-pill eg: <<tag HelloThere>> from 1 wiki to an other wiki.
* By default the set contains all tiddlers that are ''tagged:'' HelloThere ''without'' the HelloThere tag-tiddler itself
** Core Default: <code><$transclude $tiddler="$:/core" $subtiddler="$:/core/config/TagPillDragFilter" output="text/plain" /></code>
* If you do want to include the tag-tiddler use the following filter:
** Tagged tiddlers only: `[all[current]tagging[]] [all[current]is[tiddler]] +[!is[draft]]`
Your $:/core/config/TagPillDragFilter
<%if [[$:/core/config/TagPillDragFilter]is[tiddler]] %>
''has been overwritten'' and contains:
<%else%>
defaults to:
<%endif%>
<code>{{$:/core/config/TagPillDragFilter}}</code>
<<.note title:"Be Aware" _:"The core default filter does //not// include shadow-tiddlers. It will //include overwritten// shadow tiddlers. See: [[is Operator]] for details about the `is[tiddler]` and other possibilities.">>

View File

@ -27,6 +27,7 @@ Keyboard shortcuts are available for common editing operations within the Text E
|Focusing sidebar search |<<.from-version 5.1.20>><kbd>ctrl-shift-F</kbd> | |Focusing sidebar search |<<.from-version 5.1.20>><kbd>ctrl-shift-F</kbd> |
|Toggling the sidebar |<<.from-version 5.1.20>><kbd>shift-alt-S</kbd> | |Toggling the sidebar |<<.from-version 5.1.20>><kbd>shift-alt-S</kbd> |
|Advanced search |<<.from-version 5.1.20>><kbd>ctrl-shift-A</kbd> | |Advanced search |<<.from-version 5.1.20>><kbd>ctrl-shift-A</kbd> |
|Open [[Control Panel|$:/ControlPanel]] |<<.from-version 5.3.6>><kbd>ctrl-alt-C</kbd> |
The current shortcuts can be inspected and customised in the "Keyboard Shortcuts" tab of the [[Control Panel|$:/ControlPanel]] <<.icon $:/core/images/options-button>>. The current shortcuts can be inspected and customised in the "Keyboard Shortcuts" tab of the [[Control Panel|$:/ControlPanel]] <<.icon $:/core/images/options-button>>.

View File

@ -1,6 +1,6 @@
caption: data caption: data
created: 20240507221902644 created: 20240507221902644
modified: 20240507221902644 modified: 20240729084028713
tags: Widgets tags: Widgets
title: DataWidget title: DataWidget
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
@ -17,6 +17,7 @@ The content of the data widget is ignored. It supports the following attributes:
|<<.attr $tiddler>> |Optional title of a tiddler to be used as a payload tiddler (optional) | |<<.attr $tiddler>> |Optional title of a tiddler to be used as a payload tiddler (optional) |
|<<.attr $filter>> |Optional filter string identifying tiddlers to be used as payload tiddlers (optional) | |<<.attr $filter>> |Optional filter string identifying tiddlers to be used as payload tiddlers (optional) |
|<<.attr $compound-tiddler>> |Optional title of a tiddler containing payload tiddlers in `text/vnd.tiddlywiki-multiple` format (see below) | |<<.attr $compound-tiddler>> |Optional title of a tiddler containing payload tiddlers in `text/vnd.tiddlywiki-multiple` format (see below) |
|<<.attr $compound-filter>> |<<.from-version "5.3.6">> Optional filter, to create a list of tiddlers that contain compound tiddlers. <<.infoBox """Tiddlers will be imported in order. Existing testcase tiddlers will be overwritten, so the currentTiddler wins""">>|
|//any attribute<br>not starting<br>with $// |Field values to be assigned to the payload tiddler(s) | |//any attribute<br>not starting<br>with $// |Field values to be assigned to the payload tiddler(s) |
The data widget is not rendered when used within the <<.wlink TestCaseWidget>> widget or the [[Innerwiki Plugin]] but for ease of testing, when used elsewhere it renders a JSON representation of the payload tiddlers. The data widget is not rendered when used within the <<.wlink TestCaseWidget>> widget or the [[Innerwiki Plugin]] but for ease of testing, when used elsewhere it renders a JSON representation of the payload tiddlers.

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Format de fitxer d'icona ICO
name: image/x-icon
group: Imatge

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO format icon file
name: image/x-icon
group: Image

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO ikon fil
name: image/x-icon
group: Billede

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/FunctionDefinition
tags: $:/tags/TextEditor/Snippet
caption: Function Definition
\function f.name(param1,param2:"default value") [<param1>!is[blank]else<param2>]
<<f.name>>

View File

@ -3,6 +3,6 @@ tags: $:/tags/TextEditor/Snippet
caption: Makro Definition caption: Makro Definition
\define makroName(param1:"standard parameter", param2) \define makroName(param1:"standard parameter", param2)
Text des Makros. Zugriff auf den <<__param1__>>. Ihr Text kommt hier her. Zugriff auf <<__param1__>>.
<<__param2__>> <<__param2__>>
\end \end

View File

@ -0,0 +1,8 @@
title: $:/language/Snippets/ProcedureDefinition
tags: $:/tags/TextEditor/Snippet
caption: Procedure Definition
\procedure procName(param1:"standard parameter", param2)
Ihr Text kommt hier her. Zugriff auf <<__param1__>>.
<<__param2__>>
\end

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/application/javascript
description: JS - JavaScript Code description: JS - JavaScript Code
name: application/javascript name: application/javascript
group: Entwickler group: Entwickler
group-sort: 2

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/application/json
description: JSON - Daten description: JSON - Daten
name: application/json name: application/json
group: Entwickler group: Entwickler
group-sort: 2

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/application/x-tiddler-dictionary
description: TiddlyWiki Datenkatalog description: TiddlyWiki Datenkatalog
name: application/x-tiddler-dictionary name: application/x-tiddler-dictionary
group: Entwickler group: Entwickler
group-sort: 2

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/image/gif
description: GIF - Bild description: GIF - Bild
name: image/gif name: image/gif
group: Bilder group: Bilder
group-sort: 1

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/image/jpeg
description: JPEG - Bild description: JPEG - Bild
name: image/jpeg name: image/jpeg
group: Bilder group: Bilder
group-sort: 1

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/image/png
description: PNG - Portable Netzwerkgrafik description: PNG - Portable Netzwerkgrafik
name: image/png name: image/png
group: Bilder group: Bilder
group-sort: 1

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/image/svg+xml
description: SVG - Strukturierte Vektor Graphik description: SVG - Strukturierte Vektor Graphik
name: image/svg+xml name: image/svg+xml
group: Bilder group: Bilder
group-sort: 1

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO - Piktogramm (Icon)
name: image/x-icon
group: Bilder

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/text/css
description: CSS - Cascading Style Sheets description: CSS - Cascading Style Sheets
name: text/css name: text/css
group: Entwickler group: Entwickler
group-sort: 2

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/text/html
description: HTML - Auszeichnungssprache description: HTML - Auszeichnungssprache
name: text/html name: text/html
group: Text group: Text
group-sort: 0

View File

@ -2,3 +2,4 @@ title: $:/language/Docs/Types/text/plain
description: TXT - Unformatierter Text description: TXT - Unformatierter Text
name: text/plain name: text/plain
group: Text group: Text
group-sort: 0

View File

@ -1,4 +1,5 @@
title: $:/language/Docs/Types/text/vnd.tiddlywiki title: $:/language/Docs/Types/text/vnd.tiddlywiki
description: TW5 - TiddlyWiki Version 5 Wikitext description: TW5 - TiddlyWiki Wikitext
name: text/vnd.tiddlywiki name: text/vnd.tiddlywiki
group: Text group: Text
group-sort: 0

View File

@ -0,0 +1,5 @@
title: $:/language/Docs/Types/text/vnd.tiddlywiki-multiple
description: Verbund Tiddler
name: text/vnd.tiddlywiki-multiple
group: Entwickler
group-sort: 2

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Αρχείο Εικονιδίου μορφής ICO
name: image/x-icon
group: Εικόνας

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Archivo de icono en formato .ICO
name: image/x-icon
group: Imagen
group-sort: 1

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: icône au format ICO
name: image/x-icon
group: Image
group-sort: 1

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO format קובץ סמליל
name: image/x-icon
group: תמונה

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO के प्रारूप आइकन फ़ाइल
name: image/x-icon
group:
छवि

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: File de formato de icones ICO
name: image/x-icon
group: Imagine

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: File icona ICO
name: image/x-icon
group: Immagine
group-sort: 1

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: アイコンファイルICO 形式)
name: image/x-icon
group: Image

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO 형식 아이콘 파일
name: image/x-icon
group: 그림

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO икона
name: image/x-icon
group: Фотографија

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO pictogram (icon)
name: image/x-icon
group: Afbeelding

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO ਫਾਰਮੈਟ ਆਈਕਾਨ ਫਾਇਲ
name: image/x-icon
group: ਚਿੱਤਰ

View File

@ -1,5 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Ikona w formacie ICO
name: image/x-icon
group: Image
group-sort: 1

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Ícone em formato de arquivo ICO
name: image/x-icon
group: Imagem

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Ícone em formato de ficheiro ICO
name: image/x-icon
group: Imagem

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO значок
name: image/x-icon
group: Изображение

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO formát pre súbor ikony
name: image/x-icon
group: Obrázok

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: Datoteka s ikono oblike ICO
name: image/x-icon
group: Slika

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO ikonfil
name: image/x-icon
group: Bild

View File

@ -80,6 +80,7 @@ NewMarkdown/Caption: 添加 Markdown 条目
NewMarkdown/Hint: 创建一个新的 Markdown 条目 NewMarkdown/Hint: 创建一个新的 Markdown 条目
NewTiddler/Caption: 添加条目 NewTiddler/Caption: 添加条目
NewTiddler/Hint: 创建一个新的条目 NewTiddler/Hint: 创建一个新的条目
OpenControlPanel/Hint: 开启控制台
OpenWindow/Caption: 开启于新窗口 OpenWindow/Caption: 开启于新窗口
OpenWindow/Hint: 在新窗口中开启条目 OpenWindow/Hint: 在新窗口中开启条目
Palette/Caption: 调色板 Palette/Caption: 调色板

View File

@ -236,3 +236,7 @@ ViewTemplateBody/Caption: 查看模板主体
ViewTemplateBody/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的主体。 ViewTemplateBody/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的主体。
ViewTemplateTitle/Caption: 查看模板标题 ViewTemplateTitle/Caption: 查看模板标题
ViewTemplateTitle/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的标题。 ViewTemplateTitle/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的标题。
ViewTemplateSubtitle/Caption: 查看模板副标题
ViewTemplateSubtitle/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的副标题。
ViewTemplateTags/Caption: 查看模板标签区
ViewTemplateTags/Hint: 默认的查看模板使用此规则级联,动态选择模板以显示条目的标签区域。

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/FunctionDefinition
tags: $:/tags/TextEditor/Snippet
caption: 函数定义
\function f.name(param1,param2:"默认值") [<param1>!is[blank]else<param2>]
<<f.name>>

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/ProcedureDefinition
tags: $:/tags/TextEditor/Snippet
caption: 程序定义
\procedure procName(param1:"默认值",param2)
这里就是您的文本了。
\end

View File

@ -1,4 +0,0 @@
title: $:/language/Docs/Types/image/x-icon
description: ICO 图标
name: image/x-icon
group: 图像

View File

@ -0,0 +1,5 @@
title: $:/language/Docs/Types/text/vnd.tiddlywiki-multiple
description: TiddlyWiki 5 复合条目
name: text/vnd.tiddlywiki-multiple
group: 开发者
group-sort: 2

View File

@ -80,6 +80,7 @@ NewMarkdown/Caption: 新增 Markdown 條目
NewMarkdown/Hint: 建立一個新的 Markdown 條目 NewMarkdown/Hint: 建立一個新的 Markdown 條目
NewTiddler/Caption: 新增條目 NewTiddler/Caption: 新增條目
NewTiddler/Hint: 建立一個新的條目 NewTiddler/Hint: 建立一個新的條目
OpenControlPanel/Hint: 開啟控制台
OpenWindow/Caption: 開啟於新視窗 OpenWindow/Caption: 開啟於新視窗
OpenWindow/Hint: 在新視窗中開啟條目 OpenWindow/Hint: 在新視窗中開啟條目
Palette/Caption: 調色盤 Palette/Caption: 調色盤

View File

@ -236,3 +236,7 @@ ViewTemplateBody/Caption: 檢視範本主體
ViewTemplateBody/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的主體。 ViewTemplateBody/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的主體。
ViewTemplateTitle/Caption: 檢視範本標題 ViewTemplateTitle/Caption: 檢視範本標題
ViewTemplateTitle/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的標題。 ViewTemplateTitle/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的標題。
ViewTemplateSubtitle/Caption: 檢視範本副標題
ViewTemplateSubtitle/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的副標題。
ViewTemplateTags/Caption: 檢視範本標籤
ViewTemplateTags/Hint: 預設的檢視範本使用此規則級聯,動態選擇範本以顯示條目的標籤。

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/FunctionDefinition
tags: $:/tags/TextEditor/Snippet
caption: 函數定義
\function f.name(param1,param2:"預設值") [<param1>!is[blank]else<param2>]
<<f.name>>

View File

@ -0,0 +1,7 @@
title: $:/language/Snippets/ProcedureDefinition
tags: $:/tags/TextEditor/Snippet
caption: 程序定義
\procedure procName(param1:"預設值",param2)
這裡就是您的文字了。
\end

Some files were not shown because too many files have changed in this diff Show More