使用Scribefire在博客中插入语法高亮

时间:2021-11-26 22:57:52

效果如下,

文字1

int cool
void main()
{
cout<<"hello world!"<<endl
}

文字2

经过一番折腾,终于搞定了博客里面插入语法高亮的问题,

由于最近要在Ubuntu下面干活,一时间找不到顺手的博客软件。

搜索了一下发现Scribefire这个浏览器插件评价不错,于是就决定试试。

不过,这个插件插入语法高亮不是很方便,要自己编辑html文件,具体方法如下,

  1. 打开Scribefire,编辑文字
  2. 想要插入语法高亮时,点击Post Content界面右上角的Edit Code (HTML and Markdown),这就进入了html的编辑页面
  3. 在html中插入如下内容

<pre class="brush:cpp;gutter:true;">

int cool

void main()

{

    cout&lt;&lt;"hello world!"&lt;&lt;endl

}

</pre>

这就是我们需要的语法高亮代码。

4. 继续插入文字

如果想插入多块代码,重复上面步骤就可以了。

虽然麻烦,好歹是实现了。。。

如果大家有更好的方法,欢迎交流!