Skip to content

Commit

Permalink
Support nested UL past level 4 #2824 (#2853)
Browse files Browse the repository at this point in the history
Signed-off-by: Robert D Anderson <robander@us.ibm.com>
  • Loading branch information
Robert D Anderson committed Nov 30, 2017
1 parent 693a671 commit c96938f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/plugins/org.dita.pdf2/xsl/fo/lists.xsl
Expand Up @@ -68,7 +68,7 @@ See the accompanying LICENSE file for applicable license.
<fo:list-item-label xsl:use-attribute-sets="ul.li__label">
<fo:block xsl:use-attribute-sets="ul.li__label__content">
<xsl:call-template name="getVariable">
<xsl:with-param name="id" select="concat('Unordered List bullet ', $depth)"/>
<xsl:with-param name="id" select="concat('Unordered List bullet ', (($depth - 1) mod 4) + 1)"/>
</xsl:call-template>
</fo:block>
</fo:list-item-label>
Expand Down

0 comments on commit c96938f

Please sign in to comment.