Подсветка синтаксиса code через плагин SyntaxHighlighter для uCoz
1 2 3 4 5 6 7 8 9 10 11 |
<script type="text/javascript" src="/js/shCore.js"></script> <script type="text/javascript" src="/js/shBrushJScript.js"></script> <script type="text/javascript" src="/js/codes.js"></script> <style type="text/css"> @import url(/css/shCore.css); @import url(/css/shThemeDefault.css); </style> <style> .syntaxhighlighter {padding:0px; width:100%; position:relative;} </style> |
2#: Следующий код на этих же страницах в самый низ после /body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<script type="text/javascript"> jQuery('div.bbCodeBlock').each(function(){ code = jQuery(this).find('div.codeMessage').html(); code = code.replace(/<br>/ig,'\r\n'); code = code.replace(/<!--uzc-->/ig,''); code = code.replace(/<!--\/uzc-->/ig,''); jQuery(this).replaceWith('<' + 'pre class="brush: js; first-line: 1;ruler: true; option: false;">'+code+'</' + 'pre>'); }); </script> <script type="text/javascript"> //<![CDATA[ SyntaxHighlighter.all(); //]]> </script> |