Solutions | Services | Support | Search
For any markup that is not covered by PJML syntax, you can use HTML; you can freely mix the two in the same page.
The only restrictions are that block‐level HTML elements such as <div>, <table>, <pre>, <p>, etc. must be separated from the preceding and following content by blank lines and the start and end tags of the block should not be indented with tabs or spaces.
For example, to add an HTML table (rather than a PJML table) you can type something like the following:
This is plain text that could also contain PJML markup. It is followed by a blank line.
<table>
<tr>
<td>This text is in a table.</td>
</tr>
</table>
This is plain text that could also contain PJML markup. It is preceded by a blank line.
Span‐level HTML tags such as <span>, <cite>, or <del> can be used anywhere within a paragraph, list item or header. You can also use HTML tags instead of PJML formatting; if you prefer to use HTML <a> or <img> tags instead of PJML’s link or image syntax you can.