mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-19 20:40:02 +00:00
Merge branch 'master' into colour-improvements
This commit is contained in:
commit
e1e73d2aa0
@ -24,7 +24,7 @@ var Command = function(params,commander) {
|
|||||||
|
|
||||||
Command.prototype.execute = function() {
|
Command.prototype.execute = function() {
|
||||||
// Get the build targets defined in the wiki
|
// Get the build targets defined in the wiki
|
||||||
var buildTargets = $tw.boot.wikiInfo.build;
|
var buildTargets = $tw.boot.wikiInfo && $tw.boot.wikiInfo.build;
|
||||||
if(!buildTargets) {
|
if(!buildTargets) {
|
||||||
return "No build targets defined";
|
return "No build targets defined";
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/CSS
|
title: $:/core/macros/CSS
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
<!-- Needs to stay that way for backwards compatibility. See GH issue: #8326 -->
|
<!-- Needs to stay that way for backwards compatibility. See GH issue: #8326 -->
|
||||||
\function colour(name)
|
\function colour(name)
|
||||||
@ -10,42 +10,54 @@ tags: $:/tags/Macro $:/tags/Global
|
|||||||
[function[colour],<name>]
|
[function[colour],<name>]
|
||||||
\end function
|
\end function
|
||||||
|
|
||||||
\function box-shadow(shadow)
|
\define box-shadow(shadow)
|
||||||
[[ -webkit-box-shadow: $(shadow)$;
|
``
|
||||||
-moz-box-shadow: $(shadow)$;
|
-webkit-box-shadow: $shadow$;
|
||||||
box-shadow: $(shadow)$;]substitute[]]
|
-moz-box-shadow: $shadow$;
|
||||||
|
box-shadow: $shadow$;
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\function filter(filter)
|
\define filter(filter)
|
||||||
[[ -webkit-filter: $(filter)$;
|
``
|
||||||
-moz-filter: $(filter)$;
|
-webkit-filter: $filter$;
|
||||||
filter: $(filter)$;]substitute[]]
|
-moz-filter: $filter$;
|
||||||
|
filter: $filter$;
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\function transition(transition)
|
\define transition(transition)
|
||||||
[[ -webkit-transition: $(transition)$;
|
``
|
||||||
-moz-transition: $(transition)$;
|
-webkit-transition: $transition$;
|
||||||
transition: $(transition)$;]substitute[]]
|
-moz-transition: $transition$;
|
||||||
|
transition: $transition$;
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\function transform-origin(origin)
|
\define transform-origin(origin)
|
||||||
[[ -webkit-transform-origin: $(origin)$;
|
``
|
||||||
-moz-transform-origin: $(origin)$;
|
-webkit-transform-origin: $origin$;
|
||||||
transform-origin: $(origin)$;]substitute[]]
|
-moz-transform-origin: $origin$;
|
||||||
|
transform-origin: $origin$;
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\function background-linear-gradient(gradient)
|
\define background-linear-gradient(gradient)
|
||||||
[[ background-image: linear-gradient($(gradient)$);
|
``
|
||||||
background-image: -o-linear-gradient($(gradient)$);
|
background-image: linear-gradient($gradient$);
|
||||||
background-image: -moz-linear-gradient($(gradient)$);
|
background-image: -o-linear-gradient($gradient$);
|
||||||
background-image: -webkit-linear-gradient($(gradient)$);
|
background-image: -moz-linear-gradient($gradient$);
|
||||||
background-image: -ms-linear-gradient($(gradient)$);]substitute[]]
|
background-image: -webkit-linear-gradient($gradient$);
|
||||||
|
background-image: -ms-linear-gradient($gradient$);
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\function column-count(columns)
|
\define column-count(columns)
|
||||||
[[-moz-column-count: $(columns)$;
|
``
|
||||||
-webkit-column-count: $(columns)$;
|
-moz-column-count: $columns$;
|
||||||
column-count: $(columns)$;]substitute[]]
|
-webkit-column-count: $columns$;
|
||||||
|
column-count: $columns$;
|
||||||
|
``
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\procedure datauri(title)
|
\procedure datauri(title)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/copy-to-clipboard
|
title: $:/core/macros/copy-to-clipboard
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/diff
|
title: $:/core/macros/diff
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/export
|
title: $:/core/macros/export
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
\function exportButtonFilename(baseFilename)
|
\function exportButtonFilename(baseFilename)
|
||||||
[<baseFilename>] [<extension>] +[join[]]
|
[<baseFilename>] [<extension>] +[join[]]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/show-filter-count
|
title: $:/core/macros/show-filter-count
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/tag-picker
|
title: $:/core/macros/tag-picker
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
first-search-filter: [subfilter<tagListFilter>!is[system]search:title<userInput>]
|
first-search-filter: [subfilter<tagListFilter>!is[system]search:title<userInput>]
|
||||||
second-search-filter: [subfilter<tagListFilter>is[system]search:title<userInput>]
|
second-search-filter: [subfilter<tagListFilter>is[system]search:title<userInput>]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
title: $:/core/macros/testcase
|
title: $:/core/macros/testcase
|
||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
tags: $:/tags/Macro $:/tags/Global
|
tags: $:/tags/Macro
|
||||||
title: $:/core/macros/timeline
|
title: $:/core/macros/timeline
|
||||||
|
|
||||||
<!-- Override one or both of the following two macros with a global or local macro of the same name
|
<!-- Override one or both of the following two macros with a global or local macro of the same name
|
||||||
|
9
editions/tw5.com/tiddlers/Welcome.tid
Normal file
9
editions/tw5.com/tiddlers/Welcome.tid
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
list: HelloThere [[Quick Start]] [[Find Out More]] [[TiddlyWiki on the Web]] [[Testimonials and Reviews]] GettingStarted Community
|
||||||
|
tags: TableOfContents
|
||||||
|
title: Welcome
|
||||||
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
<$transclude $tiddler="HelloThere"/>
|
||||||
|
|
||||||
|
''For more information, please select a topic:''
|
||||||
|
<div class="tc-table-of-contents"><<toc-selective-expandable "Welcome">></div>
|
@ -1,5 +1,5 @@
|
|||||||
created: 20140908114400000
|
created: 20140908114400000
|
||||||
modified: 20230803053808167
|
modified: 20241016125145988
|
||||||
tags: About
|
tags: About
|
||||||
title: History of TiddlyWiki
|
title: History of TiddlyWiki
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
created: 20150117174359000
|
created: 20150117174359000
|
||||||
modified: 20180626122309578
|
modified: 20241018094151786
|
||||||
tags: Concepts Reference
|
tags: Concepts Reference
|
||||||
title: Commands
|
title: Commands
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
A <<.def command>> is one of the following words, written with a `--` prefix and used as a command-line option under Node.js, indicating which action is desired. See [[Using TiddlyWiki on Node.js]] for details of how to use them.
|
A <<.def command>> is one of the following words, written with a `--` prefix and used as a command-line option under Node.js, indicating which action is desired. See [[Using TiddlyWiki on Node.js]] for details of how to use them.
|
||||||
|
|
||||||
<<list-links "[tag[Commands]]">>
|
''Commands''
|
||||||
|
|
||||||
|
<<list-links "[tag[Commands]] -[tag[$:/deprecated]]" class:"multi-columns">>
|
||||||
|
|
||||||
|
''Deprecated Commands''
|
||||||
|
|
||||||
|
<<list-links "[tag[Commands]] :and[tag[$:/deprecated]]" class:"multi-columns">>
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
caption: server
|
caption: server
|
||||||
created: 20131219163923630
|
created: 20131219163923630
|
||||||
modified: 20180626150505679
|
modified: 20180626150505679
|
||||||
tags: Commands
|
tags: Commands $:/deprecated
|
||||||
title: ServerCommand
|
title: ServerCommand
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
|
<<.deprecated-since "5.1.18" "ListenCommand">>.
|
||||||
|
|
||||||
''Note that the `--server` command is now deprecated in favour of the new ListenCommand''.
|
''Note that the `--server` command is now deprecated in favour of the new ListenCommand''.
|
||||||
|
|
||||||
See WebServer for details of TiddlyWiki's web server functionality.
|
See WebServer for details of TiddlyWiki's web server functionality.
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
created: 20210519110226889
|
created: 20210519110226889
|
||||||
modified: 20210519110226889
|
modified: 20241021161007731
|
||||||
tags: [[Other Resources]]
|
tags: [[Other Resources]]
|
||||||
title: "Grok TiddlyWiki" by Soren Bjornstad
|
title: "Grok TiddlyWiki" by Soren Bjornstad
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
url: https://groktiddlywiki.com/read/
|
url: https://groktiddlywiki.com/read/
|
||||||
|
|
||||||
This new textbook from Soren Bjornstad is highly recommended for learning ~TiddlyWiki. The presentation and design are also a first class example of using ~TiddlyWiki.
|
Grok ~TiddlyWiki by Soren Bjornstad is an interactive learning environment for TiddlyWiki. It bundles three complementary modes of learning into one TiddlyWiki:
|
||||||
|
|
||||||
From the site:
|
* It ''explains concepts'' using English text and code examples
|
||||||
|
* It ''assigns exercises'' that help you apply and practice what you've learned
|
||||||
> Grok ~TiddlyWiki is a textbook that helps you build a deep, lasting understanding of and proficiency with ~TiddlyWiki through a combination of detailed explanations, practical exercises, and spaced-repetition reviews of prompts called takeaways.
|
* It ''presents takeaways'', questions about key terms, concepts, or skills, for review as you continue through the book, to help you retain what you've learned over a longer period of time
|
||||||
|
|
||||||
{{!!url}}
|
{{!!url}}
|
||||||
|
|
||||||
|
@ -2,7 +2,8 @@ title: HelloThumbnail - Grok TiddlyWiki
|
|||||||
tags: HelloThumbnail
|
tags: HelloThumbnail
|
||||||
color: #D5B7EA
|
color: #D5B7EA
|
||||||
image: Grok TiddlyWiki Banner
|
image: Grok TiddlyWiki Banner
|
||||||
caption: Grok ~TiddlyWiki
|
caption: Grok ~TiddlyWiki 2.0
|
||||||
link: "Grok TiddlyWiki" by Soren Bjornstad
|
link: "Grok TiddlyWiki" by Soren Bjornstad
|
||||||
|
ribbon-text: NEW 2.0
|
||||||
|
|
||||||
Everything you need to know to get the best out of ~TiddlyWiki
|
A comprehensive interactive guide to ~TiddlyWiki, from the very basics to the advanced concepts, featuring exercises and takeaways to aid learning
|
Binary file not shown.
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 30 KiB |
@ -117,12 +117,19 @@ type: text/vnd.tiddlywiki
|
|||||||
-webkit-column-gap: 1em;
|
-webkit-column-gap: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
/* Switch to 2 columns for 780x1280 displays which is 780p */
|
||||||
|
@media (max-width: 1279px) {
|
||||||
.multi-columns {
|
.multi-columns {
|
||||||
column-count: 2;
|
column-count: 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
||||||
|
.multi-columns {
|
||||||
|
column-count: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.tc-saving-sidebar-category { margin-bottom:10px; }
|
.tc-saving-sidebar-category { margin-bottom:10px; }
|
||||||
.tc-saving-sidebar-category-title { margin-bottom:5px; font-weight:bold; }
|
.tc-saving-sidebar-category-title { margin-bottom:5px; font-weight:bold; }
|
||||||
.tc-saving-sidebar-category-item { margin-left:10px; white-space:nowrap; }
|
.tc-saving-sidebar-category-item { margin-left:10px; white-space:nowrap; }
|
||||||
|
@ -593,3 +593,5 @@ Val Packett, @valpackett, 2024/07/26
|
|||||||
@IchijikuIchigo, 2024/09/29
|
@IchijikuIchigo, 2024/09/29
|
||||||
|
|
||||||
JC John Sese Cuneta, @techmagus, 2024/10/07
|
JC John Sese Cuneta, @techmagus, 2024/10/07
|
||||||
|
|
||||||
|
@zorrox1024, 2024/10/20
|
||||||
|
Loading…
x
Reference in New Issue
Block a user