mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-30 17:59:17 +08:00
51750d6d9a
The title of a jira panel is added in a nested div as the first element of the div panel. Fixes: #8681
15 lines
338 B
Markdown
15 lines
338 B
Markdown
# 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>
|
|
```
|