On Tue, Mar 15, 2011 at 10:13 AM, Robert Nagle
<[email protected]> wrote:
> Perhaps. But I cannot imagine a case when you are using the epub
> stylesheets, you want to produce an epub file and you would NOT want
> chapters/sections/subsections to have descending h tags.
I believe that the stylesheets already do this:
<book>
<title>Heading Nesting</title>
<chapter id="top">
<title>ChTitle</title>
<sect1 id="s1">
<title>S1Title</title>
<para>Foo</para>
<sect2 id="s2">
<title>S2Title</title>
<para>Bar</para>
<sect3 id="s3">
<title>S3Title</title>
<para>Bax</para>
</sect3>
</sect2>
</sect1>
</chapter>
</book>
That will make the expected EPUB files:
OEBPS/index.html
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Heading Nesting</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.77.0-pre"/>
</head>
<body>
<div class="book" title="Heading Nesting">
<div class="titlepage">
<div>
<div>
<h1 class="title"><a id="id36091833"/>Heading Nesting</h1>
</div>
</div>
<hr/>
</div>
</div>
</body>
</html>
OEBPS/ch01.html
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Chapter 1. ChTitle</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.77.0-pre"/>
</head>
<body>
<div class="chapter" title="Chapter 1. ChTitle">
<div class="titlepage">
<div>
<div>
<h1 class="title"><a id="top"/>Chapter 1. ChTitle</h1>
</div>
</div>
</div>
<div class="sect1" title="S1Title">
<div class="titlepage">
<div>
<div>
<h1 class="title"><a id="s1"/>S1Title</h1>
</div>
</div>
</div>
<p>Foo</p>
<div class="sect2" title="S2Title">
<div class="titlepage">
<div>
<div>
<h2 class="title"><a id="s2"/>S2Title</h2>
</div>
</div>
</div>
<p>Bar</p>
<div class="sect3" title="S3Title">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="s3"/>S3Title</h3>
</div>
</div>
</div>
<p>Bax</p>
</div>
</div>
</div>
</div>
</body>
</html>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]