Files
Albert Krewinkel 51750d6d9a 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
2023-03-13 17:31:12 +01:00

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>