forked from docbook/xslTNG
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docbook#97 by making sure CALS table row and entry xml:ids become…
… id attributes
- Loading branch information
Showing
6 changed files
with
62 additions
and
3 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 @@ | ||
<!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"/><title>CALS table with IDs</title><meta name="viewport" content="width=device-width, initial-scale=1.0"/><link href="http://purl.org/dc/elements/1.1/" rel="schema.dc"/><meta content="2011-04-22T17:02:00-06:00" name="dc.modified"/><meta content="DocBook xslTNG" name="generator"/><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>CALS table with IDs</h1></header><p>Tests that IDs appear on the resulting HTML table.</p><figure id="inftable" class="informaltable"><table><thead id="thead1"><tr id="thead1r1"><th id="thead1r1c1" class="bleft btop colsep rowsep">Left</th><th id="thead1r1c2" class="btop colsep rowsep">Middle</th><th id="thead1r1c3" class="btop colsep rowsep">Right</th></tr></thead><tfoot id="tfoot1"><tr id="tfoot1r1"><td id="tfoot1r1c1" class="bleft btop colsep rowsep">Left</td><td class="btop colsep empty rowsep"></td><td id="tfoot1r1c3" class="btop colsep rowsep">Right</td></tr></tfoot><tbody id="tbody1"><tr id="tbody1r1"><td id="tbody1r1c1" class="bleft btop colsep rowsep">←</td><td id="tbody1r1c2" class="btop colsep rowsep">·</td><td id="tbody1r1c3" class="btop colsep rowsep">→</td></tr><tr><td id="tbody1r2c1" class="bleft colsep rowsep">←</td><td class="colsep rowsep">·</td><td id="tbody1r2c3" class="colsep rowsep">→</td></tr></tbody></table></figure></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,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<article xmlns="http://docbook.org/ns/docbook" version="5.0"> | ||
<title>CALS table with IDs</title> | ||
<para>Tests that IDs appear on the resulting HTML table.</para> | ||
|
||
<informaltable frame="all" xml:id="inftable"> | ||
<tgroup cols="3" colsep="1" rowsep="1" xml:id="tgroup1"> | ||
<colspec colname="c1"/> | ||
<colspec colname="c2"/> | ||
<colspec colname="c3"/> | ||
<thead xml:id="thead1"> | ||
<row xml:id="thead1r1"> | ||
<entry xml:id="thead1r1c1">Left</entry> | ||
<entry xml:id="thead1r1c2">Middle</entry> | ||
<entry xml:id="thead1r1c3">Right</entry> | ||
</row> | ||
</thead> | ||
<tfoot xml:id="tfoot1"> | ||
<row xml:id="tfoot1r1"> | ||
<entry xml:id="tfoot1r1c1">Left</entry> | ||
<entry namest="c3" xml:id="tfoot1r1c3">Right</entry> | ||
</row> | ||
</tfoot> | ||
<tbody xml:id="tbody1"> | ||
<row xml:id="tbody1r1"> | ||
<entry xml:id="tbody1r1c1">←</entry> | ||
<entry xml:id="tbody1r1c2">·</entry> | ||
<entry xml:id="tbody1r1c3">→</entry> | ||
</row> | ||
<row> | ||
<entry xml:id="tbody1r2c1">←</entry> | ||
<entry>·</entry> | ||
<entry xml:id="tbody1r2c3">→</entry> | ||
</row> | ||
</tbody> | ||
</tgroup> | ||
|
||
</informaltable> | ||
</article> |
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