I'm facing a problem in indention of the text if the line contains a bullet point and carriage return
here is an example of the problem - the output is:
• my name is mahmoud
my name is mahmoud
... But it should be like this:
• my name is mahmoud
my name is mahmoud
i'm iterating on the lines using "for-each" tag and each time I find a bullet point, I make the tag
"block"
and if it's normal text i put the text in a "fo:inline" tag
Please help if you can.
My input xml looks like this:
<ProductDescription>
<list>
<item>
<map>
<entry key="Style" type="string">normal</entry>
<entry key="Text" type="string">mahmoud</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">listItem</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">bold</entry>
<entry key="Text" type="string">item2</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">normal</entry>
<entry key="Text" type="string"> item3</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">linebreak</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">listItem</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">bold</entry>
<entry key="Text" type="string">item3</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">normal</entry>
<entry key="Text" type="string"> item5</entry>
</map>
</item>
<item>
<map>
<entry key="Style" type="string">linebreak</entry>
</map>
</item>
</list>
</ProductDescription>
and the template is
<xsl:template name="BBCodeTemplate">
<xsl:choose>
<xsl:when test="entry[@key='Style']='linebreak'">
<fo:block padding-top="2pt" />
</xsl:when>
<xsl:when test="entry[@key='Style']='listItem'">
<fo:block padding-top="2pt" />
•
</xsl:when>
<xsl:when test="entry[@key='Style']='bold'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='italic'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-style="italic">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='underline'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" text-decoration="underline">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='bolditalic'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" font-style="italic">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='boldunderline'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" text-decoration="underline">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='italicunderline'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" text-decoration="underline" font-style="italic">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:when test="entry[@key='Style']='bolditalicunderline'">
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" text-decoration="underline" font-style="italic">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:when>
<xsl:otherwise>
<fo:inline xsl:use-attribute-sets="font.arial.8.normal.black">
<xsl:value-of select="entry[@key='Text']" />
</fo:inline>
</xsl:otherwise>
</xsl:choose>
</xsl:template>