用于blogspot上纯文本的SyntaxHighlighter

时间:2011-01-12 04:39:23

标签: syntax-highlighting blogspot

我只是按照以下链接在我的博客上设置syntaxhighlighter:

http://www.craftyfella.com/2010/01/syntax-highlighting-with-blogger-engine.html

但正如此link中所述,我尝试使用画笔plain,但我收到的错误为can't find brush for : plain

有什么建议吗?

2 个答案:

答案 0 :(得分:0)

我使用GIT hub在很多8个简单的步骤中完成这项工作,

1)浏览https://gist.github.com 2)添加要点说明(可选) 3)添加带扩展名的文件名(扩展名将用于添加语法高亮显示) 4)添加需要添加到博客帖子的代码段 5)单击底部的“创建公共要点”按钮 6)单击“嵌入”链接并复制生成的脚本

这一切都来自Gist方面。现在到Blogger,

  1. 将脚本粘贴到需要添加代码段的位置
  2. 确保选择“发布选项”下的“解释键入的HTML”选项 - >撰写设置
  3. 我在此blogspot

    中找到了此步骤

答案 1 :(得分:0)

还记得您是如何在页面HTML顶部添加文件的基本SyntaxHighlighter CSS文件和JavaScript刷子文件的吗?您找到的网站教程不会将画笔清单添加到其画笔列表中。您所要做的就是在其他刷子文件下添加此(http://agorbatchev.typepad.com/pub/sh/3_0_83/scripts/shBrushPlain.js)JavaScript文件,如下所示:



<link href='http://alexgorbatchev.com/pub/sh/current/styles/shCore.css' rel='stylesheet' type='text/css' />
<link href='http://alexgorbatchev.com/pub/sh/current/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' />
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js' type='text/javascript' />

<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js' type='text/javascript' />
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js' type='text/javascript' />
<script src='http://agorbatchev.typepad.com/pub/sh/3_0_83/scripts/shBrushXml.js' />
&#13;
&#13;
&#13; 基本上,只需在其他画笔下添加:

&#13;
&#13;
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPlain.js' type='text/javascript' />
&#13;
&#13;
&#13;