summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2023-03-13 17:26:56 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2023-03-13 17:31:12 +0100
commit51750d6d9aa03c295a050db3c96a51ea27727c5e (patch)
tree06819bd9e05a02488f6be9559cdb35ecdce3ab0a /test/command
parent39eb4145baa96909053fc2b9751ca3041d9efe53 (diff)
Jira reader: add panel title as nested div
The title of a jira panel is added in a nested div as the first element of the div panel. Fixes: #8681
Diffstat (limited to 'test/command')
-rw-r--r--test/command/8681.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command/8681.md b/test/command/8681.md
new file mode 100644
index 000000000..eb9a812bf
--- /dev/null
+++ b/test/command/8681.md
@@ -0,0 +1,14 @@
+# Include Jira panel title in resulting div
+```
+% pandoc -f jira -t html
+{panel:title=This is the title|titleBGColor=#cccccc|bgColor=#eeeeee}
+Panel content
+{panel}
+^D
+<div class="panel" data-titleBGColor="#cccccc" data-bgColor="#eeeeee">
+<div class="panelheader">
+<strong>This is the title</strong>
+</div>
+<p>Panel content</p>
+</div>
+```