Issue
I'm doing my portfolio and I want to create a box like this:
A box that colorize the text with a programming language. Is there any library to do this?
Solution
You can use react-highlight.js
:
import Highlight from 'react-highlight.js';
<Highlight language={language}>
{content}
</Highlight>
<link rel='stylesheet' href='https://highlightjs.org/static/demo/styles/railscasts.css'/>
Answered By - Nick McCurdy
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.