我正在使用 AsciiDoctor 创建 HTML 手册。为了保持现有链接有效,我需要在同一个标题中使用多个锚点。
基本上我想要这个输出:
<a id="historic1"></a>
<a id="historic2"></a>
<h2 id="current">Caption</h2>
虽然可以像这样创建多个内联锚点
Inline [[historic1]] [[historic2]] [[current]] Anchor
Inline <a id="historic1"></a> <a id="historic2"></a> <a id="current"></a> Anchor
看起来像块前面的附加锚宏被简单地吞噬了:
[[historic1]]
[[historic2]]
[[current]]
== Caption
<h2 id="current">Caption</h2>
那么我有哪些选择可以在一个块前面有多个锚点?