summaryrefslogtreecommitdiff
path: root/test/fixtures
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2019-02-13 04:30:39 -0700
committerGitHub <noreply@github.com>2019-02-13 04:30:39 -0700
commit930f76b9f103c73377684eeaa9656116c8f06583 (patch)
tree2662f837d172b3e972f8c2d8ad08d9c21ae57320 /test/fixtures
parent86022f76eff24ab5b3fdf7893822bc9cea445942 (diff)
resolves #1720 add header docinfo insertion slot (PR #3068)
* add docinfo insertion slot for header location to built-in converters
Diffstat (limited to 'test/fixtures')
-rw-r--r--test/fixtures/basic-docinfo-header.html8
-rw-r--r--test/fixtures/sample-docinfo-header.xml26
2 files changed, 34 insertions, 0 deletions
diff --git a/test/fixtures/basic-docinfo-header.html b/test/fixtures/basic-docinfo-header.html
new file mode 100644
index 00000000..a83bda8d
--- /dev/null
+++ b/test/fixtures/basic-docinfo-header.html
@@ -0,0 +1,8 @@
+<nav class="navbar">
+ <a class="navbar-brand" href="#">Brand</a>
+ <div class="navbar-nav">
+ <a class="navbar-item" href="#">Docs</a>
+ <a class="navbar-item" href="#">Blog</a>
+ <a class="navbar-item" href="#">About</a>
+ </div>
+</nav>
diff --git a/test/fixtures/sample-docinfo-header.xml b/test/fixtures/sample-docinfo-header.xml
new file mode 100644
index 00000000..07fdd794
--- /dev/null
+++ b/test/fixtures/sample-docinfo-header.xml
@@ -0,0 +1,26 @@
+<info>
+<title>{doctitle}</title>
+<date>{docdate}</date>
+<author>
+<personname>
+<firstname>{firstname}</firstname>
+<surname>{lastname}</surname>
+</personname>
+<email>{email}</email>
+</author>
+<authorinitials>{authorinitials}</authorinitials>
+<revhistory>
+<revision>
+<revnumber>1.0</revnumber>
+<date>2000-01-01</date>
+<authorinitials>jwz</authorinitials>
+<revremark>New millennium, new release.</revremark>
+</revision>
+<revision>
+<revnumber>2.0</revnumber>
+<date>2010-12-25</date>
+<authorinitials>why</authorinitials>
+<revremark>Why not? A new release.</revremark>
+</revision>
+</revhistory>
+</info>