diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/Basic_Formatting.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Basic_Formatting.tid new file mode 100644 index 0000000000..abe9e76fd5 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Basic_Formatting.tid @@ -0,0 +1,18 @@ +title: Basic Formatting +modifier: psd +created: 20110211142531 +modified: 201102151515 +tags: formatting +creator: matt + +|Style|Formatting|h +|''bold''|{{{''bold''}}} - two single-quotes, not a double-quote| +|//italics//|{{{//italics//}}}| +|''//bold italics//''|{{{''//bold italics//''}}}| +|__underline__|{{{__underline__}}}| +|--strikethrough--|{{{--Strikethrough--}}}| +|super^^script^^|{{{super^^script^^}}}| +|sub~~script~~|{{{sub~~script~~}}}| +|@@Highlight@@|{{{@@Highlight@@}}}| +|{{{plain text}}}|{{{ {{{PlainText No ''Formatting''}}} }}}| +|/%this text will be invisible%/hidden text|{{{/%this text will be invisible%/}}}| diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/CSS_Formatting.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/CSS_Formatting.tid new file mode 100644 index 0000000000..26731b8c14 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/CSS_Formatting.tid @@ -0,0 +1,31 @@ +title: CSS Formatting +modifier: jermolene +created: 20110211142635 +modified: 20111103182214 +tags: formatting +creator: matt + +!!Inline Styles +Apply CSS properties inline: +{{{ +@@color:#4bbbbb;Some random text@@ +}}} +Displays as: +@@color:#4bbbbb;Some random text@@ +!!CSS classes +CSS classes can be applied to text blocks or runs. This form creates an HTML {{{}}}: +{{{ +{{customClassName{Some random text}}} +}}} +Displays as: +{{customClassName{Some random text}}} +This form generates an HTML {{{
}}}: +{{{ + {{customClassName{ + Some random text + }}} +}}} +Displays as: +{{customClassName{ +Some random text +}}} diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/CamelCase.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/CamelCase.tid new file mode 100644 index 0000000000..c2c6d12b2b --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/CamelCase.tid @@ -0,0 +1,6 @@ +title: CamelCase +modifier: matt +created: 20110221141430 +creator: matt + +CamelCase (camel case or camel-case)—also known as medial capitals—is the practice of writing compound words or phrases in which the elements are joined without spaces. diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/Code_Formatting.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Code_Formatting.tid new file mode 100644 index 0000000000..97c4d076e4 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Code_Formatting.tid @@ -0,0 +1,17 @@ +title: Code Formatting +modifier: colmbritton +created: 20110211142613 +modified: 20110216114812 +tags: formatting +creator: matt + +Text such as computer code that should be displayed without wiki processing and preserving line breaks: +{{{ +Some plain text including WikiLinks +}}} +Displays as: +{{{ +Some plain text including WikiLinks +}}} +!See Also +[[Suppressing Formatting]] diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/ColorPalette_shadows.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/ColorPalette_shadows.tid new file mode 100644 index 0000000000..61609e30e8 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/ColorPalette_shadows.tid @@ -0,0 +1,27 @@ +title: ColorPalette shadows +modifier: matt +created: 20110211143633 +modified: 201102151510 +tags: shadow +creator: matt + +This tiddler determines the colour scheme used within the TiddlyWiki. When a new space is created the random color palette macro determines the default, however these can be overwritten directly in the ColorPalette tiddler. + +{{{ +Background: #e0e3f5 +Foreground: #090d1e +PrimaryPale: #b9c2e8 +PrimaryLight: #7485d2 +PrimaryMid: #384fb1 +PrimaryDark: #0c1126 +SecondaryPale: #cbe8b9 +SecondaryLight: #98d274 +SecondaryMid: #67b138 +SecondaryDark: #16260c +TertiaryPale: #e8bab9 +TertiaryLight: #d27574 +TertiaryMid: #b13a38 +TertiaryDark: #260c0c +Error: #f88 +ColorPaletteParameters: HSL([229|48], [0.5146822107288709],[0.1|0.8208696653333263]) +}}} diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/Date_Formats.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Date_Formats.tid new file mode 100644 index 0000000000..ab1143d9b3 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/Date_Formats.tid @@ -0,0 +1,36 @@ +title: Date Formats +modifier: matt +created: 20110216113958 +modified: 20110221141513 +creator: colmbritton + +Several [[Macros|MacrosContent]] including the [[Today Macro|today macro]] take a [[Date Format String|Date Formats]] as an optional argument. This string can be a combination of ordinary text, with some special characters that get substituted by parts of the date: +* {{{DDD}}} - day of week in full (eg, "Monday") +* {{{ddd}}} - short day of week (eg, "Mon") +* {{{DD}}} - day of month +* {{{0DD}}} - adds a leading zero +* {{{DDth}}} - adds a suffix +* {{{WW}}} - ~ISO-8601 week number of year +* {{{0WW}}} - adds a leading zero +* {{{MMM}}} - month in full (eg, "July") +* {{{mmm}}} - short month (eg, "Jul") +* {{{MM}}} - month number +* {{{0MM}}} - adds leading zero +* {{{YYYY}}} - full year +* {{{YY}}} - two digit year +* {{{wYYYY}}} - full year with respect to week number +* {{{wYY}}} two digit year with respect to week number +* {{{hh}}} - hours +* {{{0hh}}} - adds a leading zero +* {{{hh12}}} - hours in 12 hour clock +* {{{0hh12}}} - hours in 12 hour clock with leading zero +* {{{mm}}} - minutes +* {{{0mm}}} - minutes with leading zero +* {{{ss}}} - seconds +* {{{0ss}}} - seconds with leading zero +* {{{am}}} or {{{pm}}} - lower case AM/PM indicator +* {{{AM}}} or {{{PM}}} - upper case AM/PM indicator + +!!!!Examples +{{{DDth MMM YYYY}}} - 16th February 2011 +{{{DDth mmm hh:mm:ss}}} - 16th Feb 2011 11:38:42 diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers.tid new file mode 100644 index 0000000000..445bc11df7 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers.tid @@ -0,0 +1,7 @@ +title: DefaultTiddlers +modifier: colmbritton +created: 20110211154017 +modified: 20110211163338 +creator: colmbritton + +[[Reference]] diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers_shadows.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers_shadows.tid new file mode 100644 index 0000000000..d2350bb928 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/DefaultTiddlers_shadows.tid @@ -0,0 +1,19 @@ +title: DefaultTiddlers shadows +modifier: matt +created: 20110211143659 +modified: 201102151510 +tags: shadow +creator: matt + +This tiddler contains a list of tiddlers that are opened automatically when you load the tiddlywiki. +The default is: +{{{ +[[GettingStarted]] +}}} + +An example could be: +{{{ +[[HelloThere]] +[[Reference]] +[[Features]] +}}} diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/EditTemplate_shadows.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/EditTemplate_shadows.tid new file mode 100644 index 0000000000..7cce5e6ce4 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/EditTemplate_shadows.tid @@ -0,0 +1,34 @@ +title: EditTemplate shadows +modifier: matt +created: 20110211143734 +modified: 201102151511 +tags: shadow +creator: matt + +This tiddler contains the markup used to display tiddlers in edit mode. It is designed to make it easy to change the layout/structure of the tiddler in edit mode. +By default it contains the following markup: +{{{ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
tags
+
+
+ + +
+
+}}} diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/GettingStarted_shadows.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/GettingStarted_shadows.tid new file mode 100644 index 0000000000..03043d4648 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/GettingStarted_shadows.tid @@ -0,0 +1,13 @@ +title: GettingStarted shadows +modifier: matt +created: 20110211143758 +modified: 201102151537 +tags: shadow +creator: matt + +The GettingStarted shadow tiddler contains information about how to start using your TiddlyWiki. +You can change it to include anything you desire. + +For example a lot of tiddlywiki authors use it to explain what their wiki is about. This is a particularly useful approach because by default the GettingStarted tiddler is in the [[DefaultTiddlers|Shadow - DefaultTiddlers]] tiddler, thus opens automatically upon loading of the page. + +By default it is also part of the [[MainMenu|Shadow - MainMenu]] tiddler so is included on the left side of the menu bar above. diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Entities_Formatting.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Entities_Formatting.tid new file mode 100644 index 0000000000..020e0f0f3d --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Entities_Formatting.tid @@ -0,0 +1,18 @@ +title: HTML Entities Formatting +modifier: psd +created: 20110211142850 +modified: 201102151515 +tags: formatting +creator: matt + +HTML entities can be used to easily type special characters: +{{{ +Here is a quote symbol: " +And a pound sign: £ +}}} +Displays as: +Here is a quote symbol: " +And a pound sign: £ +!Notes +For a full list of available HTML references see: +http://www.w3schools.com/tags/ref_entities.asp diff --git a/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Formatting.tid b/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Formatting.tid new file mode 100644 index 0000000000..e067eb13b8 --- /dev/null +++ b/test/data/tiddlywiki.com/tiddlywiki-com-ref/HTML_Formatting.tid @@ -0,0 +1,20 @@ +title: HTML Formatting +modifier: psd +created: 20110211142909 +modified: 20110215151851 +tags: formatting +creator: matt + +Raw HTML text can be included in a tiddler: +{{{ + +This is some HTML formatting + +}}} + +This is some HTML formatting + +!Notes +* only static HTML elements that are valid within a {{{
}}} work correctly +* {{{document.write}}} cannot be used to generate dynamic content +* External {{{