汇合目录

时间:2019-02-11 07:15:01

标签: html css confluence

我目前正在尝试在 Confluence 中自动生成目录。我的问题是没有显示页面数。

我能够自动为章节编号。这将添加到目录中,但仍缺少页面数。

h2:before {
    content: counter(H2) " ";
    counter-increment: H2;
}

h2 {
    counter-reset: H3;
    font-size: 13pt;
}

h3:before {
    content: counter(H2) "." counter(H3) " ";
    counter-increment:H3;
}

h3 {
    counter-reset: H4;
    font-size: 11pt;
}

<!-- HTML -->
<h2> ABC </h2>
<h2> ABCD </h2>
<h3> ANNCD </h3>

目录将被编号并显示页数。数字和章节之间的空格应填充点。

任何人都知道,我该怎么办?

0 个答案:

没有答案
相关问题