How to use Syntax highlighter in ASP.NET MVC
By FoxLearn 2/18/2024 1:37:43 AM 531
Prism is a lightweight, extensible syntax highlighter, built with modern web standards in mind. It’s used in thousands of websites, including some of those you visit daily.
For more details, you can visit website https://prismjs.com/
To install Prism you should download prism.css and prism.js, then add to your website as below
<!DOCTYPE html> <html> <head> <link href="themes/prism.css" rel="stylesheet" /> </head> <body> <script src="prism.js"></script> </body> </html>
You can add a simple css code as below. In this forum, i'm using Prism to highlight the syntax
The second way, i would like to introduce to you is highlight.js. This is useful for syntax highlighting for the web site. You can download it directly at https://highlightjs.org/
<link rel="stylesheet" href="/path/to/styles/default.css"> <script src="/path/to/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script>
Add the snippet above to your website to initialize the highlighter syntax. This will find and highlight the code inside of <pre><code> tags. It will automatically detect the language. If automatic detection doesn’t work for you, you can specify the language in the class attribute.
<pre><code class="html">...</code></pre>
- How to securely reverse-proxy ASP.NET Core
- How to Retrieve Client IP in ASP.NET Core Behind a Reverse Proxy
- Only one parameter per action may be bound from body in ASP.NET Core
- The request matched multiple endpoints in ASP.NET Core
- How to Create a custom model validation attribute in ASP.NET Core
- How to disable ModelStateInvalidFilter in ASP.NET Core
- How to fix LoginPath not working in ASP.NET Core
- Synchronous operations are disallowed