让一些AsciiDoc有一个像......一样的块。
----
this is a test
with *some* formatted/tabbed text in it
blah
----
...我希望文字显示为......
this is a test with some formatted/tabbed text in it blah
......这个词的含义是"有些"是大胆的。
答案 0 :(得分:3)
在AsciiDoc中,双----
行表示 ListingBlocks ,它只保留文本的某些格式方面(行和空格根据{{3}}(AsciiDoc documentation on Delimited Blocks [subs="quotes"]
,with the exception of using),格式化。
在分隔块中包含粗体格式的其他方法包括“Admonition Block”, ExampleBlock , OpenBlock , QuoteBlock < / strong>,和 SidebarBlock noted in your answer。
示例块:
**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
****
示例块输出:
答案 1 :(得分:1)
这是我想出的。这篇文章很有帮助......
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
----
除了在文本中添加格式(在本例中为粗体)之外,这还允许我保留文本中的格式/空格。
答案 2 :(得分:0)
据我所知,这只适用于docbook代码,您可以看到example here:
++++
<screen>hostname $ <userinput>date</userinput>
Sun Apr 1 12:34:56 GMT 1984</screen>
++++
当然,只有在您的引擎配置了screen
和userinput
的更正样式时,它才有效。