What steps will reproduce the problem?
1. Create a document in Pencil
2. Add a note to a page
3. Export to ODT using the default template
4. Open the generated document in LibreOffice
What is the expected output? What do you see instead?
Notes are supposed to be visible in the ODT document.
What version of the product are you using? On what operating system?
Pencil 1.3.4 on Debian Linux
Please provide any additional information below.
Tis is cause by an error in this content.xslt :
http://evoluspencil.googlecode.com/svn/branches/pencil-2.0/app/content/pencil/te
mplates/ODT/default.ODT/content.xslt :
<text:section text:name="NoteSection">
<xsl:apply-templates select="p:Note/node()"/>
<text:p></text:p>
</text:section>
Should be :
<text:section text:name="NoteSection">
<text:p>
<xsl:apply-templates select="p:Note/node()"/>
</text:p>
</text:section>
I attach a .patch
Original issue reported on code.google.com by raphael....@gmail.com on 9 May 2012 at 9:19
Original issue reported on code.google.com by
raphael....@gmail.com
on 9 May 2012 at 9:19Attachments: