A JSX lexer for Pygments
Project description
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> ); } } ```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsx-lexer-0.0.4.tar.gz
(2.7 kB
view details)
Built Distribution
File details
Details for the file jsx-lexer-0.0.4.tar.gz
.
File metadata
- Download URL: jsx-lexer-0.0.4.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb2e2bca1b3915a6527e17a3416e7f26f01fc0688ff1f54155ef5bdf0cd54934 |
|
MD5 | a84dc00e869355f25b9296f8d10185fc |
|
BLAKE2b-256 | 4933861818cc55302085da1484a37ea06f41a8f0ef1d34485b49c341f319d857 |
File details
Details for the file jsx_lexer-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: jsx_lexer-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27b7420fbb95c10052929afeaebf0dfa4940217d5acbce50ca828f70b82176d8 |
|
MD5 | ce93f2237717bb58b76d7dd9781e6ab6 |
|
BLAKE2b-256 | c73e991541fb366dc0df6afa4cc95f9da04e9a09d5280cef56860e7bff06203c |