列表中的代码片段并防止在 Creole wiki 中重新开始编号

问题描述 投票:0回答:1

我有以下代码:

# 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. 这里有一些说明。请参阅下面的代码片段。
def foo():
  返回栏
1. 更多后续说明请参见此处。为什么编号从1重新开始?
2. 最后说明。

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

list wiki code-snippets creole
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>

© www.soinside.com 2019 - 2024. All rights reserved.