Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

JEMH is able to provide the facility to render an HTML mail to Wiki mark up in order to aid the visual aspects of the mail. However, while the conversion takes place, there are certain aspects which can be valid in HTML but are not valid in Wiki mark up.

Colouring

Colouring has only implemented within the following elements:

  • <p> tags
  • <font> tags
  • <li> tags

Therefore, this is restricting you from using colours inside of an containers i.e. <div> tags. The reason being if a <div> tag contains colouring and a child element within the <div> i.e. <p> also contains colouring, this will result in an invalid Wiki mark up. Jira does not allow nested colours to be present. Additionally, this can also potentially impact other elements i.e. Bold or Italic. 

For example

HTML

<div style="color:blue">
	<p>This should be blue</p>
    <p style="color:red">This should be red</p>
</div>

Wiki mark up conversion

{color:blue}
This should be blue
{color:red}
This should be red
{color}
{color}

In Jira

  • No labels