mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 11:57:16 +00:00
51750d6d9a
The title of a jira panel is added in a nested div as the first element of the div panel. Fixes: #8681
338 B
338 B
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>