4

虽然Wikis 和 Wikipedia仍位于第 51 区,但我想问这个关于使用 Creole wiki 标记的问题。我有以下代码:

# Initial instructions here.
# Some instructions here. See code snippet below.
{{{
#!python

def foo():
  return bar
}}}
# More instructions here. Why does the numbering restart at 1?
# Final instructions.

解析该代码后,我会得到以下信息:

1. 这里的初始说明。
2. 这里有一些说明。请参阅下面的代码片段。
定义 foo():
  返回栏
1. 更多继续说明在这里。为什么编号从 1 重新开始?
2. 最后的说明。

问题:如何在列表中嵌入代码片段,以使代码片段下方的列表项不会在 1 处重新开始?

4

1 回答 1

0

内联预格式化文本在列表中起作用。您可以通过分隔每一行来使用它来近似块预格式化。这不是一个很好的解决方案,但它可能适用于某些情况。

# Initial instructions here.
# Some instructions here. See code snippet below.
** {{{#!python}}}
** {{{}}}
** {{{def foo():}}}
** {{{  return bar}}}
# More instructions here. Why does the numbering restart at 1?
# Final instructions.

产量:

<ol>
	<li>Initial instructions here.</li>
	<li>Some instructions here. See code snippet below.
	<ul>
		<li><tt>#!python</tt></li>
		<li><tt></tt></li>
		<li><tt>def foo():</tt></li>
		<li><tt>  return bar</tt></li>
	</ul></li>
	<li>More instructions here. Why does the numbering restart at 1?</li>
	<li>Final instructions.</li>
</ol>

于 2016-06-18T20:05:51.160 回答