Syntax Highlighter
Digunakan untuk menuliskan baris kode HTML dalam postingan
<!DOCTYPE html>
<html dir='ltr' lang='en'>
<head>
<title>Sample Page</title>
</head>
<!--[ <body> open ]-->
<body>
<p>Sample content here!</p>
</body>
<!--[ </body> close ]-->
</html>
Anda juga bisa menuliskan kode <html> dalam paragraf seperti ini: <p>code</p>Untuk menuliskan kode HTML, CSS, atau JS dipostingan, format penulisan;
<pre class='html'><code>Your_code_here</code></pre>
Penulisan syntax untuk format CSS;
<pre class='css'><code>Your_CSS_code_here</code></pre>
Penulisan syntax untuk format JS;
<pre class='js'><code>Your_JS_code_here</code></pre>
Untuk menonaktifkan fungsi scroll gunakan tag di bawah ini;
<pre><code style='white-space:pre-wrap'>Your_JS_code_here</code></pre>
Join the conversation