블로그에 SyntaxHighlighter를 사용하여 블로그에서 사용하는 코드 조각을 형식화하고 있습니다. 나는 블로그 (http://concise-software.blogspot.com/2010/03/enabling-syntaxhighlighter-in-blogger.html)에 주어진 단계를 수행하지만, 그것은 "에 대한 브러시를 찾을 수 없습니다 : CSS"말을 내 블로거 게시물의 페이지로드에 오류가 발생코드 서식 SyntaxHighlighter for blogger 오류
1
A
답변
2
유래에 다른 스레드에서
있어 솔루션
을 - Formatting code snippets for blogging on Blogger이 문제에 대한 해결책을 찾고 다른 사람을 위해
0
당신이 > </머리 > 태그과 같이 당신의 < 머리 내에서 shBrushCss.js 라이브러리를 참조하고 있는지 확인하십시오
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js' type='text/javascript'/>
또한, http://oneqonea.blogspot.com/2012/04/how-do-i-add-syntax-highlighting-to-my.html
에서이 답변의 소스를 체크 아웃 할 수 그것의 정말 쉬운 (나는 커버는 몇 가지 간단한 단계에서 위에서 아래로의 Blogger 블로그에 구문 강조를 추가하는 것을 쓴 블로그를 따르십시오 스크린 샷).
0
블로거 블로그를 실행하는 경우 아래 설명 된 단계에 따라 SyntaxHighlighter를 통합 할 수 있습니다.
나는 정중하게 설명했습니다
<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/shThemeDefault.css' rel='stylesheet' type='text/css'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushBash.js'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPlain.js'/>
<script>
SyntaxHighlighter.config.bloggerMode = true;
SyntaxHighlighter.config.clipboardSwf = "http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf";
SyntaxHighlighter.all();
</script>
다음 난 내 기사에 쓴 :
<pre class="brush:bash">
ls -al | grep .jpg
</pre>
0
내가이 템플릿 헤드 섹션의 마지막에 쓴 here 참조.