-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from ndw/fixes
Bug fixes
- Loading branch information
Showing
5 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" class="no-js"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script><title>Article wrapper</title><meta name="viewport" content="width=device-width, initial-scale=1.0"/><link href="https://purl.org/dc/elements/1.1/" rel="schema.dc"/><meta name="dc.modified" content="2022-07-02T12:14:33Z"/><meta name="generator" content="DocBook xslTNG version 1.7.0-11 / 72cb9caf / SAXON HE 11.3"/><link href="./css/docbook.css" rel="stylesheet"/><link href="./css/docbook-screen.css" rel="stylesheet"/></head><body class="home"><nav class="top"></nav><main><article class="article"><header><h1>Article wrapper</h1></header><p>An ordered list with a continuation. From | ||
<a href="https://github.com/docbook/xslTNG/issues/145" class="link">issue #145</a>. | ||
</p><ol class="orderedlist" type="1"><li><p>First Item</p></li><li><p>Second Item</p><ol class="orderedlist" type="a"><li><p>Sub-Item a</p></li></ol></li><li><p>Third Item</p></li></ol><p class="simpara">Some text.</p><ol class="orderedlist" start="4" type="1"><li><p>Fourth Item</p></li></ol></article></main><nav class="bottom"></nav></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<article xmlns="http://docbook.org/ns/docbook" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
version="5.1"> | ||
<title>Article wrapper</title> | ||
|
||
<para>An ordered list with a continuation. From | ||
<link xlink:href="https://github.com/docbook/xslTNG/issues/145">issue #145</link>. | ||
</para> | ||
|
||
<orderedlist> | ||
<listitem> | ||
<para>First Item</para> | ||
</listitem> | ||
<listitem> | ||
<para>Second Item</para> | ||
<orderedlist numeration="loweralpha"> | ||
<listitem> | ||
<para>Sub-Item a</para> | ||
</listitem> | ||
</orderedlist> | ||
</listitem> | ||
<listitem> | ||
<para>Third Item</para> | ||
</listitem> | ||
</orderedlist> | ||
<simpara>Some text.</simpara> | ||
<orderedlist continuation="continues"> | ||
<listitem> | ||
<para>Fourth Item</para> | ||
</listitem> | ||
</orderedlist> | ||
</article> |