如何在 Asciidoctor 中隐藏章节标题?

How to hide section title in Asciidoctor?

我已经搜索过了,但我找不到在主页上隐藏章节标题并且只显示在 Table of Contents (:toc:) 中的方法。由此可见screenshot、HomeTest是adoc文件的外部链接。我只想将它保留在 Table of Contents.

我知道可以使用 [discrete] 关键字隐藏 Table of Contents 中的章节标题,但是否可以反过来做?

这是screenshot的adoc文件:

:toc: left
:source-highlighter: highlight.js
:toclevels: 3
:sectlinks:

== <<Home.adoc#, Home>>

== <<Test.adoc#, Test>>

== Title 1

=== Title 1.1

谢谢!

如果您将章节标题设为文档标题(一个等号),则可以通过添加 notitle 文档属性来隐藏它。

= Document Title
:notitle:
:toc:

== Section A

== Section B

目前无法隐藏常规部分标题。