难以在Joomla文章中插入代码片段

时间:2012-12-23 15:14:55

标签: php joomla content-management-system joomla2.5 codehighlighter

我正在使用Joomla 2.5.8和JCE编辑器。

我正在尝试使用Code Highlight gesci插件在我的文章中插入代码段...

我这样做:

{code}
INSTRUCTION 1;
INSTRUCTION 2;
INSTRUCTION 3; 
{/code}

问题是:最终的结果是它将我的代码放在Code Highlight gesci插件中,但是它们都在同一行,如下所示:

说明1;说明2;说明3;

我该如何解决这个问题?

感谢您的关注

安德烈

1 个答案:

答案 0 :(得分:0)

<pre xml:php> - will highlight php formatted code
<pre xml:css lines="true"> - will highlight css formatted code, with line numbers.
还有一件事。由于<pre>标记按原样显示内容,因此您可能希望跳过<pre>标记之后和</pre>标记之前的新行,如下所示:

<pre xml:php lines="true"><?php
// Here are a few lines of Joomla code
defined('_JEXEC') or die;
function getBaseURI() {
  return JURI::base();
}
?></pre>

Read more

geshi-doc