Page 1 of 1

Export to xml

Posted: Tue Jun 26, 2012 1:56 pm
by none
Question: Should XML export convert lists (bullet and numbered) using HTML tags?

Re: Export to xml

Posted: Tue Jun 26, 2012 2:08 pm
by CintaNotes Developer
Hi,

short answer: yes.
Lists are part of text formatting, and text formatting is represented in XML by (X)HTML tags.

Re: Export to xml

Posted: Wed Jun 27, 2012 4:27 am
by none
Thanks Alex

Below is exported XML with various formatting:

<?xml version="1.0"?>
<notebook version="1622">
<note title="" created="" modified="" source="" link="" tags=""><![CDATA[<b>Bold</b>
<i>Italic</i>
<u>Underline</u>
<strike>Strikeout</strike>
<em>Highlight</em>
<pre>Monospace</pre>
• item
1. item
]]></note>
</notebook>

Would it be possible to have the lists exported as follows?

<ul>
<li>item</li>
</ul>
<ol>
<li>item</li>
</ol>

Re: Export to xml

Posted: Wed Jun 27, 2012 4:54 am
by CintaNotes Developer
I see what you mean now, thanks.
We'll implement that in the version that comes after 1.7.

Re: Export to xml

Posted: Wed Jun 27, 2012 5:17 am
by none
Thanks for your excellent software and terrific support! Keep up the good work!