summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-12-28 16:42:35 -0700
committerGitHub <noreply@github.com>2017-12-28 16:42:35 -0700
commite4f1bf88e93ae9a331339071f631a5b5cd9ee346 (patch)
treee08c28dc088a9e6b55fd074fa99a586bc64da69c
parent6db422abbe0eec5ce043d2a0f49383fd0a1ed10d (diff)
parent560855dd839f4627de479c700b087ce7600f244a (diff)
Merge pull request #4212 from iredwards/master
clarify default html output for --section-divs
-rw-r--r--MANUAL.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/MANUAL.txt b/MANUAL.txt
index 87c30ed9d..3f8cc6944 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -855,8 +855,8 @@ Options affecting specific writers
`--section-divs`
-: Wrap sections in `<div>` tags (or `<section>` tags in HTML5),
- and attach identifiers to the enclosing `<div>` (or `<section>`)
+: Wrap sections in `<section>` tags (or `<div>` tags for `html4`),
+ and attach identifiers to the enclosing `<section>` (or `<div>`)
rather than the header itself. See
[Header identifiers], below.
@@ -1798,9 +1798,9 @@ Note, however, that this method of providing links to sections works
only in HTML, LaTeX, and ConTeXt formats.
If the `--section-divs` option is specified, then each section will
-be wrapped in a `div` (or a `section`, if `html5` was specified),
-and the identifier will be attached to the enclosing `<div>`
-(or `<section>`) tag rather than the header itself. This allows entire
+be wrapped in a `section` (or a `div`, if `html4` was specified),
+and the identifier will be attached to the enclosing `<section>`
+(or `<div>`) tag rather than the header itself. This allows entire
sections to be manipulated using JavaScript or treated differently in
CSS.