Tips for using iPublish

iNotePad is not an HTML editor, so don't expect too much from the iPublish feature!

On Mac OS X 10.4+, iPublish uses Mac OS X WebKit to convert your RTF data to HTML data.

Here are some tips for making the most out of iPublish:

Raw html code

Example 1:

Some styled text <html>&frac12;</html> some styled text

will be published as

<p><b>Some styled text </b>&frac12;<i> some styled text</i></p>

Example 2:

<html><p>Here's a list:</p>
   <ul><li>an item</li>
   <li>another item</li>
   </ul>
</html>

will be published as

<p>Here's a list:</p>
   <ul><li>an item</li>
   <li>another item</li>
   </ul>