有一些 AsciiDoc 有一个像...这样的块
----
this is a test
with *some* formatted/tabbed text in it
blah
----
...我希望文本显示为...
这是一个测验 里面有一些格式化/标签文本 废话
...“一些”这个词是粗体的。
有一些 AsciiDoc 有一个像...这样的块
----
this is a test
with *some* formatted/tabbed text in it
blah
----
...我希望文本显示为...
这是一个测验 里面有一些格式化/标签文本 废话
...“一些”这个词是粗体的。
在 AsciiDoc 中,双线----
表示ListingBlocks,它只保留文本的某些格式方面(行和空白格式),根据有关分隔块的 AsciiDoc 文档(除了 using [subs="quotes"]
,正如您在回答中指出的那样)。
在分隔块中包含粗体格式的其他方法包括“警告块”、ExampleBlock、OpenBlock、QuoteBlock和SidebarBlock 选项。
示例块:
**Admonition Block:**
[NOTE]
====
here *is* my text
====
**Example Block:**
====
here *is* my text
====
**Open Block:**
--
here *is* my text
--
**Quote Block:**
[quote, quote author]
____
here *is* my text
____
**Sidebar Block:**
****
here *is* my text
****
示例块输出:
这是我想出的。这篇文章很有帮助...
http://www.methods.co.nz/asciidoc/faq.html#_how_can_i_format_text_inside_a_listing_block
[subs="quotes"]
----
this is a test
with *some* formatted/tabbed text in it
blah
----
除了将格式(在本例中为粗体)添加到文本之外,这还允许我保留文本中的格式/空白。
据我所知,这仅适用于 docbook 代码,您可以在此处查看示例:
++++
<screen>hostname $ <userinput>date</userinput>
Sun Apr 1 12:34:56 GMT 1984</screen>
++++
当然,只有当您的引擎配置了 和 的校正样式时,它才会screen
起作用userinput
。