是否可以排除/抑制在asciidoc/asciidoctor中生成的时间戳?是“最后一次更新.”页底的页脚。
我正试着用asciidoctor来做这个。
发布于 2017-01-21 09:23:32
可以重新定义生成“最后.”的模板。消息。创建一个具有以下内容的新文件nofooter.conf:
[footer-text]
<single space on this line>然后使用以下命令生成HTML:
asciidoc -f nofooter.conf file.txt它应该产生空的<div id="footer-text"></div>。
UPD. For asciidoctor可以指定属性nofooter
asciidoctor -a nofooter file.txt发布于 2021-12-23 15:10:53
https://stackoverflow.com/questions/41777386
复制相似问题