diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-01-15 22:35:25 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-01-15 22:35:25 -0800 |
commit | 53eb2c4828d09fa00dce327f0b69e252287d82ca (patch) | |
tree | 3be9d365f85424a77c1d5d98d838b677eb1fd990 | |
parent | 19234efc95b03970b9ef22339cca5497a5ceff61 (diff) | |
download | pandoc-53eb2c4828d09fa00dce327f0b69e252287d82ca.tar.gz |
HTML writer: Add ids to <section> tags.
-rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index 901575434..93f96b2f9 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -233,7 +233,8 @@ elementToHtml opts (Sec level num id' title' elements) = do then toHtmlFromList stuff else if writerSectionDivs opts then if writerHtml5 opts - then tag "section" << stuff + then tag "section" ! [prefixedId opts id'] + << stuff else thediv ! [prefixedId opts id'] << stuff else toHtmlFromList stuff |