diff options
Diffstat (limited to 'test/command/bits-title-supress.md')
| -rw-r--r-- | test/command/bits-title-supress.md | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/test/command/bits-title-supress.md b/test/command/bits-title-supress.md new file mode 100644 index 000000000..e30841e10 --- /dev/null +++ b/test/command/bits-title-supress.md @@ -0,0 +1,122 @@ +``` +% pandoc -f jats -t native +<sec> + <title>The European Parliament</title> + <p>Members of the European Parliament (MEPs) are directly elected by EU citizens.</p> +</sec> +^D +[ Header + 1 + ( "" , [] , [] ) + [ Str "The" + , Space + , Str "European" + , Space + , Str "Parliament" + ] +, Para + [ Str "Members" + , Space + , Str "of" + , Space + , Str "the" + , Space + , Str "European" + , Space + , Str "Parliament" + , Space + , Str "(MEPs)" + , Space + , Str "are" + , Space + , Str "directly" + , Space + , Str "elected" + , Space + , Str "by" + , Space + , Str "EU" + , Space + , Str "citizens." + ] +] +``` + +``` +% pandoc -f jats -t native +<sec> + <title supress="no">The European Parliament</title> + <p>Members of the European Parliament (MEPs) are directly elected by EU citizens.</p> +</sec> +^D +[ Header + 1 + ( "" , [] , [] ) + [ Str "The" + , Space + , Str "European" + , Space + , Str "Parliament" + ] +, Para + [ Str "Members" + , Space + , Str "of" + , Space + , Str "the" + , Space + , Str "European" + , Space + , Str "Parliament" + , Space + , Str "(MEPs)" + , Space + , Str "are" + , Space + , Str "directly" + , Space + , Str "elected" + , Space + , Str "by" + , Space + , Str "EU" + , Space + , Str "citizens." + ] +] +``` + +``` +% pandoc -f jats -t native +<sec> + <title supress="yes">The European Parliament</title> + <p>Members of the European Parliament (MEPs) are directly elected by EU citizens.</p> +</sec> +^D +[ Para + [ Str "Members" + , Space + , Str "of" + , Space + , Str "the" + , Space + , Str "European" + , Space + , Str "Parliament" + , Space + , Str "(MEPs)" + , Space + , Str "are" + , Space + , Str "directly" + , Space + , Str "elected" + , Space + , Str "by" + , Space + , Str "EU" + , Space + , Str "citizens." + ] +] +```
\ No newline at end of file |
