brushed created JSPWIKI-1101:
--------------------------------
Summary: Improve rendering of {{{inline preformatted text}}}
Key: JSPWIKI-1101
URL: https://issues.apache.org/jira/browse/JSPWIKI-1101
Project: JSPWiki
Issue Type: Improvement
Reporter: brushed
Currently an inline block with triple curly braces is using hardcoded html
styles.
Better is to use a css class for styling.
Example
{code:none}
This {{{inline}}} text
{code}
is rendered as
{code:html}
<span style="font-family:monospace; white-space:pre;">inline</span>
{code}
Should be changed to:
{code:html}
<span class="inline-code">inline</span>
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)