Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of highlighting the code on the page by using highlight.js in react

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Today, I will talk to you about using highlight.js to highlight the code on the page in react. Many people may not know much about it. In order to make you understand better, the editor has summarized the following content for you. I hope you can get something according to this article.

The syntax highlighting and highlight.js official documents are automatically added to the code elements in the HTML of the article body through the highlight.js library.

Download highlight.js

Npm i highlight.js

Import highlight.js

Import hljs from 'highlight.js'import' highlight.js/styles/vs2015.css' uses highlight.js useEffect (() = > {/ / configure highlight.js hljs.configure ({/ / ignore the unescaped HTML character ignoreUnescapedHTML: true}) / / to get all the code tags in the content const codes = document.querySelectorAll ('pre code') codes.forEach ((el) = > {/ / Let code highlight hljs.highlightElement (el as HTMLElement)})} [])

Instance code

Import hljs from 'highlight.js'import' highlight.js/styles/vs2015.css'import {useEffect} from 'react'export default function Question () {useEffect (() = > {/ / configure highlight.js hljs.configure ({/ / ignore the unescaped HTML character ignoreUnescapedHTML: true}) / / get all the code tags const codes = document.querySelectorAll (' .dg-html pre code') in the content Codes.forEach ((el) = > {/ / Let code highlight hljs.highlightElement (el as HTMLElement)})} []) const content = `console.log (abc) console.log (abc) nihoa console.log (abc) Xxx.forEach (item= > {console.log (1)}) `return (Question)} after reading the above content, do you have any further understanding of how to use highlight.js to highlight the code on the page in react? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report