Repository initialisation.
This commit is contained in:
commit
e5aba6c520
16
readme.md
Normal file
16
readme.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
## Welcome
|
||||||
|
This repository contains a template folder to start a fresh [TiddlyWiki](https://tiddlywiki.com/) already containing my favorite plugins and settings.
|
||||||
|
|
||||||
|
**Bonus point:** I added a service file to enable a reboot proof server :sparkles:
|
||||||
|
|
||||||
|
## :memo: Notes
|
||||||
|
```Bash
|
||||||
|
sudo loginctl enable-linger <current user>
|
||||||
|
|
||||||
|
mkdir -p ~/.config/systemd/user
|
||||||
|
cp template.service ~/.config/systemd/user/
|
||||||
|
|
||||||
|
systemctl --user enable template
|
||||||
|
systemctl --user daemon-reload
|
||||||
|
systemctl --user start template
|
||||||
|
```
|
||||||
8
tiddlers/$__DefaultTiddlers.tid
Normal file
8
tiddlers/$__DefaultTiddlers.tid
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
created: 20210828212331705
|
||||||
|
creator: Cacahuete
|
||||||
|
modified: 20210828212331941
|
||||||
|
modifier: Cacahuete
|
||||||
|
title: $:/DefaultTiddlers
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
[list[$:/StoryList]]
|
||||||
9
tiddlers/$__Import.tid
Normal file
9
tiddlers/$__Import.tid
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
created: 20210829211658839
|
||||||
|
modified: 20210829211658839
|
||||||
|
status: complete
|
||||||
|
title: $:/Import
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
Les tiddlers suivants ont été importés :
|
||||||
|
|
||||||
|
# [[Brain-Logo.png]]
|
||||||
6
tiddlers/$__SiteSubtitle.tid
Normal file
6
tiddlers/$__SiteSubtitle.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828212305201
|
||||||
|
modified: 20210829203715303
|
||||||
|
title: $:/SiteSubtitle
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
//Private Database//
|
||||||
6
tiddlers/$__SiteTitle.tid
Normal file
6
tiddlers/$__SiteTitle.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828212212784
|
||||||
|
modified: 20210903203347947
|
||||||
|
title: $:/SiteTitle
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
DaTemplate
|
||||||
95
tiddlers/$__SplashScreen.tid
Normal file
95
tiddlers/$__SplashScreen.tid
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
created: 20210903165425057
|
||||||
|
modified: 20210903165843950
|
||||||
|
tags: $:/tags/RawMarkupWikified/TopBody
|
||||||
|
title: $:/SplashScreen
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]
|
||||||
|
\rules only filteredtranscludeinline transcludeinline macrocallinline
|
||||||
|
<div class="tc-remove-when-wiki-loaded">
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
.tc-splash-text {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
|
font-size: 16px;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
margin: 20px auto 0;
|
||||||
|
width: 200px;
|
||||||
|
text-align: center;
|
||||||
|
color: <<colour foreground>>;
|
||||||
|
fill: <<colour foreground>>;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tc-splash-text img {
|
||||||
|
width: 150px;
|
||||||
|
<<box-shadow "2px 2px 10px rgba(0, 0, 0, 0.5)">>
|
||||||
|
}
|
||||||
|
|
||||||
|
html body.tc-body {
|
||||||
|
background: <<colour page-background>>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Spinner from https://github.com/tobiasahlin/SpinKit/ by Tobias Ahlin
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2015 Tobias Ahlin
|
||||||
|
*/
|
||||||
|
|
||||||
|
.tc-splash-spinner {
|
||||||
|
margin: 20px auto 0;
|
||||||
|
width: 70px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tc-splash-spinner > div {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-radius: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||||
|
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||||
|
background-color: #f88;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tc-splash-spinner .tc-splash-bounce-1 {
|
||||||
|
-webkit-animation-delay: -0.32s;
|
||||||
|
animation-delay: -0.32s;
|
||||||
|
background-color: #8f8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tc-splash-spinner .tc-splash-bounce-2 {
|
||||||
|
-webkit-animation-delay: -0.16s;
|
||||||
|
animation-delay: -0.16s;
|
||||||
|
background-color: #88f;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes sk-bouncedelay {
|
||||||
|
0%, 80%, 100% { -webkit-transform: scale(0) }
|
||||||
|
40% { -webkit-transform: scale(1.0) }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes sk-bouncedelay {
|
||||||
|
0%, 80%, 100% {
|
||||||
|
-webkit-transform: scale(0);
|
||||||
|
transform: scale(0);
|
||||||
|
} 40% {
|
||||||
|
-webkit-transform: scale(1.0);
|
||||||
|
transform: scale(1.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="tc-splash-spinner">
|
||||||
|
<div class="tc-splash-bounce-1"></div>
|
||||||
|
<div class="tc-splash-bounce-2"></div>
|
||||||
|
<div class="tc-splash-bounce-3"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="tc-splash-text">
|
||||||
|
Chargement de {{$:/SiteTitle}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
5
tiddlers/$__StoryList.tid
Normal file
5
tiddlers/$__StoryList.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
created: 20210903203343687
|
||||||
|
list:
|
||||||
|
modified: 20210903203417275
|
||||||
|
title: $:/StoryList
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
12
tiddlers/$__ccht_font_FiraCode.txt
Normal file
12
tiddlers/$__ccht_font_FiraCode.txt
Normal file
File diff suppressed because one or more lines are too long
5
tiddlers/$__ccht_font_FiraCode.txt.meta
Normal file
5
tiddlers/$__ccht_font_FiraCode.txt.meta
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
created: 20210829141615415
|
||||||
|
modified: 20210829142530501
|
||||||
|
tags: $:/tags/Stylesheet
|
||||||
|
title: $:/ccht/font/FiraCode
|
||||||
|
type: text/plain
|
||||||
6
tiddlers/$__ccht_styles_CodeMirrorPopupFix.css
Normal file
6
tiddlers/$__ccht_styles_CodeMirrorPopupFix.css
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/* Fix CodeMirror hints appearing behind the story river
|
||||||
|
https://groups.google.com/g/tiddlywiki/c/wznyIhGJd9U */
|
||||||
|
|
||||||
|
.CodeMirror-hints {
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
5
tiddlers/$__ccht_styles_CodeMirrorPopupFix.css.meta
Normal file
5
tiddlers/$__ccht_styles_CodeMirrorPopupFix.css.meta
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
created: 20210829201344155
|
||||||
|
modified: 20210829201816487
|
||||||
|
tags: $:/tags/Stylesheet
|
||||||
|
title: $:/ccht/styles/CodeMirrorPopupFix
|
||||||
|
type: text/css
|
||||||
6
tiddlers/$__config_AnimationDuration.tid
Normal file
6
tiddlers/$__config_AnimationDuration.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828214421037
|
||||||
|
modified: 20210828214405226
|
||||||
|
title: $:/config/AnimationDuration
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
250
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829200421800
|
||||||
|
modified: 20210829200422149
|
||||||
|
title: $:/config/Navigation/openLinkFromInsideRiver
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
above
|
||||||
6
tiddlers/$__config_NewJournal_Title.tid
Normal file
6
tiddlers/$__config_NewJournal_Title.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828214435661
|
||||||
|
modified: 20210828214430795
|
||||||
|
title: $:/config/NewJournal/Title
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
YYYY-0MM-0DD DDD
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829232450834
|
||||||
|
modified: 20210829232450834
|
||||||
|
title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/timestamp
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
hide
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829234407707
|
||||||
|
modified: 20210829234430390
|
||||||
|
title: $:/config/Plugins/Disabled/$:/plugins/tiddlywiki/codemirror
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
no
|
||||||
6
tiddlers/$__config_RelinkOnRename.tid
Normal file
6
tiddlers/$__config_RelinkOnRename.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829201813270
|
||||||
|
modified: 20210829201813640
|
||||||
|
title: $:/config/RelinkOnRename
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
yes
|
||||||
6
tiddlers/$__config_TimestampDisable.tid
Normal file
6
tiddlers/$__config_TimestampDisable.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829232232814
|
||||||
|
modified: 20210829232455888
|
||||||
|
title: $:/config/TimestampDisable
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
no
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143440595
|
||||||
|
modified: 20210829143440722
|
||||||
|
title: $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-bar
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
show
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143431994
|
||||||
|
modified: 20210829143432120
|
||||||
|
title: $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/info
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
show
|
||||||
8
tiddlers/$__config_WikiParserRules_Inline_wikilink.tid
Normal file
8
tiddlers/$__config_WikiParserRules_Inline_wikilink.tid
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
created: 20210828212705322
|
||||||
|
creator: Cacahuete
|
||||||
|
modified: 20210828212705543
|
||||||
|
modifier: Cacahuete
|
||||||
|
title: $:/config/WikiParserRules/Inline/wikilink
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
disable
|
||||||
1
tiddlers/$__config_codemirror_autoCloseTags
Normal file
1
tiddlers/$__config_codemirror_autoCloseTags
Normal file
@ -0,0 +1 @@
|
|||||||
|
true
|
||||||
4
tiddlers/$__config_codemirror_autoCloseTags.meta
Normal file
4
tiddlers/$__config_codemirror_autoCloseTags.meta
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
created: 20210829083030599
|
||||||
|
modified: 20210829083232306
|
||||||
|
title: $:/config/codemirror/autoCloseTags
|
||||||
|
type: bool
|
||||||
1
tiddlers/$__config_codemirror_styleActiveLine
Normal file
1
tiddlers/$__config_codemirror_styleActiveLine
Normal file
@ -0,0 +1 @@
|
|||||||
|
true
|
||||||
4
tiddlers/$__config_codemirror_styleActiveLine.meta
Normal file
4
tiddlers/$__config_codemirror_styleActiveLine.meta
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
created: 20210829083043696
|
||||||
|
modified: 20210829083044716
|
||||||
|
title: $:/config/codemirror/styleActiveLine
|
||||||
|
type: bool
|
||||||
1
tiddlers/$__config_codemirror_theme
Normal file
1
tiddlers/$__config_codemirror_theme
Normal file
@ -0,0 +1 @@
|
|||||||
|
cmplus
|
||||||
4
tiddlers/$__config_codemirror_theme.meta
Normal file
4
tiddlers/$__config_codemirror_theme.meta
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
created: 20210828220040853
|
||||||
|
modified: 20210829233932319
|
||||||
|
title: $:/config/codemirror/theme
|
||||||
|
type: string
|
||||||
6
tiddlers/$__config_fa5_decorate-wk-extlinks.tid
Normal file
6
tiddlers/$__config_fa5_decorate-wk-extlinks.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829200618326
|
||||||
|
modified: 20210829200621915
|
||||||
|
title: $:/config/fa5/decorate-wk-extlinks
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
no
|
||||||
BIN
tiddlers/$__favicon.ico.png
Normal file
BIN
tiddlers/$__favicon.ico.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
4
tiddlers/$__favicon.ico.png.meta
Normal file
4
tiddlers/$__favicon.ico.png.meta
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
created: 20210829211702164
|
||||||
|
modified: 20210829211705951
|
||||||
|
title: $:/favicon.ico
|
||||||
|
type: image/png
|
||||||
6
tiddlers/$__language.tid
Normal file
6
tiddlers/$__language.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828214333445
|
||||||
|
modified: 20210828214316413
|
||||||
|
title: $:/language
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
$:/languages/fr-FR
|
||||||
3905
tiddlers/$__languages_fr-FR.json
Normal file
3905
tiddlers/$__languages_fr-FR.json
Normal file
File diff suppressed because it is too large
Load Diff
11
tiddlers/$__languages_fr-FR.json.meta
Normal file
11
tiddlers/$__languages_fr-FR.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
author: xcazin
|
||||||
|
core-version: >=5.0.0
|
||||||
|
created: 20210828214237847
|
||||||
|
dependents:
|
||||||
|
description: Français (France)
|
||||||
|
modified: 20210828214237847
|
||||||
|
name: fr-FR
|
||||||
|
plugin-type: language
|
||||||
|
title: $:/languages/fr-FR
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
6
tiddlers/$__palette.tid
Normal file
6
tiddlers/$__palette.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210828212952891
|
||||||
|
modified: 20210903203359879
|
||||||
|
title: $:/palette
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
$:/palettes/Blanca
|
||||||
1
tiddlers/$__plugins_TheDiveO_FontAwesome.json
Normal file
1
tiddlers/$__plugins_TheDiveO_FontAwesome.json
Normal file
File diff suppressed because one or more lines are too long
12
tiddlers/$__plugins_TheDiveO_FontAwesome.json.meta
Normal file
12
tiddlers/$__plugins_TheDiveO_FontAwesome.json.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
author: TheDiveO
|
||||||
|
core-version: >=5.1.0
|
||||||
|
created: 20140901105647564
|
||||||
|
description: FontAwesome embedded font support for TW5
|
||||||
|
fa-version: 5.15.4
|
||||||
|
list: readme license history
|
||||||
|
modified: 20210828215653314
|
||||||
|
plugin-type: plugin
|
||||||
|
source: https://github.com/TheDiveO/TW5FontAwesome
|
||||||
|
title: $:/plugins/TheDiveO/FontAwesome
|
||||||
|
type: application/json
|
||||||
|
version: 1.2.22
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
caption: Font Awesome
|
||||||
|
created: 20180328182555066
|
||||||
|
modified: 20210829200804086
|
||||||
|
tags: $:/tags/ControlPanel
|
||||||
|
title: $:/plugins/TheDiveO/FontAwesome/ui/ControlPanel/FontAwesome
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
[[Cheatsheet|https://thediveo.github.io/TW5FontAwesome/output/fontawesome.html#Cheatsheet]]
|
||||||
|
|
||||||
|
Customize the Font Awesome 5 plugin.
|
||||||
|
|
||||||
|
<$checkbox tiddler=<<fa5-cfgpath "decorate-syslinks">> field="text" checked="yes" unchecked="no" default="yes" > decorate system links: [[$:/ControlPanel]]</$checkbox>
|
||||||
|
|
||||||
|
<$checkbox tiddler=<<fa5-cfgpath "decorate-extlinks">> field="text" checked="yes" unchecked="no" default="yes" > decorate external links: [[TiddlyWiki|http://tiddlywiki.com]] [[Wikipedia|https://en.wikipedia.org/wiki/TiddlyWiki]]</$checkbox>
|
||||||
|
|
||||||
|
<$checkbox tiddler=<<fa5-cfgpath "decorate-extdoclinks">> field="text" checked="yes" unchecked="no" default="yes" > decorate external document links: https://example.org/document.pdf</$checkbox>
|
||||||
|
|
||||||
|
<$checkbox tiddler=<<fa5-cfgpath "decorate-wk-extlinks">> field="text" checked="yes" unchecked="no" default="yes" > decorate external well-known links: http://github.com http://en.wikipedia.org</$checkbox>
|
||||||
79
tiddlers/$__plugins_adithyab_cmplus.json
Normal file
79
tiddlers/$__plugins_adithyab_cmplus.json
Normal file
File diff suppressed because one or more lines are too long
10
tiddlers/$__plugins_adithyab_cmplus.json.meta
Normal file
10
tiddlers/$__plugins_adithyab_cmplus.json.meta
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
created: 20210327052508762
|
||||||
|
dependents: $:/plugins/tiddlywiki/codemirror
|
||||||
|
description: A better editor for TW5 - built on the Official CodeMirror Plugin
|
||||||
|
modified: 20210829200910344
|
||||||
|
name: CMPlus
|
||||||
|
plugin-type: plugin
|
||||||
|
tags:
|
||||||
|
title: $:/plugins/adithyab/cmplus
|
||||||
|
type: application/json
|
||||||
|
version: 0.2.2
|
||||||
1
tiddlers/$__plugins_kookma_shiraz.json
Normal file
1
tiddlers/$__plugins_kookma_shiraz.json
Normal file
File diff suppressed because one or more lines are too long
13
tiddlers/$__plugins_kookma_shiraz.json.meta
Normal file
13
tiddlers/$__plugins_kookma_shiraz.json.meta
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
author: Mohammad Rahmani
|
||||||
|
core-version: >=5.2.0
|
||||||
|
created: 20200323092449534
|
||||||
|
description: extended markups, styles, images, tables, and macros
|
||||||
|
list: readme license history
|
||||||
|
modified: 20210828215450225
|
||||||
|
name: Shiraz
|
||||||
|
plugin-type: plugin
|
||||||
|
source: https://github.com/kookma/TW-Shiraz
|
||||||
|
tags:
|
||||||
|
title: $:/plugins/kookma/shiraz
|
||||||
|
type: application/json
|
||||||
|
version: 2.4.0
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
/*Edit buttons as traffic lights*/
|
||||||
|
.tc-tiddler-controls .tc-image-delete-button {fill:#ebb;}
|
||||||
|
.tc-tiddler-controls .tc-image-cancel-button {fill:#ed9;}
|
||||||
|
.tc-tiddler-controls .tc-image-done-button {fill:#beb;}
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
created: 20191029091851469
|
||||||
|
modified: 20210829200551340
|
||||||
|
tags: $:/tags/Stylesheet
|
||||||
|
title: $:/plugins/kookma/shiraz/styles/misc/edit-buttons
|
||||||
|
type: text/css
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
/* These css rules makes TW UI buttons in beatiful color */
|
||||||
|
|
||||||
|
/*page control buttons*/
|
||||||
|
.tc-page-controls .tc-image-new-button { fill: #5EB95E; } /*New tiddler button*/
|
||||||
|
.tc-page-controls .tc-image-options-button { fill:#8058A5; } /*Open control pannel*/
|
||||||
|
|
||||||
|
/*tiddler buttons in beautiful color*/
|
||||||
|
.tc-tiddler-controls .tc-image-edit-button { fill:#F37B1D; }/*edit tiddler*/
|
||||||
|
.tc-tiddler-controls .tc-image-info-button { fill: #0e90d2; } /*Info button*/
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
created: 20191029092047069
|
||||||
|
modified: 20210828215507020
|
||||||
|
tags:
|
||||||
|
title: $:/plugins/kookma/shiraz/styles/misc/ui-buttons
|
||||||
|
type: text/css
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
caption: {{$:/plugins/kookma/shiraz/images/palette-switch}} {{$:/language/Buttons/Shiraz/Caption}}
|
||||||
|
created: 20201210171047824
|
||||||
|
dark-palette: $:/palettes/Twilight
|
||||||
|
description: Toggle between light/dark color palette
|
||||||
|
light-palette: $:/palettes/Blanca
|
||||||
|
modified: 20210829201245964
|
||||||
|
tags: $:/tags/PageControls
|
||||||
|
title: $:/plugins/kookma/shiraz/ui/Buttons/SwitchPalette
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
\whitespace trim
|
||||||
|
<$vars
|
||||||
|
darkPalette ={{$:/plugins/kookma/shiraz/ui/Buttons/SwitchPalette!!dark-palette}}
|
||||||
|
lightPalette={{$:/plugins/kookma/shiraz/ui/Buttons/SwitchPalette!!light-palette}}
|
||||||
|
>
|
||||||
|
<$button
|
||||||
|
tooltip={{$:/language/Buttons/Shiraz/Hint}}
|
||||||
|
aria-label={{$:/language/Buttons/Shiraz/Caption}}
|
||||||
|
class=<<tv-config-toolbar-class>>
|
||||||
|
>
|
||||||
|
<$list filter="[<tv-config-toolbar-icons>match[yes]]">
|
||||||
|
{{$:/plugins/kookma/shiraz/images/palette-switch}}
|
||||||
|
</$list>
|
||||||
|
|
||||||
|
<$list filter="[<tv-config-toolbar-text>match[yes]]">
|
||||||
|
<span class="tc-btn-text">switch palettes</span>
|
||||||
|
</$list>
|
||||||
|
|
||||||
|
<$reveal type="match" state="$:/palette" text=<<darkPalette>> >
|
||||||
|
<$action-setfield $tiddler="$:/palette" text=<<lightPalette>> />
|
||||||
|
</$reveal>
|
||||||
|
<$reveal type="nomatch" state="$:/palette" text=<<darkPalette>> >
|
||||||
|
<$action-setfield $tiddler="$:/palette" text=<<darkPalette>> >
|
||||||
|
</$reveal>
|
||||||
|
</$button>
|
||||||
|
</$vars>
|
||||||
30
tiddlers/$__plugins_tiddlywiki_codemirror-closebrackets.json
Normal file
30
tiddlers/$__plugins_tiddlywiki_codemirror-closebrackets.json
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"tiddlers": {
|
||||||
|
"$:/config/codemirror/autoCloseBrackets": {
|
||||||
|
"title": "$:/config/codemirror/autoCloseBrackets",
|
||||||
|
"type": "bool",
|
||||||
|
"text": "true"
|
||||||
|
},
|
||||||
|
"$:/config/codemirror/matchBrackets": {
|
||||||
|
"title": "$:/config/codemirror/matchBrackets",
|
||||||
|
"type": "bool",
|
||||||
|
"text": "true\n"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror/addon/edit/closebrackets.js": {
|
||||||
|
"text": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: https://codemirror.net/LICENSE\n!function(e){\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"../../lib/codemirror\")):\"function\"==typeof define&&define.amd?define([\"../../lib/codemirror\"],e):e(CodeMirror)}(function(C){var r={pairs:\"()[]{}''\\\"\\\"\",closeBefore:\")]}'\\\":;>\",triples:\"\",explode:\"[]{}\"},x=C.Pos;function P(e,t){return\"pairs\"==t&&\"string\"==typeof e?e:\"object\"==typeof e&&null!=e[t]?e[t]:r[t]}C.defineOption(\"autoCloseBrackets\",!1,function(e,t,r){r&&r!=C.Init&&(e.removeKeyMap(i),e.state.closeBrackets=null),t&&(n(P(t,\"pairs\")),e.state.closeBrackets=t,e.addKeyMap(i))});var i={Backspace:function(e){var t=k(e);if(!t||e.getOption(\"disableInput\"))return C.Pass;for(var r=P(t,\"pairs\"),n=e.listSelections(),i=0;i<n.length;i++){if(!n[i].empty())return C.Pass;var a=s(e,n[i].head);if(!a||r.indexOf(a)%2!=0)return C.Pass}for(i=n.length-1;0<=i;i--){var o=n[i].head;e.replaceRange(\"\",x(o.line,o.ch-1),x(o.line,o.ch+1),\"+delete\")}},Enter:function(n){var e=k(n),t=e&&P(e,\"explode\");if(!t||n.getOption(\"disableInput\"))return C.Pass;for(var i=n.listSelections(),r=0;r<i.length;r++){if(!i[r].empty())return C.Pass;var a=s(n,i[r].head);if(!a||t.indexOf(a)%2!=0)return C.Pass}n.operation(function(){var e=n.lineSeparator()||\"\\n\";n.replaceSelection(e+e,null),n.execCommand(\"goCharLeft\"),i=n.listSelections();for(var t=0;t<i.length;t++){var r=i[t].head.line;n.indentLine(r,null,!0),n.indentLine(r+1,null,!0)}})}};function n(e){for(var t=0;t<e.length;t++){var r=e.charAt(t),n=\"'\"+r+\"'\";i[n]||(i[n]=function(t){return function(e){return function(i,e){var t=k(i);if(!t||i.getOption(\"disableInput\"))return C.Pass;var r=P(t,\"pairs\"),n=r.indexOf(e);if(-1==n)return C.Pass;for(var a,o=P(t,\"closeBefore\"),s=P(t,\"triples\"),l=r.charAt(n+1)==e,c=i.listSelections(),f=n%2==0,h=0;h<c.length;h++){var u,d=c[h],p=d.head,g=i.getRange(p,x(p.line,p.ch+1));if(f&&!d.empty())u=\"surround\";else if(!l&&f||g!=e)if(l&&1<p.ch&&0<=s.indexOf(e)&&i.getRange(x(p.line,p.ch-2),p)==e+e){if(2<p.ch&&/\\bstring/.test(i.getTokenTypeAt(x(p.line,p.ch-2))))return C.Pass;u=\"addFour\"}else if(l){var v=0==p.ch?\" \":i.getRange(x(p.line,p.ch-1),p);if(C.isWordChar(g)||v==e||C.isWordChar(v))return C.Pass;u=\"both\"}else{if(!f||!(0===g.length||/\\s/.test(g)||-1<o.indexOf(g)))return C.Pass;u=\"both\"}else u=l&&function(e,t){var r=e.getTokenAt(x(t.line,t.ch+1));return/\\bstring/.test(r.type)&&r.start==t.ch&&(0==t.ch||!/\\bstring/.test(e.getTokenTypeAt(t)))}(i,p)?\"both\":0<=s.indexOf(e)&&i.getRange(p,x(p.line,p.ch+3))==e+e+e?\"skipThree\":\"skip\";if(a){if(a!=u)return C.Pass}else a=u}var m=n%2?r.charAt(n-1):e,b=n%2?e:r.charAt(n+1);i.operation(function(){if(\"skip\"==a)i.execCommand(\"goCharRight\");else if(\"skipThree\"==a)for(var e=0;e<3;e++)i.execCommand(\"goCharRight\");else if(\"surround\"==a){for(var t=i.getSelections(),e=0;e<t.length;e++)t[e]=m+t[e]+b;i.replaceSelections(t,\"around\"),t=i.listSelections().slice();for(e=0;e<t.length;e++)t[e]=(r=t[e],n=0<C.cmpPos(r.anchor,r.head),{anchor:new x(r.anchor.line,r.anchor.ch+(n?-1:1)),head:new x(r.head.line,r.head.ch+(n?1:-1))});i.setSelections(t)}else\"both\"==a?(i.replaceSelection(m+b,null),i.triggerElectric(m+b),i.execCommand(\"goCharLeft\")):\"addFour\"==a&&(i.replaceSelection(m+m+m+m,\"before\"),i.execCommand(\"goCharRight\"));var r,n})}(e,t)}}(r))}}function k(e){var t=e.state.closeBrackets;return t&&!t.override&&e.getModeAt(e.getCursor()).closeBrackets||t}function s(e,t){var r=e.getRange(x(t.line,t.ch-1),x(t.line,t.ch+1));return 2==r.length?r:null}n(r.pairs+\"`\")});\n",
|
||||||
|
"type": "application/javascript",
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror/addon/edit/closebrackets.js",
|
||||||
|
"module-type": "codemirror"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror/addon/edit/matchbrackets.js": {
|
||||||
|
"text": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: https://codemirror.net/LICENSE\n!function(t){\"object\"==typeof exports&&\"object\"==typeof module?t(require(\"../../lib/codemirror\")):\"function\"==typeof define&&define.amd?define([\"../../lib/codemirror\"],t):t(CodeMirror)}(function(i){var h=/MSIE \\d/.test(navigator.userAgent)&&(null==document.documentMode||document.documentMode<8),k=i.Pos,p={\"(\":\")>\",\")\":\"(<\",\"[\":\"]>\",\"]\":\"[<\",\"{\":\"}>\",\"}\":\"{<\",\"<\":\">>\",\">\":\"<<\"};function v(t){return t&&t.bracketRegex||/[(){}[\\]]/}function u(t,e,n){var r=t.getLineHandle(e.line),i=e.ch-1,c=n&&n.afterCursor;null==c&&(c=/(^| )cm-fat-cursor($| )/.test(t.getWrapperElement().className));var a=v(n),o=!c&&0<=i&&a.test(r.text.charAt(i))&&p[r.text.charAt(i)]||a.test(r.text.charAt(i+1))&&p[r.text.charAt(++i)];if(!o)return null;var l=\">\"==o.charAt(1)?1:-1;if(n&&n.strict&&0<l!=(i==e.ch))return null;var s=t.getTokenTypeAt(k(e.line,i+1)),h=f(t,k(e.line,i+(0<l?1:0)),l,s||null,n);return null==h?null:{from:k(e.line,i),to:h&&h.pos,match:h&&h.ch==o.charAt(0),forward:0<l}}function f(t,e,n,r,i){for(var c=i&&i.maxScanLineLength||1e4,a=i&&i.maxScanLines||1e3,o=[],l=v(i),s=0<n?Math.min(e.line+a,t.lastLine()+1):Math.max(t.firstLine()-1,e.line-a),h=e.line;h!=s;h+=n){var u=t.getLine(h);if(u){var f=0<n?0:u.length-1,m=0<n?u.length:-1;if(!(u.length>c))for(h==e.line&&(f=e.ch-(n<0?1:0));f!=m;f+=n){var g=u.charAt(f);if(l.test(g)&&(void 0===r||t.getTokenTypeAt(k(h,f+1))==r)){var d=p[g];if(d&&\">\"==d.charAt(1)==0<n)o.push(g);else{if(!o.length)return{pos:k(h,f),ch:g};o.pop()}}}}}return h-n!=(0<n?t.lastLine():t.firstLine())&&null}function e(t,e,n){for(var r=t.state.matchBrackets.maxHighlightLineLength||1e3,i=[],c=t.listSelections(),a=0;a<c.length;a++){var o,l=c[a].empty()&&u(t,c[a].head,n);l&&t.getLine(l.from.line).length<=r&&(o=l.match?\"CodeMirror-matchingbracket\":\"CodeMirror-nonmatchingbracket\",i.push(t.markText(l.from,k(l.from.line,l.from.ch+1),{className:o})),l.to&&t.getLine(l.to.line).length<=r&&i.push(t.markText(l.to,k(l.to.line,l.to.ch+1),{className:o})))}if(i.length){h&&t.state.focused&&t.focus();function s(){t.operation(function(){for(var t=0;t<i.length;t++)i[t].clear()})}if(!e)return s;setTimeout(s,800)}}function c(t){t.operation(function(){t.state.matchBrackets.currentlyHighlighted&&(t.state.matchBrackets.currentlyHighlighted(),t.state.matchBrackets.currentlyHighlighted=null),t.state.matchBrackets.currentlyHighlighted=e(t,!1,t.state.matchBrackets)})}i.defineOption(\"matchBrackets\",!1,function(t,e,n){function r(t){t.state.matchBrackets&&t.state.matchBrackets.currentlyHighlighted&&(t.state.matchBrackets.currentlyHighlighted(),t.state.matchBrackets.currentlyHighlighted=null)}n&&n!=i.Init&&(t.off(\"cursorActivity\",c),t.off(\"focus\",c),t.off(\"blur\",r),r(t)),e&&(t.state.matchBrackets=\"object\"==typeof e?e:{},t.on(\"cursorActivity\",c),t.on(\"focus\",c),t.on(\"blur\",r))}),i.defineExtension(\"matchBrackets\",function(){e(this,!0)}),i.defineExtension(\"findMatchingBracket\",function(t,e,n){return!n&&\"boolean\"!=typeof e||(e=n?(n.strict=e,n):e?{strict:!0}:null),u(this,t,e)}),i.defineExtension(\"scanForBracket\",function(t,e,n,r){return f(this,t,e,n,r)})});\n",
|
||||||
|
"type": "application/javascript",
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror/addon/edit/matchbrackets.js",
|
||||||
|
"module-type": "codemirror"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror-closebrackets/readme": {
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror-closebrackets/readme",
|
||||||
|
"text": "This plugin adds the ability to automatically insert the closing brackets when you type an opening bracket.\nAlso enables highlighting of matching brackets.\n\nIt needs the latest [[CodeMirror plugin|$:/plugins/tiddlywiki/codemirror]] to be installed\n\n"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
created: 20210828215345607
|
||||||
|
dependents:
|
||||||
|
description: Close brackets for CodeMirror
|
||||||
|
list: readme
|
||||||
|
modified: 20210828215345607
|
||||||
|
name: CodeMirror Close Brackets
|
||||||
|
parent-plugin: $:/plugins/tiddlywiki/codemirror
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/tiddlywiki/codemirror-closebrackets
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
39
tiddlers/$__plugins_tiddlywiki_codemirror-closetag.json
Normal file
39
tiddlers/$__plugins_tiddlywiki_codemirror-closetag.json
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"tiddlers": {
|
||||||
|
"$:/config/codemirror/autoCloseTags": {
|
||||||
|
"title": "$:/config/codemirror/autoCloseTags",
|
||||||
|
"type": "bool",
|
||||||
|
"text": "true\n"
|
||||||
|
},
|
||||||
|
"$:/language/codemirror/autoCloseTags/hint": {
|
||||||
|
"title": "$:/language/codemirror/autoCloseTags/hint",
|
||||||
|
"text": "Auto-close tags"
|
||||||
|
},
|
||||||
|
"$:/language/codemirror/autoCloseTags/info": {
|
||||||
|
"title": "$:/language/codemirror/autoCloseTags/info",
|
||||||
|
"text": "Whether or not to automatically close tags"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror/addon/fold/xml-fold.js": {
|
||||||
|
"text": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: https://codemirror.net/LICENSE\n!function(e){\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"../../lib/codemirror\")):\"function\"==typeof define&&define.amd?define([\"../../lib/codemirror\"],e):e(CodeMirror)}(function(e){\"use strict\";var l=e.Pos;function c(e,n){return e.line-n.line||e.ch-n.ch}var n=\"A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\",i=new RegExp(\"<(/?)([\"+n+\"][A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD-:.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*)\",\"g\");function a(e,n,t,i){this.line=n,this.ch=t,this.cm=e,this.text=e.getLine(n),this.min=i?Math.max(i.from,e.firstLine()):e.firstLine(),this.max=i?Math.min(i.to-1,e.lastLine()):e.lastLine()}function s(e,n){var t=e.cm.getTokenTypeAt(l(e.line,n));return t&&/\\btag\\b/.test(t)}function r(e){return!(e.line>=e.max)&&(e.ch=0,e.text=e.cm.getLine(++e.line),1)}function h(e){return!(e.line<=e.min)&&(e.text=e.cm.getLine(--e.line),e.ch=e.text.length,1)}function F(e){for(;;){var n=e.text.indexOf(\">\",e.ch);if(-1==n){if(r(e))continue;return}if(s(e,n+1)){var t=e.text.lastIndexOf(\"/\",n),i=-1<t&&!/\\S/.test(e.text.slice(t+1,n));return e.ch=n+1,i?\"selfClose\":\"regular\"}e.ch=n+1}}function x(e){for(;;){var n=e.ch?e.text.lastIndexOf(\"<\",e.ch-1):-1;if(-1==n){if(h(e))continue;return}if(s(e,n+1)){i.lastIndex=n,e.ch=n;var t=i.exec(e.text);if(t&&t.index==n)return t}else e.ch=n}}function g(e){for(;;){i.lastIndex=e.ch;var n=i.exec(e.text);if(!n){if(r(e))continue;return}if(s(e,n.index+1))return e.ch=n.index+n[0].length,n;e.ch=n.index+1}}function v(e,n){for(var t=[];;){var i,r=g(e),u=e.line,f=e.ch-(r?r[0].length:0);if(!r||!(i=F(e)))return;if(\"selfClose\"!=i)if(r[1]){for(var o=t.length-1;0<=o;--o)if(t[o]==r[2]){t.length=o;break}if(o<0&&(!n||n==r[2]))return{tag:r[2],from:l(u,f),to:l(e.line,e.ch)}}else t.push(r[2])}}function d(e,n){for(var t=[];;){var i=function(e){for(;;){var n=e.ch?e.text.lastIndexOf(\">\",e.ch-1):-1;if(-1==n){if(h(e))continue;return}if(s(e,n+1)){var t=e.text.lastIndexOf(\"/\",n),i=-1<t&&!/\\S/.test(e.text.slice(t+1,n));return e.ch=n+1,i?\"selfClose\":\"regular\"}e.ch=n}}(e);if(!i)return;if(\"selfClose\"!=i){var r=e.line,u=e.ch,f=x(e);if(!f)return;if(f[1])t.push(f[2]);else{for(var o=t.length-1;0<=o;--o)if(t[o]==f[2]){t.length=o;break}if(o<0&&(!n||n==f[2]))return{tag:f[2],from:l(e.line,e.ch),to:l(r,u)}}}else x(e)}}e.registerHelper(\"fold\",\"xml\",function(e,n){for(var t=new a(e,n.line,0);;){var i=g(t);if(!i||t.line!=n.line)return;var r=F(t);if(!r)return;if(!i[1]&&\"selfClose\"!=r){var u=l(t.line,t.ch),f=v(t,i[2]);return f&&0<c(f.from,u)?{from:u,to:f.from}:null}}}),e.findMatchingTag=function(e,n,t){var i=new a(e,n.line,n.ch,t);if(-1!=i.text.indexOf(\">\")||-1!=i.text.indexOf(\"<\")){var r=F(i),u=r&&l(i.line,i.ch),f=r&&x(i);if(r&&f&&!(0<c(i,n))){var o={from:l(i.line,i.ch),to:u,tag:f[2]};return\"selfClose\"==r?{open:o,close:null,at:\"open\"}:f[1]?{open:d(i,f[2]),close:o,at:\"close\"}:{open:o,close:v(i=new a(e,u.line,u.ch,t),f[2]),at:\"open\"}}}},e.findEnclosingTag=function(e,n,t,i){for(var r=new a(e,n.line,n.ch,t);;){var u=d(r,i);if(!u)break;var f=v(new a(e,n.line,n.ch,t),u.tag);if(f)return{open:u,close:f}}},e.scanForClosingTag=function(e,n,t,i){return v(new a(e,n.line,n.ch,i?{from:0,to:i}:null),t)}});\n",
|
||||||
|
"type": "application/javascript",
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror/addon/fold/xml-fold.js",
|
||||||
|
"module-type": "codemirror"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror/addon/edit/closetag.js": {
|
||||||
|
"text": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: https://codemirror.net/LICENSE\n!function(e){\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"../../lib/codemirror\"),require(\"../fold/xml-fold\")):\"function\"==typeof define&&define.amd?define([\"../../lib/codemirror\",\"../fold/xml-fold\"],e):e(CodeMirror)}(function(y){y.defineOption(\"autoCloseTags\",!1,function(e,t,n){var o;n!=y.Init&&n&&e.removeKeyMap(\"autoCloseTags\"),t&&(o={name:\"autoCloseTags\"},\"object\"==typeof t&&!1===t.whenClosing||(o[\"'/'\"]=function(e){return(t=e).getOption(\"disableInput\")?y.Pass:r(t,!0);var t}),\"object\"==typeof t&&!1===t.whenOpening||(o[\"'>'\"]=function(e){if(e.getOption(\"disableInput\"))return y.Pass;for(var t=e.listSelections(),n=[],o=e.getOption(\"autoCloseTags\"),r=0;r<t.length;r++){if(!t[r].empty())return y.Pass;var a=t[r].head,i=e.getTokenAt(a),l=y.innerMode(e.getMode(),i.state),s=l.state,d=l.mode.xmlCurrentTag&&l.mode.xmlCurrentTag(s),c=d&&d.name;if(!c)return y.Pass;var f=\"html\"==l.mode.configuration,g=\"object\"==typeof o&&o.dontCloseTags||f&&x,u=\"object\"==typeof o&&o.indentTags||f&&P;i.end>a.ch&&(c=c.slice(0,c.length-i.end+a.ch));var m=c.toLowerCase();if(!c||\"string\"==i.type&&(i.end!=a.ch||!/[\\\"\\']/.test(i.string.charAt(i.string.length-1))||1==i.string.length)||\"tag\"==i.type&&d.close||i.string.indexOf(\"/\")==a.ch-i.start-1||g&&-1<T(g,m)||j(e,l.mode.xmlCurrentContext&&l.mode.xmlCurrentContext(s)||[],c,a,!0))return y.Pass;var h,p=\"object\"==typeof o&&o.emptyTags;p&&-1<T(p,c)?n[r]={text:\"/>\",newPos:y.Pos(a.line,a.ch+2)}:(h=u&&-1<T(u,m),n[r]={indent:h,text:\">\"+(h?\"\\n\\n\":\"\")+\"</\"+c+\">\",newPos:h?y.Pos(a.line+1,0):y.Pos(a.line,a.ch+1)})}for(var C=\"object\"==typeof o&&o.dontIndentOnAutoClose,r=t.length-1;0<=r;r--){var b=n[r];e.replaceRange(b.text,t[r].head,t[r].anchor,\"+insert\");var v=e.listSelections().slice(0);v[r]={head:b.newPos,anchor:b.newPos},e.setSelections(v),!C&&b.indent&&(e.indentLine(b.newPos.line,null,!0),e.indentLine(b.newPos.line+1,null,!0))}}),e.addKeyMap(o))});var x=[\"area\",\"base\",\"br\",\"col\",\"command\",\"embed\",\"hr\",\"img\",\"input\",\"keygen\",\"link\",\"meta\",\"param\",\"source\",\"track\",\"wbr\"],P=[\"applet\",\"blockquote\",\"body\",\"button\",\"div\",\"dl\",\"fieldset\",\"form\",\"frameset\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"html\",\"iframe\",\"layer\",\"legend\",\"object\",\"ol\",\"p\",\"select\",\"table\",\"ul\"];function r(e,t){for(var n=e.listSelections(),o=[],r=t?\"/\":\"</\",a=e.getOption(\"autoCloseTags\"),i=\"object\"==typeof a&&a.dontIndentOnSlash,l=0;l<n.length;l++){if(!n[l].empty())return y.Pass;var s=n[l].head,d=e.getTokenAt(s),c=y.innerMode(e.getMode(),d.state),f=c.state;if(t&&(\"string\"==d.type||\"<\"!=d.string.charAt(0)||d.start!=s.ch-1))return y.Pass;var g,u=\"xml\"!=c.mode.name&&\"htmlmixed\"==e.getMode().name;if(u&&\"javascript\"==c.mode.name)g=r+\"script\";else if(u&&\"css\"==c.mode.name)g=r+\"style\";else{var m=c.mode.xmlCurrentContext&&c.mode.xmlCurrentContext(f);if(!m||m.length&&j(e,m,m[m.length-1],s))return y.Pass;g=r+m[m.length-1]}\">\"!=e.getLine(s.line).charAt(d.end)&&(g+=\">\"),o[l]=g}if(e.replaceSelections(o),n=e.listSelections(),!i)for(l=0;l<n.length;l++)(l==n.length-1||n[l].head.line<n[l+1].head.line)&&e.indentLine(n[l].head.line)}function T(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,o=e.length;n<o;++n)if(e[n]==t)return n;return-1}function j(e,t,n,o,r){if(y.scanForClosingTag){var a=Math.min(e.lastLine()+1,o.line+500),i=y.scanForClosingTag(e,o,null,a);if(i&&i.tag==n){for(var l=r?1:0,s=t.length-1;0<=s&&t[s]==n;s--)++l;o=i.to;for(s=1;s<l;s++){var d=y.scanForClosingTag(e,o,null,a);if(!d||d.tag!=n)return;o=d.to}return 1}}}y.commands.closeTag=function(e){return r(e)}});\n",
|
||||||
|
"type": "application/javascript",
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror/addon/edit/closetag.js",
|
||||||
|
"module-type": "codemirror"
|
||||||
|
},
|
||||||
|
"$:/plugins/tiddlywiki/codemirror-closetag/readme": {
|
||||||
|
"title": "$:/plugins/tiddlywiki/codemirror-closetag/readme",
|
||||||
|
"text": "This plugin adds the ability to ''automatically close Tags''. It needs the latest [[CodeMirror plugin|$:/plugins/tiddlywiki/codemirror]] to be installed\n\n\n"
|
||||||
|
},
|
||||||
|
"$:/core/ui/ControlPanel/Settings/codemirror/autoCloseTags": {
|
||||||
|
"title": "$:/core/ui/ControlPanel/Settings/codemirror/autoCloseTags",
|
||||||
|
"tags": "$:/tags/ControlPanel/Settings/CodeMirror",
|
||||||
|
"caption": "{{$:/language/codemirror/autoCloseTags/hint}}",
|
||||||
|
"text": "\\define lingo-base() $:/language/codemirror/autoCloseTags/\n<<lingo hint>>\n\n<$checkbox tiddler=\"$:/config/codemirror/autoCloseTags\" field=\"text\" checked=\"true\" unchecked=\"false\" default=\"true\"> <$link to=\"$:/config/codemirror/autoCloseTags\"><<lingo info>></$link> </$checkbox>\n\n"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
11
tiddlers/$__plugins_tiddlywiki_codemirror-closetag.json.meta
Normal file
11
tiddlers/$__plugins_tiddlywiki_codemirror-closetag.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
created: 20210828215345641
|
||||||
|
dependents:
|
||||||
|
description: Close tags automatically for CodeMirror
|
||||||
|
list: readme
|
||||||
|
modified: 20210828215345642
|
||||||
|
name: CodeMirror Close Tag
|
||||||
|
parent-plugin: $:/plugins/tiddlywiki/codemirror
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/tiddlywiki/codemirror-closetag
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
14
tiddlers/$__plugins_tiddlywiki_codemirror-mode-css.json
Normal file
14
tiddlers/$__plugins_tiddlywiki_codemirror-mode-css.json
Normal file
File diff suppressed because one or more lines are too long
11
tiddlers/$__plugins_tiddlywiki_codemirror-mode-css.json.meta
Normal file
11
tiddlers/$__plugins_tiddlywiki_codemirror-mode-css.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
created: 20210828215345687
|
||||||
|
dependents:
|
||||||
|
description: CSS highlighting mode for CodeMirror
|
||||||
|
list: readme
|
||||||
|
modified: 20210828215345687
|
||||||
|
name: CodeMirror Mode CSS
|
||||||
|
parent-plugin: $:/plugins/tiddlywiki/codemirror
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/tiddlywiki/codemirror-mode-css
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,11 @@
|
|||||||
|
created: 20210828215345710
|
||||||
|
dependents:
|
||||||
|
description: Search and replace for CodeMirror
|
||||||
|
list: readme
|
||||||
|
modified: 20210828215345710
|
||||||
|
name: CodeMirror Search and Replace
|
||||||
|
parent-plugin: $:/plugins/tiddlywiki/codemirror
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/tiddlywiki/codemirror-search-replace
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
376
tiddlers/$__plugins_tiddlywiki_codemirror.json
Normal file
376
tiddlers/$__plugins_tiddlywiki_codemirror.json
Normal file
File diff suppressed because one or more lines are too long
10
tiddlers/$__plugins_tiddlywiki_codemirror.json.meta
Normal file
10
tiddlers/$__plugins_tiddlywiki_codemirror.json.meta
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
created: 20210828214905845
|
||||||
|
dependents:
|
||||||
|
description: CodeMirror editor
|
||||||
|
list: readme usage keyboard license
|
||||||
|
modified: 20210828214905845
|
||||||
|
name: CodeMirror
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/tiddlywiki/codemirror
|
||||||
|
type: application/json
|
||||||
|
version: 5.1.23
|
||||||
51
tiddlers/$__plugins_wikilabs_edit-tabs.json
Normal file
51
tiddlers/$__plugins_wikilabs_edit-tabs.json
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"tiddlers": {
|
||||||
|
"$:/core/macros/tabs": {
|
||||||
|
"title": "$:/core/macros/tabs",
|
||||||
|
"tags": "$:/tags/Macro",
|
||||||
|
"text": "\\define link-action()\n<$action-sendmessage $message=\"$(message)$\" $param=<<currentTiddler>> navigateTo=<<currentTiddler>>/>\n\\end\n\\define tabs(tabsList,default,state:\"$:/state/tab\",class,template,buttonTemplate,retain,actions,explicitState)\n<$set name=\"qualifiedState\" value=<<qualify \"$state$\">>>\n<$set name=\"tabsState\" filter=\"[<__explicitState__>minlength[1]] ~[<qualifiedState>]\">\n<div class=\"tc-tab-set $class$\">\n<div class=\"tc-tab-buttons $class$\">\n<$list filter=\"$tabsList$\" variable=\"currentTab\" storyview=\"pop\"><$set name=\"save-currentTiddler\" value=<<currentTiddler>>><$tiddler tiddler=<<currentTab>>><$button set=<<tabsState>> setTo=<<currentTab>> default=\"$default$\" selectedClass=\"tc-tab-selected\" tooltip={{!!tooltip}}>\n<$tiddler tiddler=<<save-currentTiddler>>>\n<$set name=\"tv-wikilinks\" value=\"no\">\n<$transclude tiddler=\"\"\"$buttonTemplate$\"\"\" mode=\"inline\">\n<$transclude tiddler=<<currentTab>> field=\"caption\">\n<$macrocall $name=\"currentTab\" $type=\"text/plain\" $output=\"text/plain\"/>\n</$transclude>\n</$transclude>\n</$set></$tiddler>$actions$</$button><$set name=message value={{$:/plugins/wikilabs/edit-tabs/config!!link-action}}>\n<$list filter=\"[<currentTiddler>]+[!is[shadow]]\" emptyMessage=\"\"\"<$button tag=span class=\"wltc-edit-tab\" to=<<currentTiddler>> >{{$:/core/images/link}}</$button>\"\"\" ><$button tag=span class=\"wltc-edit-tab\" actions=<<link-action>> ><$reveal type=match text=\"tm-navigate\" state=\"$:/plugins/wikilabs/edit-tabs/config!!link-action\">{{$:/core/images/link}}</$reveal><$reveal type=match text=\"tm-edit-tiddler\" state=\"$:/plugins/wikilabs/edit-tabs/config!!link-action\">{{$:/core/images/edit-button}}</$reveal></$button></$list></$set></$tiddler></$set></$list>\n</div>\n<div class=\"tc-tab-divider $class$\"/>\n<div class=\"tc-tab-content $class$\">\n<$list filter=\"$tabsList$\" variable=\"currentTab\">\n\n<$reveal type=\"match\" state=<<tabsState>> text=<<currentTab>> default=\"$default$\" retain=\"\"\"$retain$\"\"\">\n\n<$transclude tiddler=\"\"\"$template$\"\"\" mode=\"block\">\n\n<$transclude tiddler=<<currentTab>> mode=\"block\"/>\n\n</$transclude>\n\n</$reveal>\n\n</$list>\n</div>\n</div>\n</$set>\n</$set>\n\\end\n"
|
||||||
|
},
|
||||||
|
"$:/core/ui/ControlPanel/Settings/edit-tabs": {
|
||||||
|
"title": "$:/core/ui/ControlPanel/Settings/edit-tabs",
|
||||||
|
"caption": "Edit-Tabs plugin",
|
||||||
|
"tags": "$:/tags/ControlPanel/Settings",
|
||||||
|
"text": "<$checkbox tiddler=\"$:/plugins/wikilabs/edit-tabs/config\" field=\"show-all-links\" checked=\"inline\" unchecked=\"none\" default=\"none\"> Show internal tab link for ''all tabs''</$checkbox>\n\n<$checkbox tiddler=\"$:/plugins/wikilabs/edit-tabs/config\" field=\"show-single-link\" checked=\"inline\" unchecked=\"none\" default=\"inline\"> Show internal tab link for ''selected tab''</$checkbox>\n\n<$checkbox tiddler=\"$:/plugins/wikilabs/edit-tabs/config\" field=\"link-action\" checked=\"tm-edit-tiddler\" unchecked=\"tm-navigate\" default=\"tm-edit-tiddler\"> Clicking a tab-link opens non-system tiddlers in ''edit mode''</$checkbox>\n\n<$checkbox tiddler=\"$:/plugins/wikilabs/edit-tabs/config\" field=\"initial-opacity\" checked=\"0\" unchecked=\"0.7\" default=\"0.7\"> Tab links are initially hidden and need mouse hover to become visible.</$checkbox> The transition time in seconds is: <$edit-text tiddler=\"$:/plugins/wikilabs/edit-tabs/config\" field=\"transition\" default=\"0.3\"/>\n\n<$button message=\"tm-delete-tiddler\" param=\"$:/plugins/wikilabs/edit-tabs/config\">\nReset to Default!"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/config": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/config",
|
||||||
|
"show-all-links": "none",
|
||||||
|
"show-single-link": "inline",
|
||||||
|
"link-action": "tm-edit-tiddler",
|
||||||
|
"initial-opacity": "0.7",
|
||||||
|
"transition": "0.3",
|
||||||
|
"text": "This tiddler is used to configure the \"Edit-tabs\" plugin behaviour. \n\nThere are 4 fields, which are used by [[$:/plugins/wikilabs/edit-tabs/styles]] enable and disable the internal links. \n\n* show-all-links: {{!!show-all-links}}\n* show-single-link: {{!!show-single-link}}\n* initial-opacity: {{!!initial-opacity}}\n* transition time in seconds: {{!!transition}}\n\nThe next field is used to define the behaviour of the link, if it's clicked.\n\n* link-action: {{!!link-action}}\n"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/styles": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/styles",
|
||||||
|
"tags": "$:/tags/Stylesheet",
|
||||||
|
"text": "<pre>\n\n.wltc-edit-tab {\n display: {{$:/plugins/wikilabs/edit-tabs/config!!show-all-links}};\n position: relative;\n top: -1em;\n left: -1.3em;\n font-size: 0.7em;\n opacity: {{$:/plugins/wikilabs/edit-tabs/config!!initial-opacity}};\n margin-right: -1em;\n}\n\n.wltc-edit-tab svg{\n width: 1.4em;\n height: 1.4em;\n}\n\n.wltc-edit-tab:hover {\n opacity: 1;\n transition:opacity {{$:/plugins/wikilabs/edit-tabs/config!!transition}}s;\n transition-timing-function: cubic-bezier(1,-0.06,.39,.89);\n}\n\n.tc-tab-selected + .wltc-edit-tab {\n display: {{$:/plugins/wikilabs/edit-tabs/config!!show-single-link}};\n}\n\n.tc-vertical > .wltc-edit-tab {\n top: -1.9em;\n left: 0;\n height: 0;\n float: right;\n}\n\n.tc-search-results .wltc-edit-tab a {\n display: contents;\n padding: 0;\n}\n\n</pre>"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/fix-sendmessage.js": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/fix-sendmessage.js",
|
||||||
|
"text": "/*\\\ntitle: $:/plugins/wikilabs/edit-tabs/fix-sendmessage.js\ntype: application/javascript\nmodule-type: startup\n\nA startup module to fix the <$action-sendmessage widget parameter passing problem\n\neg:\n\nNavigatorWidget.prototype.handleNavigateEvent = function(event) {\n\tevent = $tw.hooks.invokeHook(\"th-navigating\",event);\n\tif(event.navigateTo) { <--- expects event.navigateTo, but sendmessage widget gives event.params.navigateTo\n\t\tthis.addToStory(event.navigateTo,event.navigateFromTitle);\n\t\tif(!event.navigateSuppressNavigation) {\n\t\t\tthis.addToHistory(event.navigateTo,event.navigateFromClientRect);\n\t\t}\n\t}\n\treturn false;\n};\n\n\nThis hook temporarily fixes the problem.\n\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"fixsendmessage\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\nexports.startup = function() {\n\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\tvar suppressNavigation = (event.event) ? event.event.metaKey || event.event.ctrlKey || (event.event.button === 1) : false;\n\n\t\tif (!event.navigateTo && event.paramObject && event.paramObject.navigateTo) {\n\t\t\tevent.navigateTo = event.paramObject.navigateTo;\n\t\t\tevent.navigateSuppressNavigation = event.navigateSuppressNavigation || suppressNavigation;\n\t\t}\n\t\treturn event;\n\t});\n};\n\n})();\n",
|
||||||
|
"type": "application/javascript",
|
||||||
|
"module-type": "startup"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/history": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/history",
|
||||||
|
"text": "V 2.0.1 - 2020-12-25\n\n* update license\n\nV 2.0.0 - 2020.12.05\n\n* Update $:/core/macros/tabs to V5.1.23\n\nV 1.1.1 - 2020.01.19\n\n* Update license link/text\n\nV 1.1.0 - 2019-08\n\n* Change minimum core version to `>=5.1.15`\n\nV1.0.0 - 2019-07-14\n\n* Add new option: Initially hide link\n** Transition time from hidden to visible is adjustable\n* Added: \"Reset to Default\" button\n* Show Edit Button if edit mode is active\n\nThis version has feature parity with link-to-tabs plugin from same date!\n\nV0.2.0 - 2019-01-17\n\n* remove the experimental flag\n\nV0.2.0-experimental - 2018-02-13\n\n* initial release\n* forked from link-to-tabs V0.1.1\n* add new \"auto-edit\" configuration for tab-links\n* auto-edit is only active for non-shadow tiddlers `[!is[shadow]]`\n* contains a temporary fix for a <$action-sendmessage widget parameter passing problem\n** This fix should be deactivated in the future.\n\nalso see: https://wikilabs.github.io/editions/edit-tabs/#History\nalso see: https://wikilabs.github.io/editions/link-to-tabs/#History\n"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/icon": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/icon",
|
||||||
|
"text": "<svg width=\"22pt\" height=\"22pt\" version=\"1.1\" viewBox=\"0 0 128 128\">\n<path transform=\"scale(4.36)\" d=\"m18.6 0-14.5 7.33-3.93 14.7 10.5 7.33 14.5-7.33 3.93-14.7-10.5-7.33zm3.12 6.05c0.338-2.48e-4 0.677 0.129 0.936 0.387 0.515 0.515 0.515 1.35-0.00195 1.87l-0.324 0.324-1.87-1.87 0.326-0.326c0.258-0.258 0.595-0.386 0.934-0.387zm-2.19 1.65 1.87 1.87-0.936 0.934-1.87-1.87 0.934-0.934zm-1.87 1.87 1.87 1.87-9.95 9.95c-0.0185 0.0184-0.0371 0.0373-0.0566 0.0547-0.0142 0.0164-0.0292 0.031-0.0449 0.0469-0.927 0.927-3.64 1.77-3.64 1.77s0.82-2.69 1.77-3.63c0.016-0.0159 0.0323-0.0325 0.0488-0.0469 0.0172-0.0193 0.0364-0.0383 0.0547-0.0566l9.95-9.95z\" style=\"stroke-width:.229\"/>\n</svg>"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/license": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/license",
|
||||||
|
"text": "[[Edit-Tabs-Macro|https://wikilabs.github.io/#edit-tabs]] (c) Mario Pietsch - 2018-2021\n\nhttps://opensource.org/licenses/BSD-3-Clause\n"
|
||||||
|
},
|
||||||
|
"$:/plugins/wikilabs/edit-tabs/readme": {
|
||||||
|
"title": "$:/plugins/wikilabs/edit-tabs/readme",
|
||||||
|
"text": "This plugin adds a little link icon to every tab.\n\n''Important:'' This plugin changes the core tabs macro.\n\n! Link-to-Tabs Settings\n\n{{$:/core/ui/ControlPanel/Settings/edit-tabs}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
tiddlers/$__plugins_wikilabs_edit-tabs.json.meta
Normal file
12
tiddlers/$__plugins_wikilabs_edit-tabs.json.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
author: Mario Pietsch
|
||||||
|
core-version: >=5.1.15
|
||||||
|
created: 20210828215838500
|
||||||
|
dependents:
|
||||||
|
description: Internal link- or edit-buttons are added to tabs if selected
|
||||||
|
list: readme history license
|
||||||
|
modified: 20210828215838500
|
||||||
|
name: Edit Tabs
|
||||||
|
plugin-type: plugin
|
||||||
|
title: $:/plugins/wikilabs/edit-tabs
|
||||||
|
type: application/json
|
||||||
|
version: 2.0.1
|
||||||
22
tiddlers/$__plugins_wikilabs_edit-tabs_config.tid
Normal file
22
tiddlers/$__plugins_wikilabs_edit-tabs_config.tid
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
created: 20210829200454918
|
||||||
|
initial-opacity: 0
|
||||||
|
link-action: tm-edit-tiddler
|
||||||
|
modified: 20210829200457611
|
||||||
|
show-all-links: inline
|
||||||
|
show-single-link: inline
|
||||||
|
title: $:/plugins/wikilabs/edit-tabs/config
|
||||||
|
transition: 0.3
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
This tiddler is used to configure the "Edit-tabs" plugin behaviour.
|
||||||
|
|
||||||
|
There are 4 fields, which are used by [[$:/plugins/wikilabs/edit-tabs/styles]] enable and disable the internal links.
|
||||||
|
|
||||||
|
* show-all-links: {{!!show-all-links}}
|
||||||
|
* show-single-link: {{!!show-single-link}}
|
||||||
|
* initial-opacity: {{!!initial-opacity}}
|
||||||
|
* transition time in seconds: {{!!transition}}
|
||||||
|
|
||||||
|
The next field is used to define the behaviour of the link, if it's clicked.
|
||||||
|
|
||||||
|
* link-action: {{!!link-action}}
|
||||||
5
tiddlers/$__tags_ViewToolbar.tid
Normal file
5
tiddlers/$__tags_ViewToolbar.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
created: 20210903194914170
|
||||||
|
list: $:/core/ui/Buttons/more-tiddler-actions $:/core/ui/Buttons/info $:/core/ui/Buttons/close-others $:/core/ui/Buttons/clone $:/core/ui/Buttons/open-window $:/core/ui/Buttons/fold-others $:/core/ui/Buttons/delete $:/core/ui/Buttons/new-here $:/core/ui/Buttons/new-journal-here $:/core/ui/Buttons/export-tiddler $:/core/ui/Buttons/edit $:/core/ui/Buttons/permalink $:/core/ui/Buttons/permaview $:/core/ui/Buttons/close $:/core/ui/Buttons/fold $:/core/ui/Buttons/fold-bar
|
||||||
|
modified: 20210903194952991
|
||||||
|
title: $:/tags/ViewToolbar
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143833090
|
||||||
|
modified: 20210829143834682
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
1000px
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143837903
|
||||||
|
modified: 20210829143839571
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/metrics/sidebarwidth
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
400px
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143820799
|
||||||
|
modified: 20210829143820898
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/metrics/storyright
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
870px
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143827317
|
||||||
|
modified: 20210829143827445
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
786px
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143743726
|
||||||
|
modified: 20210829143743791
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/options/sidebarlayout
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
fluid-fixed
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143736761
|
||||||
|
modified: 20210829143736827
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/options/stickytitles
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
yes
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829143757743
|
||||||
|
modified: 20210829143759124
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/settings/codefontfamily
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
"Fira Code Regular","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
created: 20210829141949177
|
||||||
|
modified: 20210829142114266
|
||||||
|
title: $:/themes/tiddlywiki/vanilla/settings/editorfontfamily
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
"Fira Code Regular"
|
||||||
39
tiddlywiki.info
Normal file
39
tiddlywiki.info
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"description": "Basic client-server edition",
|
||||||
|
"plugins": [
|
||||||
|
"tiddlywiki/tiddlyweb",
|
||||||
|
"tiddlywiki/filesystem",
|
||||||
|
"tiddlywiki/highlight"
|
||||||
|
],
|
||||||
|
"themes": [
|
||||||
|
"tiddlywiki/vanilla",
|
||||||
|
"tiddlywiki/snowwhite"
|
||||||
|
],
|
||||||
|
"build": {
|
||||||
|
"index": [
|
||||||
|
"--rendertiddler",
|
||||||
|
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
|
||||||
|
"index.html",
|
||||||
|
"text/plain"
|
||||||
|
],
|
||||||
|
"static": [
|
||||||
|
"--rendertiddler",
|
||||||
|
"$:/core/templates/static.template.html",
|
||||||
|
"static.html",
|
||||||
|
"text/plain",
|
||||||
|
"--rendertiddler",
|
||||||
|
"$:/core/templates/alltiddlers.template.html",
|
||||||
|
"alltiddlers.html",
|
||||||
|
"text/plain",
|
||||||
|
"--rendertiddlers",
|
||||||
|
"[!is[system]]",
|
||||||
|
"$:/core/templates/static.tiddler.html",
|
||||||
|
"static",
|
||||||
|
"text/plain",
|
||||||
|
"--rendertiddler",
|
||||||
|
"$:/core/templates/static.template.css",
|
||||||
|
"static/static.css",
|
||||||
|
"text/plain"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user