Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support nested UL past level 4 #2824 #2853

Merged
merged 1 commit into from Nov 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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