1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

TW5 content updates

This commit is contained in:
Jeremy Ruston 2012-01-03 11:10:50 +00:00
parent c9101dcb24
commit 0552da7810
6 changed files with 19 additions and 6 deletions

View File

@ -35,4 +35,19 @@ p, ul {
}
.small, aside {
font-size: 13px;
}
}
a {
font-style: italic;
text-decoration: none;
}
a:hover {
background-color: #00e;
color: #fff;
}
a.linkResolves {
font-style: normal;
font-weight: bold;
}

View File

@ -10,5 +10,3 @@ TiddlyWiki5 gains new capabilities through a [[completely rebuilt architecture|T
TiddlyWiki5 also functions as the build system for earlier versions of TiddlyWiki, replacing the elderly Cook and Ginsu tools (see https://github.com/TiddlyWiki/cooker for details). See the CommandLineInterface for details.
<<list all>>
<<echo {{2+2}}>>

View File

@ -1,5 +1,5 @@
title: TiddlerFiles
modified: JeremyRuston
modifier: JeremyRuston
Tiddlers can be stored in text files in several different formats. Files containing single tiddlers can also have an auxiliary {{{.meta}}} file formatted as a sequence of name:value pairs:
{{{

View File

@ -105,7 +105,7 @@ function() {
}
}}}
Now, the return value of this function can be cached until a tiddler in the dependency chain changes. The function itself can be cached until the tiddler itself changes.
Now, the return value of this function can be cached until a tiddler in the dependency chain changes. The function itself can be cached until the tiddler itself changes, or a macro that it uses changes.
The dependency chain is calculated when a tiddler is compiled. Every tiddler that is directly referenced is accumulated (until the point at which it is concluded that it is simpler to mark the tiddler as being dependent on any other tiddler changing).

View File

@ -2,4 +2,3 @@ title: TiddlyWikiInternals
modifier: JeremyRuston
See TiddlyWikiArchitecture for a broad overview

View File

@ -19,6 +19,7 @@ jsmodule: ../js/WikiTextProcessor.js
jsmodule: ../js/WikiTextParser.js
jsmodule: ../js/WikiTextRules.js
jsmodule: ../js/WikiTextRenderer.js
jsmodule: ../js/WikiTextCompiler.js
jsmodule: ../js/Navigators.js
jsmodule: ../js/StoryNavigator.js
jsmodule: ../js/Main.js