Mungkin anda sering bertanya-tanya kok di blog-blog atau di website-website yang lain bisa menampilkan Source Code pada Blog mereka dengan sangat rapi dan tidak berantakan? (Sangat Rapi? Tidak Berantakan? jangan di tanyakan penulisan ini).
jawabannya simpel, mereka hanya menyisipkan plugin pada blog mereka. sebagai contoh Sintaxhighligher
Cara membuatnya sangatlah mudah anda hanya perlu mengedit HTML Blog anda
Pertama, Edit Template Blog anda lalu cari code </head> setelah itu sisipkan code dibawah ini tepat di atas code </head>
Langkah kedua saat penulisan Artikel pada Blog anda pastikan anda menyisipkan Source code anda diantara Tag dibawah ini dalam mode HTML:
<pre class="brush:JenisKode">SourceCode</pre>
sebagai contoh :
<pre class="brush:vbnet">
'menghitung 1 tambah 1
dim a = 1+1
print a
</pre>
hasilnya akan sebagai berikut:
Jenis-Jenis Kodenya bisa anda lihat dibawah ini:
Simpel saja kan?
Apabila Artikel ini masih kurang jelas silahkan kunjungi website Developmentnya
jawabannya simpel, mereka hanya menyisipkan plugin pada blog mereka. sebagai contoh Sintaxhighligher
Cara membuatnya sangatlah mudah anda hanya perlu mengedit HTML Blog anda
Pertama, Edit Template Blog anda lalu cari code </head> setelah itu sisipkan code dibawah ini tepat di atas code </head>
<!--SYNTAX HIGHLIGHTER BEGINS--> <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' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCpp.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCSharp.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushRuby.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushVb.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js' type='text/javascript'></script> <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPerl.js' type='text/javascript'></script> <script language='javascript'> SyntaxHighlighter.config.bloggerMode = true; SyntaxHighlighter.config.clipboardSwf = 'http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf'; SyntaxHighlighter.all(); </script> <!--SYNTAX HIGHLIGHTER ENDS-->
Langkah kedua saat penulisan Artikel pada Blog anda pastikan anda menyisipkan Source code anda diantara Tag dibawah ini dalam mode HTML:
<pre class="brush:JenisKode">SourceCode</pre>
sebagai contoh :
<pre class="brush:vbnet">
'menghitung 1 tambah 1
dim a = 1+1
print a
</pre>
hasilnya akan sebagai berikut:
'menghitung 1 tambah 1 dim a = 1+1 print a
Jenis-Jenis Kodenya bisa anda lihat dibawah ini:
Jenis Kode | Kode Alias | File name | ||||||
---|---|---|---|---|---|---|---|---|
ActionScript3 | as3, actionscript3 | shBrushAS3.js | ||||||
Bash/shell | bash, shell | shBrushBash.js | ||||||
ColdFusion | cf, coldfusion | shBrushColdFusion.js | ||||||
C# | c-sharp, csharp | shBrushCSharp.js | ||||||
C++ | cpp, c | shBrushCpp.js | ||||||
CSS | css | shBrushCss.js | ||||||
Delphi | delphi, pas, pascal | shBrushDelphi.js | ||||||
Diff | diff, patch | shBrushDiff.js | ||||||
Erlang | erl, erlang | shBrushErlang.js | ||||||
Groovy | groovy | shBrushGroovy.js | ||||||
JavaScript | js, jscript, javascript | shBrushJScript.js | ||||||
Java | java | shBrushJava.js | ||||||
JavaFX | jfx, javafx | shBrushJavaFX.js | ||||||
Perl | perl, pl | shBrushPerl.js | ||||||
PHP | php | shBrushPhp.js | ||||||
Plain Text | plain, text | shBrushPlain.js | ||||||
PowerShell | ps, powershell | shBrushPowerShell.js | ||||||
Python | py, python | shBrushPython.js | ||||||
Ruby | rails, ror, ruby | shBrushRuby.js | ||||||
Scala | scala | shBrushScala.js | ||||||
SQL | sql | shBrushSql.js | ||||||
Visual Basic | vb, vbnet | shBrushVb.js | ||||||
XML | xml, xhtml, xslt, html, xhtml | shBrushXml.js |
Simpel saja kan?
Apabila Artikel ini masih kurang jelas silahkan kunjungi website Developmentnya