在adoc文件中,我定义了一个章节标题,如:
== [big-number]#2064# Das Spiele-Labor
对于转换为
的HTML<span class="big-number">2064</span>
对于使用asciidoctor-epub转换的epub-Version,显然省略了该类。 converter.rb中的代码行:
<h1 class="chapter-title">#{title_upper}#{subtitle ? %[ <small class="subtitle">#{subtitle_formatted_upper}</small>] : nil}</h1>
(在/ var / lib中/宝石/ 1.9.1 /宝石/ asciidoctor-epub3-1.5.0.alpha.7.dev / LIB / asciidoctor-EPUB3 / converter.rb)
如何将课程信息提供给章节标题以特殊方式格式化第一个数字?
还是有另一种解决方法吗? (章节标题的第一个数字应该很大,CSS没有'第一个字'属性)