A JSX lexer for Pygments
Project Links
Meta
Author: Flavio Curella
Classifiers
Environment
- Plugins
Intended Audience
- Developers
Programming Language
- Python :: 3
A JSX lexer for Pygments
Installation
$ pip install jsx-lexer
Usage with Sphinx
To use within Sphinx, simply specify jsx for your code-block:
.. code-block:: jsx
const BlogTitle = ({ children }) => (
<h3>{children}</h3>
);
// class component
class BlogPost extends React.Component {
renderTitle(title) {
return <BlogTitle>{title}</BlogTitle>
};
render() {
return (
<div className="blog-body">
{this.renderTitle(this.props.title)}
<p>{this.props.body}</p>
</div>
);
}
}
Usage with mkdocs
First, you need to create the CSS for the highlighting:
$ pygmentize -S default -f html -a .codehilite > code/pygments.css
Then, add the following to your mkdocs.yml:
markdown_extensions:
- codehilite
extra_css: [pygments.css]
Now, you can use jsx in your code blocks:
```jsx
const BlogTitle = ({ children }) => (
<h3>{children}</h3>
);
// class component
class BlogPost extends React.Component {
renderTitle(title) {
return <BlogTitle>{title}</BlogTitle>
};
render() {
return (
<div className="blog-body">
{this.renderTitle(this.props.title)}
<p>{this.props.body}</p>
</div>
);
}
}
```
Usage with Overleaf
First, add the minted package in your main file:
\usepackage{minted}
Then, download the lexer.py file from this project, and place it in your root folder in Overleaf.
Now, you can use {lexer.py:JsxLexer -x} in front of your minted code blocks:
\begin{minted}{lexer.py:JsxLexer -x}
const BlogTitle = ({ children }) => (
<h3>{children}</h3>
);
// class component
class BlogPost extends React.Component {
renderTitle(title) {
return <BlogTitle>{title}</BlogTitle>
};
render() {
return (
<div className="blog-body">
{this.renderTitle(this.props.title)}
<p>{this.props.body}</p>
</div>
);
}
}
\end{minted}
You can find an example of the lexer in use on Overleaf here: https://www.overleaf.com/read/xvsytqzkvdjb
2.0.1
May 16, 2023
2.0.0
Jul 13, 2022
1.0.0
Mar 10, 2021
0.0.8
Sep 06, 2019
0.0.7
Apr 26, 2019
0.0.6
May 18, 2018
0.0.5
Oct 15, 2017
0.0.4
May 16, 2017
0.0.3
May 16, 2017
0.0.2
May 12, 2017
0.0.1
May 12, 2017
Wheel compatibility matrix
Files in release
Extras:
None
Dependencies:
Pygments
(>=2.12.0)