diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-06 09:05:34 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-06 09:05:52 -0700 |
commit | 212406a61d027d85712705e626954e0486a2bc34 (patch) | |
tree | 69d02f88a373562133467621f21aee65ad3e1ac2 /test | |
parent | 6e2cfd6c97b1b8657f1f3e2b66090a2c3ba8d887 (diff) | |
download | pandoc-212406a61d027d85712705e626954e0486a2bc34.tar.gz |
hierarchicalize: ensure that sections get ids...
even if they're in divs. Improves #3057.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/3057.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/command/3057.md b/test/command/3057.md index 0db5e7969..7d1f146c2 100644 --- a/test/command/3057.md +++ b/test/command/3057.md @@ -7,9 +7,9 @@ </div> </div> ^D -<section> +<section xml:id="one"> <title>one</title> - <section> + <section xml:id="two"> <title>two</title> <para> </para> @@ -26,9 +26,9 @@ </div> </div> ^D -<section> +<section xml:id="one"> <title>one</title> - <section> + <section xml:id="two"> <title>two</title> <para> </para> @@ -48,7 +48,7 @@ <para> </para> </section> -<section> +<section xml:id="two"> <title>two</title> <para> </para> |