【过时】博客园中使用syntaxhighlighter插件(图文详细版本)

简介:

1.上SyntaxHighlighter官网下载引用文件,并上传到博客园 http://alexgorbatchev.com/SyntaxHighlighter/download/

2.文件,上传

 

3.记录一些两个文件的url地址 

 4.设置,在页首HTML代码中添加上面两个地址的引用,具体的看图

5.编辑器正常使用,如果想使用 syntaxhighlighter插件 ,就:选择编辑html代码=>添加<pre></pre>标签对,<pre>添加属性:'class="brush: 引用代码使用的语言(具体例子看下图)

6.具体案例:

eg:<pre class="brush: js;"> 

1
2
3
4
function  helloSyntaxHighlighter()
{
     return  "hi!" ;
}

 eg:<pre class="brush: c-sharp;">

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Security" , "CA2100:检查 SQL 查询是否存在安全漏洞" )]
         public  static  DataTable ExcelToDataTable( string  strExcelFileName, string  strSheetName)
         {
             string  strConn = "Provider=Microsoft.Jet.OLEDB.4.0;"  + "Data Source="  + strExcelFileName + ";"  +
                              "Extended Properties=Excel 5.0;" ;
             string  strExcel = string .Format( "select * from [{0}$]" , strSheetName);
             DataSet ds = new  DataSet();
             using  (OleDbConnection conn = new  OleDbConnection(strConn))
             {
                 conn.Open();
                 OleDbDataAdapter adapter = new  OleDbDataAdapter(strExcel, strConn);
                 adapter.Fill(ds, strSheetName);
                 conn.Close();
                 return  ds.Tables[strSheetName];
             }
         }

发完我才发现,,,博客园现在也已经内置了。。。。。看看吧,当涨个经验 

博客园内置的编辑器:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Security" "CA2100:检查 SQL 查询是否存在安全漏洞" )]
         public  static  DataTable ExcelToDataTable( string  strExcelFileName,  string  strSheetName)
         {
             string  strConn =  "Provider=Microsoft.Jet.OLEDB.4.0;"  "Data Source="  + strExcelFileName +  ";"  +
                              "Extended Properties=Excel 5.0;" ;
             string  strExcel =  string .Format( "select * from [{0}$]" , strSheetName);
             DataSet ds =  new  DataSet();
             using  (OleDbConnection conn =  new  OleDbConnection(strConn))
             {
                 conn.Open();
                 OleDbDataAdapter adapter =  new  OleDbDataAdapter(strExcel, strConn);
                 adapter.Fill(ds, strSheetName);
                 conn.Close();
                 return  ds.Tables[strSheetName];
             }
         }

  


本文转自毒逆天博客园博客,原文链接:http://www.cnblogs.com/dunitian/p/4828258.html,如需转载请自行联系原作者


相关文章
|
4月前
|
PHP SEO
WordPress博客每日定时发布 每天60秒读懂世界源码
WordPress博客每日定时发布 每天60秒读懂世界源码
79 0
WordPress博客每日定时发布 每天60秒读懂世界源码
【博客项目】—用户删除功能(十二)
【博客项目】—用户删除功能(十二)
|
JavaScript Android开发 开发者
从0到1,教你如何使用Tasker+Autojs实现自动打卡功能
从0到1,教你如何使用Tasker+Autojs实现自动打卡功能
1727 0
从0到1,教你如何使用Tasker+Autojs实现自动打卡功能
号外!Rmarkdown教程全网发布
寒假期间花了大量时间(100h+)学习和制作了Rmarkdown入门教程,昨晚终于录制和剪辑完毕
166 0
|
数据采集 搜索推荐 Shell
Hexo博客功能扩展 - 菜单,SEO以及作者信息
Hexo博客功能扩展 - 菜单,SEO以及作者信息
222 0
|
缓存 资源调度 前端开发
hexo 博客支持PWA和压缩博文
目标网站 https://blog.rmiao.top/ PWA yarn add hexo-offline 然后在root config.yml里新增 # offline config passed to sw-precache.
1902 0

相关实验场景

更多