我无法在任何地方找到答案。
我正在处理一个内部 Wiki 条目。我有想要包含在 <source> 标记中的代码。因为 <source> 标记在项目符号列表中,所以我希望它缩进。
这是我的问题:我的代码包含多行,我想在代码示例中插入换行符。但无论出于何种原因,Wiki 标记都不允许我这样做。
当我尝试插入回车时,新行的 <source> 格式会消失。
当我尝试插入 <br /> 标签时,标签实际上会显示出来;它不会打破界限!
到目前为止,我发现的唯一解决方法是这样的——这不是我想要的!!!
:<source lang="sql">select * from table1</source>
:<source lang="sql">select * from table2</source>
不!!! 我想要的是这样的:
:<source lang="sql">select * from table1
select * from table2</source>
--note the line break for the second SELECT statement!
--also note the ':' that indicates that I want it indented!
--when I try it this way, the <source> formatting for the second line disappears!
--I also tried adding the ':' to the second line -- that doesn't work, either!
这个我也试过了,还是不行!
:<source lang="sql">select * from table1<br />select * from table2</source>
--when I try this, the <br /> tag actually shows up; it does NOT break the line!
换句话说,我希望两个单独的行都出现在同一个缩进的 <source> 标记中。
我怎样才能让它工作?