Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
react-syntax-highlighter
Advanced tools
syntax highlighting component for react with prismjs or highlightjs ast using inline styles
The react-syntax-highlighter package is a lightweight syntax highlighter for React applications. It provides a simple and easy way to display code snippets with syntax highlighting in your React projects. It supports a wide range of programming languages and comes with a variety of customizable styles.
Syntax Highlighting
This feature allows you to highlight syntax of code snippets in your React components. You can specify the language and the style theme for the highlighting.
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { dark } from 'react-syntax-highlighter/dist/esm/styles/prism';
const Component = () => {
const codeString = '(num) => num + 1';
return (
<SyntaxHighlighter language='javascript' style={dark}>
{codeString}
</SyntaxHighlighter>
);
};
Custom Styles
This feature allows you to customize the styles applied to the code block. You can modify existing styles or create your own.
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { style } from 'react-syntax-highlighter/dist/esm/styles/prism';
const customStyle = {
...style,
lineHeight: '1.5',
margin: '20px',
borderRadius: '10px'
};
const Component = () => {
const codeString = 'const addOne = (num) => num + 1;';
return (
<SyntaxHighlighter language='javascript' style={customStyle}>
{codeString}
</SyntaxHighlighter>
);
};
Inline Code Highlighting
This feature allows you to highlight inline code snippets within a block of text, which can be useful for tutorials, documentation, or any application where inline code highlighting is needed.
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { dark } from 'react-syntax-highlighter/dist/esm/styles/prism';
const Component = () => {
const codeString = 'num => num + 1';
return (
<p>
This is an inline code snippet:
<SyntaxHighlighter language='javascript' style={dark} customStyle={{ display: 'inline' }}>
{codeString}
</SyntaxHighlighter>
</p>
);
};
highlight.js is a widely-used syntax highlighter that supports many languages and has a variety of themes. It can be used in both browser and server environments. Compared to react-syntax-highlighter, highlight.js is not specifically tailored for React and requires additional setup to integrate with React components.
prismjs is another popular syntax highlighting library. It is lightweight, extensible, and also supports a wide range of languages and themes. While prismjs can be used in React applications, react-syntax-highlighter leverages prismjs under the hood and provides a more React-friendly API.
react-highlight is a React component that wraps around the highlight.js library. It provides a simple interface for syntax highlighting in React applications. Unlike react-syntax-highlighter, react-highlight relies on highlight.js for the actual highlighting functionality.
Syntax highlighting component for React
using the seriously super amazing lowlight and refractor by wooorm
Check out a small demo here and see the component in action highlighting the generated test code here.
For React Native you can use react-native-syntax-highlighter
npm install react-syntax-highlighter --save
There are other syntax highlighters for React
out there so why use this one? The biggest reason is that all the others rely on triggering calls in componentDidMount
and componentDidUpdate
to highlight the code block and then insert it in the render function using dangerouslySetInnerHTML
or just manually altering the DOM with native javascript. This utilizes a syntax tree to dynamically build the virtual dom which allows for updating only the changing DOM instead of completely overwriting it on any change, and because of this it is also using more idiomatic React
and allows the use of pure function components brought into React
as of 0.14
.
One of the biggest pain points for me trying to find a syntax highlighter for my own projects was the need to put a stylesheet tag on my page. I wanted to provide out of the box code styling with my modules without requiring awkward inclusion of another libs stylesheets. The styles in this module are all javascript based, and all styles supported by highlight.js
have been ported!
I do realize that javascript styles are not for everyone, so you can optionally choose to use css based styles with classNames added to elements by setting the prop useInlineStyles
to false
(it defaults to true
).
language
- the language to highlight code in. Available options here for hljs and here for prism. (pass text to just render plain monospaced text)style
- style object required from styles/hljs or styles/prism directory depending on whether or not you are importing from react-syntax-highlighter
or react-syntax-highlighter/prism
directory here for hljs. and here for prism. import { style } from 'react-syntax-highlighter/dist/esm/styles/{hljs|prism}'
. Will use default if style is not included.children
- the code to highlight.customStyle
- prop that will be combined with the top level style on the pre tag, styles here will overwrite earlier styles.codeTagProps
- props that will be spread into the <code>
tag that is the direct parent of the highlighted code elements. Useful for styling/assigning classNames.useInlineStyles
- if this prop is passed in as false, react syntax highlighter will not add style objects to elements, and will instead append classNames. You can then style the code block by using one of the CSS files provided by highlight.js.showLineNumbers
- if this is enabled line numbers will be shown next to the code block.showInlineLineNumbers
- if this is enabled in conjunction with showLineNumbers
, line numbers will be rendered into each line, which allows line numbers to display properly when using renderers such as react-syntax-highlighter-virtualized-renderer. (This prop will have no effect if showLineNumbers
is false
.)startingLineNumber
- if showLineNumbers
is enabled the line numbering will start from here.lineNumberContainerStyle
- the line numbers container default to appearing to the left with 10px of right padding. You can use this to override those styles.lineNumberStyle
- inline style to be passed to the span wrapping each number. Can be either an object or a function that receives current line number as argument and returns style object.wrapLines
- a boolean value that determines whether or not each line of code should be wrapped in a parent element. defaults to false, when false one can not take action on an element on the line level. You can see an example of what this enables herewrapLongLines
- boolean to specify whether to style the <code>
block with white-space: pre-wrap
or white-space: pre
. DemolineProps
- props to be passed to the span wrapping each line if wrapLines is true. Can be either an object or a function that receives current line number as argument and returns props object.renderer
- an optional custom renderer for rendering lines of code. See here for an example.PreTag
- the element or custom react component to use in place of the default pre tag, the outermost tag of the component (useful for custom renderer not targeting DOM).CodeTag
- the element or custom react component to use in place of the default code tag, the second tag of the component tree (useful for custom renderer not targeting DOM).spread props
pass arbitrary props to pre tag wrapping code.import SyntaxHighlighter from 'react-syntax-highlighter';
import { docco } from 'react-syntax-highlighter/dist/esm/styles/hljs';
const Component = () => {
const codeString = '(num) => num + 1';
return (
<SyntaxHighlighter language="javascript" style={docco}>
{codeString}
</SyntaxHighlighter>
);
};
Using refractor we can use an ast built on languages from Prism.js instead of highlight.js. This is beneficial especially when highlighting jsx, a problem long unsolved by this module. The semantics of use are basically the same although a light mode is not yet supported (though is coming in the future). You can see a demo(with jsx) using Prism(refractor) here.
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { dark } from 'react-syntax-highlighter/dist/esm/styles/prism';
const Component = () => {
const codeString = '(num) => num + 1';
return (
<SyntaxHighlighter language="javascript" style={dark}>
{codeString}
</SyntaxHighlighter>
);
};
React Syntax Highlighter used in the way described above can have a fairly large footprint. For those that desire more control over what exactly they need, there is an option to import a light build. If you choose to use this you will need to specifically import desired languages and register them using the registerLanguage export from the light build. There is also no default style provided.
import { Light as SyntaxHighlighter } from 'react-syntax-highlighter';
import js from 'react-syntax-highlighter/dist/esm/languages/hljs/javascript';
import docco from 'react-syntax-highlighter/dist/esm/styles/hljs/docco';
SyntaxHighlighter.registerLanguage('javascript', js);
You can require PrismLight
from react-syntax-highlighter
to use the prism light build instead of the standard light build.
import { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter';
import jsx from 'react-syntax-highlighter/dist/esm/languages/prism/jsx';
import prism from 'react-syntax-highlighter/dist/esm/styles/prism/prism';
SyntaxHighlighter.registerLanguage('jsx', jsx);
For optimal bundle size for rendering ASAP, there's a async version of prism light & light. This versions requires you to use a bundler that supports the dynamic import syntax, like webpack. This will defer loading of refractor (17kb gzipped) & the languages, while code splits are loaded the code will show with line numbers but without highlighting.
Prism version:
import { PrismAsyncLight as SyntaxHighlighter } from 'react-syntax-highlighter';
Highlight version
import { LightAsync as SyntaxHighlighter } from 'react-syntax-highlighter';
Access via the supportedLanguages
static field.
SyntaxHighlighter.supportedLanguages;
If your project uses react-syntax-highlighter please send a pr to add!
MIT
FAQs
syntax highlighting component for react with prismjs or highlightjs ast using inline styles
We found that react-syntax-highlighter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.