Postingan lainnya
[ask] syntax pada halaman web
halo semua... saya ingin membuat catatan untuk setiap tutorial yang saya pelajari tutorial tersebut akan saya buat dalam bentuk halaman web dan pdf ... bagaimana caranya untuk menuliskan/menampilkan syntax/coding pada halaman web agar tampak lebih rapih dan enak dilihat (seperti pada halaman web pada umumnya)
terimakasih
salam, wahyu
0
4 Jawaban:
halaman tutorial yang akan saya buat offline bagaimana cara menggunakannya?
0
bisa ko, di download aja source nya di http://alexgorbatchev.com/SyntaxHighlighter/download/
contoh penggunaan bisa diliat di http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html
contoh :
<!-- Include required JS files -->
<script type="text/javascript" src="js/shCore.js"></script>
<!--
At least one brush, here we choose JS. You need to include a brush for every
language you want to highlight
-->
<script type="text/javascript" src="css/shBrushJScript.js"></script>
<!-- Include *at least* the core style and default theme -->
<link href="css/shCore.css" rel="stylesheet" type="text/css" />
<link href="css/shThemeDefault.css" rel="stylesheet" type="text/css" />
<!-- isi sintax/ coding di sini dan tipe scriptnya 'bursh: js' , js/html/ dll -->
<pre class="brush: js">
// isi script
function foo()
{
}
</pre>
<!-- Finally, to actually run the highlighter, you need to include this JS on your page -->
<script type="text/javascript">
SyntaxHighlighter.all()
</script>
0