diff options
Diffstat (limited to 'test/todo')
| -rw-r--r-- | test/todo/block-cluster_scope.md | 21 | ||||
| -rw-r--r-- | test/todo/block-cluster_scope.plain.html | 12 | ||||
| -rw-r--r-- | test/todo/block-cluster_scope.rdfa.html | 13 | ||||
| -rw-r--r-- | test/todo/block-siblings_scope.md | 13 | ||||
| -rw-r--r-- | test/todo/block-siblings_scope.plain.html | 6 | ||||
| -rw-r--r-- | test/todo/block-siblings_scope.rdfa.html | 10 | ||||
| -rw-r--r-- | test/todo/block-siblings_scope_list.md | 4 | ||||
| -rw-r--r-- | test/todo/block-tree_scope.md | 10 | ||||
| -rw-r--r-- | test/todo/block-tree_scope.plain.html | 6 | ||||
| -rw-r--r-- | test/todo/block-tree_scope.rdfa.html | 8 | ||||
| -rw-r--r-- | test/todo/link_definition_scope.md | 10 | ||||
| -rw-r--r-- | test/todo/link_definition_scope.plain.html | 4 | ||||
| -rw-r--r-- | test/todo/link_definition_scope.rdfa.html | 4 |
13 files changed, 121 insertions, 0 deletions
diff --git a/test/todo/block-cluster_scope.md b/test/todo/block-cluster_scope.md new file mode 100644 index 0000000..342632f --- /dev/null +++ b/test/todo/block-cluster_scope.md @@ -0,0 +1,21 @@ +{.schema:Group} + +# People + +## Manu Sporny + +My name is Manu Sporny. + +## Thomas Francart + +My name is Thomas Francart. + +I once read this: + +> {=<#manu>} +> +> My name is Manu Sporny. +> +> You can give me a ring. + +Should I call him? diff --git a/test/todo/block-cluster_scope.plain.html b/test/todo/block-cluster_scope.plain.html new file mode 100644 index 0000000..c121d82 --- /dev/null +++ b/test/todo/block-cluster_scope.plain.html @@ -0,0 +1,12 @@ +<p>{.schema:Group}</p> +<h1>People</h1> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny.</p> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> +<p>I once read this:</p> +<blockquote> +<p>My name is Manu Sporny.</p> +<p>You can give me a ring.</p> +</blockquote> +<p>Should I call him?</p> diff --git a/test/todo/block-cluster_scope.rdfa.html b/test/todo/block-cluster_scope.rdfa.html new file mode 100644 index 0000000..7aa3ef0 --- /dev/null +++ b/test/todo/block-cluster_scope.rdfa.html @@ -0,0 +1,13 @@ +<div typeof="schema:Group"> +<h1>People</h1> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny.</p> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> +<p>I once read this:</p> +<blockquote resource="#manu"> +<p>My name is Manu Sporny.</p> +<p>You can give me a ring.</p> +</blockquote> +<p>Should I call him?</p> +</div> diff --git a/test/todo/block-siblings_scope.md b/test/todo/block-siblings_scope.md new file mode 100644 index 0000000..3a3bec3 --- /dev/null +++ b/test/todo/block-siblings_scope.md @@ -0,0 +1,13 @@ +# People + +## {.schema:Person} + +## Manu Sporny + +My name is Manu Sporny. + +## Thomas Francart + +My name is Thomas Francart. + +# Animals diff --git a/test/todo/block-siblings_scope.plain.html b/test/todo/block-siblings_scope.plain.html new file mode 100644 index 0000000..8190063 --- /dev/null +++ b/test/todo/block-siblings_scope.plain.html @@ -0,0 +1,6 @@ +<h1>People</h1> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny.</p> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> +<h1>Animals</h1> diff --git a/test/todo/block-siblings_scope.rdfa.html b/test/todo/block-siblings_scope.rdfa.html new file mode 100644 index 0000000..4002b2d --- /dev/null +++ b/test/todo/block-siblings_scope.rdfa.html @@ -0,0 +1,10 @@ +<h1> People</h1> +<div typeof="schema:Person"> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny.<p> +</div> +<div typeof="schema:Person"> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> +</div> +<h1>Animals</h1> diff --git a/test/todo/block-siblings_scope_list.md b/test/todo/block-siblings_scope_list.md new file mode 100644 index 0000000..90dcbb7 --- /dev/null +++ b/test/todo/block-siblings_scope_list.md @@ -0,0 +1,4 @@ +- {foaf:member} +- Thomas +- Vincent +- Nicolas diff --git a/test/todo/block-tree_scope.md b/test/todo/block-tree_scope.md new file mode 100644 index 0000000..44b1dc4 --- /dev/null +++ b/test/todo/block-tree_scope.md @@ -0,0 +1,10 @@ +# People + +## {=<#manu>} Manu Sporny + +My name is Manu Sporny, +and you can give me a ring. + +## Thomas Francart + +My name is Thomas Francart. diff --git a/test/todo/block-tree_scope.plain.html b/test/todo/block-tree_scope.plain.html new file mode 100644 index 0000000..ed32777 --- /dev/null +++ b/test/todo/block-tree_scope.plain.html @@ -0,0 +1,6 @@ +<h1> People</h1> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny, +and you can give me a ring.<p> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> diff --git a/test/todo/block-tree_scope.rdfa.html b/test/todo/block-tree_scope.rdfa.html new file mode 100644 index 0000000..a88eb72 --- /dev/null +++ b/test/todo/block-tree_scope.rdfa.html @@ -0,0 +1,8 @@ +<h1> People</h1> +<div resource="#manu"> +<h2>Manu Sporny</h2> +<p>My name is Manu Sporny, +and you can give me a ring.<p> +</div> +<h2>Thomas Francart</h2> +<p>My name is Thomas Francart.</p> diff --git a/test/todo/link_definition_scope.md b/test/todo/link_definition_scope.md new file mode 100644 index 0000000..c0acb03 --- /dev/null +++ b/test/todo/link_definition_scope.md @@ -0,0 +1,10 @@ +My name is +[Manu Sporny] +and you can give me a ring via +[1-800-555-0199]. + +[Manu Sporny]: {schema:name} + +[1-800-555-0199]: tel:+1-800-555-0199 + "make a phone call to Manu Sporny" + {schema:telephone} diff --git a/test/todo/link_definition_scope.plain.html b/test/todo/link_definition_scope.plain.html new file mode 100644 index 0000000..ba92f3f --- /dev/null +++ b/test/todo/link_definition_scope.plain.html @@ -0,0 +1,4 @@ +<p>My name is +Manu Sporny +and you can give me a ring via +<a href="tel:+1-800-555-0199" title="make a phone call to Manu Sporny">1-800-555-0199</a>.</p> diff --git a/test/todo/link_definition_scope.rdfa.html b/test/todo/link_definition_scope.rdfa.html new file mode 100644 index 0000000..60e8f7a --- /dev/null +++ b/test/todo/link_definition_scope.rdfa.html @@ -0,0 +1,4 @@ +<p>My name is +<span property="schema:name">Manu Sporny</span> +and you can give me a ring via +<a property="telephone" href="tel:+1-800-555-0199" title="make a phone call to Manu Sporny">1-800-555-0199</a>.</p> |
