aboutsummaryrefslogtreecommitdiff
path: root/test/external_text_formatter/reference.xml
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-05-26 20:13:11 +0200
committerAdrian Kummerländer2014-05-26 20:13:11 +0200
commit6efa3385ae0fab5f7b6e3a113d1da18cfbed8591 (patch)
tree043220ff989ef5e17b04286e510b9c6984e96ae5 /test/external_text_formatter/reference.xml
parent86f8e73299e86b65affc1a71610dd061fa13bf5c (diff)
downloadInputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar.gz
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar.bz2
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar.lz
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar.xz
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.tar.zst
InputXSLT-6efa3385ae0fab5f7b6e3a113d1da18cfbed8591.zip
Added "external-text-formatter" test case
* test case requires markdown.pl formatter to be available in "/usr/bin/" * updated README.md to mention "external-text-formatter" instead of "execute" * updated "read-directory" test case reference file * included library resolution test into "read-file" and "read-xml-file" test cases
Diffstat (limited to 'test/external_text_formatter/reference.xml')
-rw-r--r--test/external_text_formatter/reference.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/external_text_formatter/reference.xml b/test/external_text_formatter/reference.xml
new file mode 100644
index 0000000..a98b3d8
--- /dev/null
+++ b/test/external_text_formatter/reference.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<test_case>
+<h1>Markdown Test</h1>
+<p>
+<strong>Lorem ipsum</strong> dolor sit amet, <em>consectetur</em> adipisicing elit, sed do <code>eiusmod</code> tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
+<blockquote>
+ <p>Duis aute irure dolor in reprehenderit in voluptate
+velit esse cillum dolore eu fugiat nulla pariatur.</p>
+</blockquote>
+<p>Excepteur sint <strong>occaecat</strong> cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
+<ul>
+<li>Test 1</li>
+<li>Test 2</li>
+<li>Test 3</li>
+<li>Test 4</li>
+</ul>
+<p>Test Test Test</p>
+<pre>
+<code>template &lt;
+ typename Target,
+ std::size_t Index = 0,
+ typename Current = std::tuple&lt;&gt;,
+ enable_if&lt;Index == std::tuple_size&lt;Target&gt;::value&gt; = 0
+&gt;
+inline Target construct(
+ const xalan::XPathExecutionContext::XObjectArgVectorType&amp;,
+ Current&amp;&amp; current
+) {
+ return current;
+}
+</code>
+</pre>
+</test_case>