How to create html source code with syntax highlighting [no library]
<script type='text/javascript'>
//<![CDATA[
function syntaxHighlights() {
var ca = document.getElementsByClassName("ediCm");
for(var i=0; i < ca.length; i++){
var data = ca[i].innerHTML;
data = data.replace(/"(.*?)"/g, '<span class="code-str">"$1"</span>');
data = data.replace(/<(.*?)>/g, '<span class="code-elem"><$1></span>');
data = data.replace(/\/\* (.*?) \*\//g, '<span class="code-comment">/* $1 */</span>');
data = data.replace(/function (.*?)/g, '<span class="code-jsvar">function $1</span>');
data = data.replace(/ :(.*?)/g, '<span class="code-cssref"> :$1class="code-elem"></span>');
data = data.replace(/'(.*?)'/g, '<span class="code-str">'$1'</span>');
ca[i].innerHTML = data;
}
}
window.addEventListener("load", syntaxHighlights);
//]]>
</script>
<style>
.code-str { color :#a11}.code-elem{ color :#170; }.code-comment { color :#236e25;}.code-jsvar{color :#05a;}.code-cssref{color:#a11;}
.code :focus-visible{outline:0}
</style>
Exemple
<style>
.code-str { color :#0000ee;background :white}
</style>
<!--comment-->
<h2>header </h2>
<script>
function syntaxHighlights() {
/* Create a string object variable */
var name = 'Adam';
</script>
<h2 id="h21" class="code-str" >Welcome Visitor</h2>
<p>When in Rome, do as the Romans do.</p>
![How to create html source code with syntax highlighting [no library] How to create html source code with syntax highlighting [no library] ,](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEju0G862pyc6MfiC5yeD0V300PDFk8L_VXrKAtiSYibDkp-b747P8LXGY45m2P6ZjlPDxN-Yz7gn2Uad5OYujNsDCO9tojwNqNShIFuPBG0owv6T7q9X72lGwstBeWlp8nky8a_tkJGriBG0phkJBH1gFZEiUzz8Snc_vJfmVIiwZs6hb4it0IEqSRyXL4/s854/manjmnt.webp)
© 2025 Manajmnt code
Comments
Post a Comment
message