Renders highlighted Prism output using React
npm install prism-react-renderer
A lean Prism highlighter component for React
Comes with everything to render Prismjs syntax highlighted code directly in React & React Native!
getLineProps
getTokenProps
normalizeTokens
useTokenize
dependencies:
sh
npm
npm install --save prism-react-renderer
yarn
yarn add prism-react-renderer
pnpm
pnpm add prism-react-renderer
`
> Prism React Renderer has a peer dependency on react
$3
Prism React Renderer has a named export for the component along with themes. To see Prism React Render in action with base styling check out packages/demo or run pnpm run start:demo from the root of this repository.
`tsx
import React from "react"
import ReactDOM from "react-dom/client"
import { Highlight, themes } from "prism-react-renderer"
import styles from 'styles.module.css'
const codeBlock =
Price: {item.price}
Quantity: {item.quantity}
export const App = () => (
theme={themes.shadesOfPurple}
code={codeBlock}
language="tsx"
>
{({ className, style, tokens, getLineProps, getTokenProps }) => (
{tokens.map((line, i) => (
{i + 1}
{line.map((token, key) => (
))}
))}
)}
)
ReactDOM
.createRoot(document.getElementById("root") as HTMLElement)
.render( )
`
$3
By default prism-react-renderer only includes a base set of languages that Prism supports.
> _Note_: Some languages (such as Javascript) are part of the bundle of other languages
Depending on your app's build system you may need to await the import or use require to ensure window.Prism exists before importing the custom languages. You can add support for more by including their definitions from the main prismjs package:
`js
import { Highlight, Prism } from "prism-react-renderer";
(typeof global !== "undefined" ? global : window).Prism = Prism
await import("prismjs/components/prism-applescript")
/ or /
require("prismjs/components/prism-applescript")
`
Basic Props
This is the list of props that you should probably know about. There are some
advanced props below as well.
Most of these advanced props are included in the defaultProps.
$3
> function({}) | _required_
This is called with an object. Read more about the properties of this object in
the section "Children Function".
$3
> string | _required_
This is the language that your code will be highlighted as. You can see a list
of all languages that are supported out of the box here. Not all languages are included and the list of languages that are currently is a little arbitrary. You can use the escape-hatch to use your own Prism setup, just in case, or add more languages to the bundled Prism.
$3
> string | _required_
This is the code that will be highlighted.
Advanced Props
$3
> PrismTheme | _optional; default is vsDark_
If a theme is passed, it is used to generate style props which can be retrieved
via the prop-getters which are described in "Children Function".
Read more about how to theme prism-react-renderer in
the section "Theming".
$3
> prism | _optional; default is the vendored version_
This is the Prismjs library itself.
A vendored version of Prism is provided (and also exported) as part of this library.
This vendored version doesn't pollute the global namespace, is slimmed down,
and doesn't conflict with any installation of prismjs you might have.
If you're only using Prism.highlight you can choose to use prism-react-renderer's
exported, vendored version of Prism instead.
But if you choose to use your own Prism setup, simply pass Prism as a prop:
`jsx
// Whichever way you're retrieving Prism here:
import Prism from 'prismjs/components/prism-core';
... /} />
`
Children Function
This is where you render whatever you want to based on the output of .
You use it like so:
`js
const ui = (
{highlight => (
// use utilities and prop getters here, like highlight.className, highlight.getTokenProps, etc.
{/ more jsx here /}
)}
);
`
The properties of this highlight object can be split into two categories as indicated below:
$3
These properties are the flat output of . They're generally "state" and are what
you'd usually expect from a render-props-based API.
| property | type | description |
| ----------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------- |
| tokens | Token[][] | This is a doubly nested array of tokens. The outer array is for separate lines, the inner for tokens, so the actual content. |
| className | string | This is the class you should apply to your wrapping element, typically a |types
A "Token" is an object that represents a piece of content for Prism. It has aproperty, which is an arraycontent
of types that indicate the purpose and styling of a piece of text, and aproperty, which is the actualtokens
text.
You'd typically iterate over, rendering each line, and iterate over its items, rendering out each token, which is a piece ofgetLineProps
this line.
$3
> See
> Kent C. Dodds' blog post about prop getters
These functions are used to apply props to the elements that you render. This
gives you maximum flexibility to render what, when, and wherever you like.
You'd typically call these functions with some dictated input and add on all other
props that it should pass through. It'll correctly override and modify the props
that it returns to you, so passing props to it instead of adding them directly is
advisable.
| property | type | description |
| --------------- | -------------- | ----------------------------------------------------------------------------------------------------- |
||function({})| returns the props you should apply to any list of tokens, i.e. the element that contains your tokens. |getTokenProps
||function({})| returns the props you should apply to the elements displaying tokens that you render. |getLineProps
####line
You need to add aproperty (type:Token[]) to the object you're passing togetLineProps.
This getter will return you props to spread onto your line elements (typicallys).className
It will typically return a(if you pass one it'll be appended),children,style(if you pass one it'll be merged). It also passes on all other props you passclassName
to the input.
Thewill always contain.token-line.getTokenProps
####token
You need to add aproperty (type:Token) to the object you're passing togetTokenProps.s
This getter will return you props to spread onto your token elements (typically).className
It will typically return a(if you pass one it'll be appended),children,style(if you pass one it'll be merged). It also passes on all other props you passclassName
to the input.
Thewill always contain.token. This also provides full compatibility with(options: TokenizeOptions) => Token[][]
your old Prism CSS-file themes.
Utility Functions
$3
>`
ts`
type TokenizeOptions = {
prism: PrismLib
code: string
grammar?: PrismGrammar
language: Language
}
This is a React hook that tokenizes code using Prism. It returns an array of tokens that can be rendered using the built-incomponent or your own custom component. It usesnormalizeTokensinternally to convert the tokens into a shape that can be rendered.prism: PrismLib
-: the Prism library to use for tokenization. This can be the vendored version of Prism that is included withprism-react-rendereror a custom version of Prism that you have configured.code: string
-: a string containing the code to tokenize.grammar?: PrismGrammar
-: a Prism grammar object to use for tokenization. If this is omitted, the tokens will just be normalized. A grammar can be obtained fromPrism.languagesor by importing a language fromprismjs/components/.language: Language
-: the language to use for tokenization. This should be a language that Prism supports.(tokens: (PrismToken | string)[]) => Token[][]
$3
>plain
Takes an array of Prism’s tokens and groups them by line, converting strings into tokens. Tokens can become recursive in some cases which means that their types are concatenated. Plain-string tokens however are always of type.PrismToken
-is an internal alias forTokenexported byprismjsand is defined here.Token
-is an internal object that represents a slice of tokenized content for Prism with three properties:types: string[]
-: an array of types that indicate the purpose and styling of a piece of textcontent: string
-: the content of the tokenempty: boolean
-: a flag indicating whether the token is empty or not.defaultProps
Theming
Theyou'd typically apply in a basic use-case, contain a default theme.className
This theme is vsDark.
While alls are provided with, so that you could use your goodprism-react-renderer
old Prism CSS-file themes, you can also choose to use's themes like so:`
jsx`
import { Highlight, themes } from 'prism-react-renderer';
... /} /> `
These themes are JSON-based and are heavily inspired by VSCode's theme format.
Their syntax, expressed in Flow looks like the following:
js`
{
plain: StyleObj,
styles: Array<{
types: string[],
languages?: string[],
style: StyleObj
}>
}plain
Theproperty provides a base style-object. This style object is directly usedstyle
in theprops that you'll receive from the prop getters, if athemeprop has
been passed to.styles
Theproperty contains an array of definitions. Each definition contains astyletypes
property, that is also just a style object. These styles are limited by thelanguages
andproperties.types
Theproperties is an array of token types that Prism outputs. Thelanguagestypes
property limits styles to highlighted languages.
When converting a Prism CSS theme it's mostly just necessary to use classes asand convert the declarations to object-style-syntax and put them onstyle.`
Upgrade
If you are migrating from v1.x to v2.x, follow these steps
$3
diff`
- import Highlight, { defaultProps } from "prism-react-renderer";
+ import { Highlight } from "prism-react-renderer"
const Content = (
-
+`
$3
diff`
- const theme = require('prism-react-renderer/themes/github')
+ const theme = require('prism-react-renderer').themes.github`
$3
> By default prism-react-renderer only includes a base set of languages that Prism supports. Depending on your app's build system you may need to await the import or use require to ensure window.Prism exists before importing the custom languages.
See: https://github.com/FormidableLabs/prism-react-renderer#custom-language-support
Install prismjs (if not available yet):
`npm
npm install --save prismjsyarn
yarn add prismjspnpm
pnpm add prismjs`
$3
If the language is not already bundled in the above, you can add additional languages with the following code:
``
import { Highlight, Prism } from "prism-react-renderer";
(typeof global !== "undefined" ? global : window).Prism = Prism
await import("prismjs/components/prism-applescript")
/ or /
require("prismjs/components/prism-applescript")
LICENSE
MIT
Maintenance Status
Active: Nearform is actively working on this project, and we expect to continue work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.
[maintenance-image]: https://img.shields.io/badge/maintenance-active-green.svg