mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 10:46:57 +00:00
Add dir="auto" to all <p> tags
And fix 182 test files!
This commit is contained in:
parent
29c7d1ce26
commit
7fe9a31917
@ -260,7 +260,7 @@ WikiParser.prototype.parseBlock = function(terminatorRegExpString) {
|
||||
var start = this.pos;
|
||||
var children = this.parseInlineRun(terminatorRegExp);
|
||||
var end = this.pos;
|
||||
return [{type: "element", tag: "p", children: children, start: start, end: end }];
|
||||
return [{type: "element", tag: "p", attributes: {dir: {type: "string", value: "auto"}}, children: children, start: start, end: end }];
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -270,6 +270,9 @@ TranscludeWidget.prototype.parseTransclusionTarget = function(parseAsInline) {
|
||||
parser.tree[0] = {
|
||||
type: "element",
|
||||
tag: "p",
|
||||
attributes: {
|
||||
dir: {type: "string", value: "auto"}
|
||||
},
|
||||
children: [{
|
||||
type: "text",
|
||||
text: this.transcludeFunctionResult
|
||||
|
@ -19,8 +19,8 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
This is a Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a , I think.
|
||||
</p>
|
@ -19,8 +19,8 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
This is a Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Crocodile, I think.
|
||||
</p>
|
@ -23,10 +23,10 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
This is a Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Antelope, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Crocodile, I think.
|
||||
</p>
|
@ -19,8 +19,8 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
This is a Elephant
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a
|
||||
</p>
|
@ -9,4 +9,4 @@ This is a <%if 1 2 3 4 5 6 %>Elephant<%endif%>, I think.
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>This is a Elephant, I think.</p>
|
||||
<p dir="auto">This is a Elephant, I think.</p>
|
@ -47,14 +47,14 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
This is a Indian Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a African Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Unknown Elephant, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Antelope, I think.
|
||||
</p><p>
|
||||
</p><p dir="auto">
|
||||
This is a Crocodile, I think.
|
||||
</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>246-492</p>
|
||||
<p dir="auto">246-492</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>492-984|492-984</p>
|
||||
<p dir="auto">492-984|492-984</p>
|
@ -18,4 +18,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>246|246</p>
|
||||
<p dir="auto">246|246</p>
|
@ -24,4 +24,4 @@ This is a payload tiddler from a compound tiddler
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div class="tc-test-case "><div>[{"title":"Payload Tiddler","tags":"Alpha Beta Gamma","text":"This is a payload tiddler from a compound tiddler","custom":"Alpha"}]</div></div></p>
|
||||
<p dir="auto"><div class="tc-test-case "><div>[{"title":"Payload Tiddler","tags":"Alpha Beta Gamma","text":"This is a payload tiddler from a compound tiddler","custom":"Alpha"}]</div></div></p>
|
@ -20,4 +20,4 @@ This is the tiddler HelloThere
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div class="tc-test-case "><div>[{"title":"RealTitle","tags":"Definitions","text":"This is the tiddler HelloThere"}]</div></div></p>
|
||||
<p dir="auto"><div class="tc-test-case "><div>[{"title":"RealTitle","tags":"Definitions","text":"This is the tiddler HelloThere"}]</div></div></p>
|
@ -25,4 +25,4 @@ This is the tiddler AnotherDefinition
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div class="tc-test-case "><div>[{"title":"AnotherDefinition","tags":"Definitions","text":"This is the tiddler AnotherDefinition","custom":"Alpha"},{"title":"HelloThere","tags":"Definitions","text":"This is the tiddler HelloThere","custom":"Alpha"}]</div></div></p>
|
||||
<p dir="auto"><div class="tc-test-case "><div>[{"title":"AnotherDefinition","tags":"Definitions","text":"This is the tiddler AnotherDefinition","custom":"Alpha"},{"title":"HelloThere","tags":"Definitions","text":"This is the tiddler HelloThere","custom":"Alpha"}]</div></div></p>
|
@ -20,4 +20,4 @@ This is the tiddler HelloThere
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div class="tc-test-case "><div>[{"title":"HelloThere","tags":"Definitions","text":"This is the tiddler HelloThere","custom":"Alpha"}]</div></div></p>
|
||||
<p dir="auto"><div class="tc-test-case "><div>[{"title":"HelloThere","tags":"Definitions","text":"This is the tiddler HelloThere","custom":"Alpha"}]</div></div></p>
|
@ -15,4 +15,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div class="tc-test-case my-class an-other-class"><div>[{"title":"Epsilon","text":"Theta"}]</div></div></p>
|
||||
<p dir="auto"><div class="tc-test-case my-class an-other-class"><div>[{"title":"Epsilon","text":"Theta"}]</div></div></p>
|
@ -13,7 +13,7 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>(SmVyZW15MTIzNA==)
|
||||
<p dir="auto">(SmVyZW15MTIzNA==)
|
||||
()
|
||||
(Jeremy1234)
|
||||
()</p>
|
@ -18,7 +18,7 @@ the hat saw in every category
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>@@ -1,22 +1,29 @@
|
||||
<p dir="auto">@@ -1,22 +1,29 @@
|
||||
the
|
||||
-c
|
||||
+h
|
||||
|
@ -12,4 +12,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>/**-- Excessive filter recursion --**/</p>
|
||||
<p dir="auto">/**-- Excessive filter recursion --**/</p>
|
@ -7,21 +7,21 @@ title: Output
|
||||
|
||||
\whitespace trim
|
||||
<$list variable="var" filter="[[existing variable should have output]] :filter[[..currentTiddler]is[variable]]">
|
||||
<p><<var>></p>
|
||||
<p dir="auto"><<var>></p>
|
||||
</$list>
|
||||
|
||||
<$list variable="var" filter="[[non-existing variable should not have output]] :filter[[nonExistingVariable]is[variable]]">
|
||||
<p><<var>></p>
|
||||
<p dir="auto"><<var>></p>
|
||||
</$list>
|
||||
|
||||
<$list variable="var" filter="[[existing variable negated should not have output]] :filter[[..currentTiddler]!is[variable]]">
|
||||
<p><<var>></p>
|
||||
<p dir="auto"><<var>></p>
|
||||
</$list>
|
||||
|
||||
<$list variable="var" filter="[[non-existing variable negated should have output]] :filter[[nonExistingVariable]!is[variable]]">
|
||||
<p><<var>></p>
|
||||
<p dir="auto"><<var>></p>
|
||||
</$list>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><p>existing variable should have output</p></p><p></p><p></p><p><p>non-existing variable negated should have output</p></p>
|
||||
<p dir="auto"><p dir="auto">existing variable should have output</p></p><p dir="auto"></p><p dir="auto"></p><p dir="auto"><p dir="auto">non-existing variable negated should have output</p></p>
|
@ -31,7 +31,7 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>()
|
||||
<p dir="auto">()
|
||||
(Hello There, welcome to $TiddlyWiki$)
|
||||
(Welcome to TiddlyWiki)
|
||||
(Welcome to TiddlyWiki today)
|
||||
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>16|32</p>
|
||||
<p dir="auto">16|32</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Idiosyncrasy Caption Field,Idiosyncrasy Caption Field</p>
|
||||
<p dir="auto">Idiosyncrasy Caption Field,Idiosyncrasy Caption Field</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>64|192</p>
|
||||
<p dir="auto">64|192</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>64|192</p>
|
||||
<p dir="auto">64|192</p>
|
@ -7,7 +7,7 @@ title: Output
|
||||
|
||||
\whitespace trim
|
||||
\function .buffalo(p)
|
||||
[.buffalo<p>]
|
||||
[.buffalo<p dir="auto">]
|
||||
\end
|
||||
|
||||
<$text text=<<.buffalo 8>>/>
|
||||
|
@ -19,4 +19,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
hello world<p>hello world</p>hello <p>hello </p>
|
||||
hello world<p dir="auto">hello world</p>hello <p dir="auto">hello </p>
|
@ -33,4 +33,4 @@ $param$ with a ''buffalo''
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Going to lunch with a ''buffalo''</p><p>Going to breakfastwith a<strong>buffalo</strong></p><p>Going to dinner with a <strong>buffalo</strong></p>Going to lunch with a ''buffalo''Going to breakfastwith abuffaloGoing to dinner with a buffalo
|
||||
<p dir="auto">Going to lunch with a ''buffalo''</p><p dir="auto">Going to breakfastwith a<strong>buffalo</strong></p><p dir="auto">Going to dinner with a <strong>buffalo</strong></p>Going to lunch with a ''buffalo''Going to breakfastwith abuffaloGoing to dinner with a buffalo
|
@ -27,4 +27,4 @@ Block forced inline
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<div class=" tc-reveal"><p>Block</p></div><div class=" tc-reveal"><p>Block forced block</p></div><span class=" tc-reveal"><p>Block forced inline</p></span><p><span class=" tc-reveal">Inline</span><div class=" tc-reveal">Inline forced block</div><span class=" tc-reveal">Inline forced inline</span></p>
|
||||
<div class=" tc-reveal"><p dir="auto">Block</p></div><div class=" tc-reveal"><p dir="auto">Block forced block</p></div><span class=" tc-reveal"><p dir="auto">Block forced inline</p></span><p dir="auto"><span class=" tc-reveal">Inline</span><div class=" tc-reveal">Inline forced block</div><span class=" tc-reveal">Inline forced inline</span></p>
|
@ -11,4 +11,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>(Kitten)(Kitten)</p>
|
||||
<p dir="auto">(Kitten)(Kitten)</p>
|
@ -11,4 +11,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Mouse</p><p>Mouse</p>
|
||||
<p dir="auto">Mouse</p><p dir="auto">Mouse</p>
|
@ -11,4 +11,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>(Shark|Donkey)(Shark|Donkey)</p>
|
||||
<p dir="auto">(Shark|Donkey)(Shark|Donkey)</p>
|
@ -26,6 +26,6 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>(--Elephant--)
|
||||
<p dir="auto">(--Elephant--)
|
||||
(--Kangaroo--)
|
||||
(--Giraffe--)</p>
|
@ -11,4 +11,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><div>Mouse</div><div class="tc-thing" label="Squeak">Mouse</div></p>
|
||||
<p dir="auto"><div>Mouse</div><div class="tc-thing" label="Squeak">Mouse</div></p>
|
@ -20,4 +20,4 @@ title: Definitions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>elephant,giraffe</p>
|
||||
<p dir="auto">elephant,giraffe</p>
|
@ -20,4 +20,4 @@ title: Definitions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>elephant,giraffe</p>
|
||||
<p dir="auto">elephant,giraffe</p>
|
@ -27,4 +27,4 @@ Bunny Hill
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Bugs Bunny,Bunny Hill,elephant,giraffe</p>
|
||||
<p dir="auto">Bugs Bunny,Bunny Hill,elephant,giraffe</p>
|
@ -10,4 +10,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><p></p></p>
|
||||
<p dir="auto"><p></p></p>
|
@ -26,4 +26,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>123</p><p>None!</p>
|
||||
<p dir="auto">123</p><p dir="auto">None!</p>
|
@ -30,4 +30,4 @@ title: Template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>112233</p><p>Zero</p>
|
||||
<p dir="auto">112233</p><p dir="auto">Zero</p>
|
@ -27,4 +27,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Item:1,Item:2,Item:3</p><p>None!</p>
|
||||
<p dir="auto">Item:1,Item:2,Item:3</p><p dir="auto">None!</p>
|
@ -29,4 +29,4 @@ title: Output
|
||||
title: ExpectedResult
|
||||
comment: I wish there was a good way to get rid of these extraneous paragraph elements
|
||||
|
||||
<p>Item:1</p><p></p><p></p><br><p>Item:2</p><p></p><p></p><br><p>Item:3</p><p></p><p></p>None!
|
||||
<p dir="auto">Item:1</p><p dir="auto"></p><p dir="auto"></p><br><p dir="auto">Item:2</p><p dir="auto"></p><p dir="auto"></p><br><p dir="auto">Item:3</p><p dir="auto"></p><p dir="auto"></p>None!
|
@ -21,5 +21,5 @@ title: Template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Zero: </p><p>One: 1</p><p>Two: 12</p><p>Minus Two: 34
|
||||
<p dir="auto">Zero: </p><p dir="auto">One: 1</p><p dir="auto">Two: 12</p><p dir="auto">Minus Two: 34
|
||||
</p>
|
@ -23,4 +23,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#1">1</a></span><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#2">2</a></span><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#3">3</a></span></p><p>None!</p>
|
||||
<p dir="auto"><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#1">1</a></span><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#2">2</a></span><span><a class="tc-tiddlylink tc-tiddlylink-missing" href="#3">3</a></span></p><p dir="auto">None!</p>
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: hello \end</p>
|
||||
<p dir="auto">Out: hello \end</p>
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: hello \end</p>
|
||||
<p dir="auto">Out: hello \end</p>
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: \end goodbye</p>
|
||||
<p dir="auto">Out: \end goodbye</p>
|
@ -14,5 +14,5 @@ Out: <<max>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Nothing
|
||||
\end</p><p>Out: </p>
|
||||
<p dir="auto">Nothing
|
||||
\end</p><p dir="auto">Out: </p>
|
@ -12,4 +12,4 @@ Out: <<empty>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: </p>
|
||||
<p dir="auto">Out: </p>
|
@ -33,4 +33,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Jaguar</p>
|
||||
<p dir="auto">Jaguar</p>
|
@ -33,4 +33,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Jaguar</p>
|
||||
<p dir="auto">Jaguar</p>
|
@ -33,4 +33,4 @@ Jaguar
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Jaguar</p>
|
||||
<p dir="auto">Jaguar</p>
|
@ -19,4 +19,4 @@ Paragraph 2
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Paragraph 1</p><p>Paragraph 2</p>
|
||||
<p dir="auto">Paragraph 1</p><p dir="auto">Paragraph 2</p>
|
@ -24,4 +24,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>test 1</p><p>asdf 1</p>
|
||||
<p dir="auto">test 1</p><p dir="auto">asdf 1</p>
|
@ -20,4 +20,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler 1</p><p>New Tiddler 1</p><p>New Tiddler 1</p>
|
||||
<p dir="auto">New Tiddler 1</p><p dir="auto">New Tiddler 1</p><p dir="auto">New Tiddler 1</p>
|
@ -17,4 +17,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler</p><p>New Tiddler</p><p>New Tiddler</p>
|
||||
<p dir="auto">New Tiddler</p><p dir="auto">New Tiddler</p><p dir="auto">New Tiddler</p>
|
@ -25,4 +25,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler 1</p><p>New Tiddler-1</p><p>anotherBase 1</p><p>About-1</p>
|
||||
<p dir="auto">New Tiddler 1</p><p dir="auto">New Tiddler-1</p><p dir="auto">anotherBase 1</p><p dir="auto">About-1</p>
|
@ -25,4 +25,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler</p><p>New Tiddler</p><p>anotherBase</p><p>About</p><p>New Tiddler 3</p><p>invalid start</p><p>invalid count</p>
|
||||
<p dir="auto">New Tiddler</p><p dir="auto">New Tiddler</p><p dir="auto">anotherBase</p><p dir="auto">About</p><p dir="auto">New Tiddler 3</p><p dir="auto">invalid start</p><p dir="auto">invalid count</p>
|
@ -47,4 +47,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler 1</p><p>xxx-y-1</p><p>01-New Tiddler</p><p>0002 asdf</p><p>0001 abc</p>
|
||||
<p dir="auto">New Tiddler 1</p><p dir="auto">xxx-y-1</p><p dir="auto">01-New Tiddler</p><p dir="auto">0002 asdf</p><p dir="auto">0001 abc</p>
|
@ -21,4 +21,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler</p><p>xxx</p><p>00-New Tiddler</p><p>0000 asdf</p>
|
||||
<p dir="auto">New Tiddler</p><p dir="auto">xxx</p><p dir="auto">00-New Tiddler</p><p dir="auto">0000 asdf</p>
|
@ -24,4 +24,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler 0xx</p><p>New Tiddler 4xx</p><p>New Tiddler 11xx</p><p>emptyCount 00xx</p><p>invalid start 0xx</p><p>invalid count 0xx</p>
|
||||
<p dir="auto">New Tiddler 0xx</p><p dir="auto">New Tiddler 4xx</p><p dir="auto">New Tiddler 11xx</p><p dir="auto">emptyCount 00xx</p><p dir="auto">invalid start 0xx</p><p dir="auto">invalid count 0xx</p>
|
@ -25,4 +25,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>New Tiddler</p><p>count-missing0</p><p>00-new</p><p>00-base</p><p>00-New Tiddler</p><p>00-asdf</p><p>00 asdf</p>
|
||||
<p dir="auto">New Tiddler</p><p dir="auto">count-missing0</p><p dir="auto">00-new</p><p dir="auto">00-base</p><p dir="auto">00-New Tiddler</p><p dir="auto">00-asdf</p><p dir="auto">00 asdf</p>
|
@ -21,7 +21,7 @@ title: Actions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>text: {
|
||||
<p dir="auto">text: {
|
||||
"tiddlers": {
|
||||
"Elephants": {
|
||||
"title": "Elephants"
|
||||
|
@ -21,7 +21,7 @@ title: Actions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>text: {
|
||||
<p dir="auto">text: {
|
||||
"tiddlers": {
|
||||
"Elephants": {
|
||||
"title": "Elephants"
|
||||
|
@ -22,7 +22,7 @@ title: Actions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>text: {
|
||||
<p dir="auto">text: {
|
||||
"tiddlers": {
|
||||
"Elephants": {
|
||||
"title": "Elephants"
|
||||
|
@ -20,7 +20,7 @@ title: Actions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>text: {
|
||||
<p dir="auto">text: {
|
||||
"tiddlers": {
|
||||
"Elephants": {
|
||||
"title": "Elephants"
|
||||
|
@ -29,7 +29,7 @@ title: output-template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
<p dir="auto"><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
tags: test [[with spaces]]
|
||||
title: Draft of 'New Tiddler'
|
||||
|
@ -31,7 +31,7 @@ title: output-template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
<p dir="auto"><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
title: Draft of 'New Tiddler'
|
||||
z-field: a
|
||||
|
@ -34,7 +34,7 @@ title: output-template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>asdf: asdf
|
||||
<p dir="auto"><pre>asdf: asdf
|
||||
draft.of: new-tiddler-template 1
|
||||
draft.title: new-tiddler-template 1
|
||||
tags:
|
||||
|
@ -48,7 +48,7 @@ title: output-template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>asdf: asdf
|
||||
<p dir="auto"><pre>asdf: asdf
|
||||
draft.of: new-tiddler-template 1
|
||||
draft.title: new-tiddler-template 1
|
||||
title: Draft of 'new-tiddler-template 1'
|
||||
|
@ -31,7 +31,7 @@ title: output-template
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
<p dir="auto"><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
tag:
|
||||
title: Draft of 'New Tiddler'
|
||||
|
@ -30,7 +30,7 @@ title: ExpectedResult
|
||||
|
||||
! Not Heading
|
||||
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p>Text with <strong>bold</strong></p><p>! Not Heading
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p dir="auto">Text with <strong>bold</strong></p><p dir="auto">! Not Heading
|
||||
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p>Text with <strong>bold</strong></p>
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p dir="auto">Text with <strong>bold</strong></p>
|
||||
</p>
|
@ -30,7 +30,7 @@ title: ExpectedResult
|
||||
|
||||
! Not Heading
|
||||
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p>Text with <strong>bold</strong></p><p>! Not Heading
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p dir="auto">Text with <strong>bold</strong></p><p dir="auto">! Not Heading
|
||||
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p>Text with <strong>bold</strong></p>
|
||||
Text with <strong>bold</strong><h1 class="">Heading</h1><p dir="auto">Text with <strong>bold</strong></p>
|
||||
</p>
|
@ -21,7 +21,7 @@ Now!
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
[
|
||||
{
|
||||
"type": "set",
|
||||
|
@ -20,7 +20,7 @@ Now!
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
[
|
||||
{
|
||||
"type": "text",
|
||||
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: hello \end</p>
|
||||
<p dir="auto">Out: hello \end</p>
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: hello \end</p>
|
||||
<p dir="auto">Out: hello \end</p>
|
@ -13,4 +13,4 @@ Out: <<hello>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: \end goodbye</p>
|
||||
<p dir="auto">Out: \end goodbye</p>
|
@ -17,4 +17,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>ElephantElephant</p>
|
||||
<p dir="auto">ElephantElephant</p>
|
@ -17,4 +17,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>ElephantElephant</p>
|
||||
<p dir="auto">ElephantElephant</p>
|
@ -19,4 +19,4 @@ Paragraph 2
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Paragraph 1</p><p>Paragraph 2</p>
|
||||
<p dir="auto">Paragraph 1</p><p dir="auto">Paragraph 2</p>
|
@ -14,5 +14,5 @@ Out: <<max>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Nothing
|
||||
\end</p><p>Out: </p>
|
||||
<p dir="auto">Nothing
|
||||
\end</p><p dir="auto">Out: </p>
|
@ -12,4 +12,4 @@ Out: <<empty>>
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Out: </p>
|
||||
<p dir="auto">Out: </p>
|
@ -34,7 +34,7 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>
|
||||
<p dir="auto">
|
||||
{%%}
|
||||
(==)
|
||||
{% %}
|
||||
|
@ -2,4 +2,4 @@ title: expected-test-tabs-horizontal-a
|
||||
type: text/html
|
||||
description: Horizontal tabs test - This is the expected HTML output from a test in test-wikitext-tabs-macro.js
|
||||
|
||||
<p><div class="tc-tab-set "><div class="tc-tab-buttons "><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">t 3</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider "></div><div class="tc-tab-content "><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><p>Text tab 2</p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
||||
<p dir="auto"><div class="tc-tab-set "><div class="tc-tab-buttons "><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">t 3</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider "></div><div class="tc-tab-content "><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><p dir="auto">Text tab 2</p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
@ -2,4 +2,4 @@ title: expected-test-tabs-horizontal-all
|
||||
type: text/html
|
||||
description: Horizontal tabs with all parameters active. This is the expected HTML output from a test in test-wikitext-tabs-macro.js
|
||||
|
||||
<p><div class="tc-tab-set "><div class="tc-tab-buttons "><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">desc</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider "></div><div class="tc-tab-content "><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><h2 class="">TabTwo</h2><p><p>Text tab 2</p></p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
||||
<p dir="auto"><div class="tc-tab-set "><div class="tc-tab-buttons "><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">desc</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider "></div><div class="tc-tab-content "><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><h2 class="">TabTwo</h2><p dir="auto"><p dir="auto">Text tab 2</p></p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
@ -2,4 +2,4 @@ title: expected-test-tabs-vertical
|
||||
type: text/html
|
||||
description: Vertical tabs test -- This is the expected HTML output from the test in test-wikitext-tabs-macro.js
|
||||
|
||||
<p><div class="tc-tab-set tc-vertical"><div class="tc-tab-buttons tc-vertical"><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">t 3</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider tc-vertical"></div><div class="tc-tab-content tc-vertical"><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><p>Text tab 2</p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
||||
<p dir="auto"><div class="tc-tab-set tc-vertical"><div class="tc-tab-buttons tc-vertical"><button class="" data-tab-title="TabOne" role="switch">t 1</button><button aria-checked="true" class=" tc-tab-selected" data-tab-title="TabTwo" role="switch">t 2</button><button class="" data-tab-title="TabThree" role="switch">t 3</button><button class="" data-tab-title="TabFour" role="switch">TabFour</button></div><div class="tc-tab-divider tc-vertical"></div><div class="tc-tab-content tc-vertical"><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal"><p dir="auto">Text tab 2</p></div><div class=" tc-reveal" hidden="true"></div><div class=" tc-reveal" hidden="true"></div></div></div></p>
|
@ -26,4 +26,4 @@ title: Macro
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>(Output)</p><p>(Output)</p><p>(Output)</p>
|
||||
<p dir="auto">(Output)</p><p dir="auto">(Output)</p><p dir="auto">(Output)</p>
|
@ -24,4 +24,4 @@ title: Actions
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Dingo</p>
|
||||
<p dir="auto">Dingo</p>
|
@ -17,4 +17,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>hello</p>
|
||||
<p dir="auto">hello</p>
|
@ -23,4 +23,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Undefined widget 'non-existent-widget'Undefined widget 'non-existent-widget'</p>
|
||||
<p dir="auto">Undefined widget 'non-existent-widget'Undefined widget 'non-existent-widget'</p>
|
@ -26,4 +26,4 @@ Python
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre><code>£Kangaroo@</code></pre><pre><code>£Python@</code></pre><pre><code>£Tiger@</code></pre></p>
|
||||
<p dir="auto"><pre><code>£Kangaroo@</code></pre><pre><code>£Python@</code></pre><pre><code>£Tiger@</code></pre></p>
|
@ -30,4 +30,4 @@ title: TiddlerOne
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>Antelope</p>
|
||||
<p dir="auto">Antelope</p>
|
@ -30,4 +30,4 @@ title: TiddlerOne
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>DingoCrocodileBumbleBeeSquirrelJaguarWhale</p>
|
||||
<p dir="auto">DingoCrocodileBumbleBeeSquirrelJaguarWhale</p>
|
@ -30,4 +30,4 @@ title: TiddlerOne
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>DingoCrocodileBumbleBeeSquirrelJaguarWhale</p>
|
||||
<p dir="auto">DingoCrocodileBumbleBeeSquirrelJaguarWhale</p>
|
@ -24,4 +24,4 @@ title: Output
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>DingoCrocodileBumbleBeeWhale</p>
|
||||
<p dir="auto">DingoCrocodileBumbleBeeWhale</p>
|
@ -24,4 +24,4 @@ Crocodile
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>≤Dingo≥≤Jaguar≥</p>
|
||||
<p dir="auto">≤Dingo≥≤Jaguar≥</p>
|
@ -28,4 +28,4 @@ title: TiddlerOne
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>DingoCrocodile</p>
|
||||
<p dir="auto">DingoCrocodile</p>
|
@ -28,4 +28,4 @@ Python
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre><code>Kangaroo</code></pre><pre><code>Python</code></pre><pre><code>Tiger</code></pre></p>
|
||||
<p dir="auto"><pre><code>Kangaroo</code></pre><pre><code>Python</code></pre><pre><code>Tiger</code></pre></p>
|
@ -26,4 +26,4 @@ title: TiddlerOne
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p>DingoCrocodile</p>
|
||||
<p dir="auto">DingoCrocodile</p>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user