| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- $(function(){
- hljs.initHighlightingOnLoad();
-
- var EditormdView = editormd.markdownToHTML("page_md_content", {
- htmlDecode : "style,script,iframe", // you can filter tags decode
- emoji : true,
- taskList : true,
- tex : true, // 默认不解析
- flowChart : true, // 默认不解析
- sequenceDiagram : true, // 默认不解析
- });
- //为所有table标签添加bootstap支持的表格类
- $("table").addClass("table table-bordered table-hover");
- $.each($('table'), function() {
- $(this).prop('outerHTML', '<div style="width: 100%;overflow-x: auto;">'+$(this).prop('outerHTML')+'</div>');
- });
- //不是本项目的超链接都在新窗口打开
- $('a[href^="http"]').each(function() {
- $(this).attr('target', '_blank');
- $(this).click(function(){
- var target_url = $(this).attr("href") ;
- if (target_url.indexOf(window.top.location.host + window.top.location.pathname) > -1 ){
- window.top.location.href = target_url;
- return false;
- }
-
- });
- });
- if (!isMobile()) {
- $("th").css("min-width","77px");
- };
- $("table thead tr").css({"background-color":"#08c","color":"#fff"});
- $("table tr").each(function(){
- if($(this).find("td").eq(1).html()=="object" || $(this).find("td").eq(1).html()=="array[object]")
- {
- $(this).css({"background-color":"#99CC99","color":"#000"});
- }
- });
- })
|