Differences From Artifact [35da212f52]:
- File ext/toc.lua — part of check-in [e51980e07a] at 2021-12-27 05:51:11 on branch trunk — more tweaks, fixes, and additions than i can keep track of. major additions to documentation. spiffed up html renderer's footnotes and TOC dramatically (user: lexi, size: 7629) [annotate] [blame] [check-ins using]
To Artifact [e8a2cf6308]:
- File ext/toc.lua — part of check-in [9215a9c850] at 2021-12-27 13:20:36 on branch trunk — add beginnings of groff renderer, document more planned syntaxes (user: lexi, size: 7716) [annotate] [blame] [check-ins using]
82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
}
ol.toc > ol > li {
list-style: decimal;
}
ol.toc > li > ol > li > ol > li {
list-style: enclosed;
}
}
]]
ct.ext.install {
id = 'toc';
desc = 'provides a table of contents for HTML renderer plus generic fallback';
version = ss.version {0,1; 'devel'};
|
> > > |
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
}
ol.toc > ol > li {
list-style: decimal;
}
ol.toc > li > ol > li > ol > li {
list-style: enclosed;
}
ol.toc > li > ol > li > ol > li > ol > li {
list-style: lower-roman;
}
}
]]
ct.ext.install {
id = 'toc';
desc = 'provides a table of contents for HTML renderer plus generic fallback';
version = ss.version {0,1; 'devel'};
|