Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcdh/language-mdxjs
Markdown React (MDX) for Atom
https://github.com/bcdh/language-mdxjs
atom atom-editor markdown mdx mdx-js react
Last synced: 23 days ago
JSON representation
Markdown React (MDX) for Atom
- Host: GitHub
- URL: https://github.com/bcdh/language-mdxjs
- Owner: BCDH
- License: gpl-3.0
- Created: 2019-08-24T11:18:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-25T04:02:46.000Z (over 5 years ago)
- Last Synced: 2024-10-31T10:12:16.014Z (2 months ago)
- Topics: atom, atom-editor, markdown, mdx, mdx-js, react
- Size: 21.5 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Markdown React (MDX) for Atom
Adds language support for [MDX](https://github.com/mdx-js/mdx).
![Скриншот 2019-08-24 12.56.31](https://i.imgur.com/gbFo4uk.png)
## Installation
- `apm install language-mdxjs`
- `apm install react` (if you don't already have it)## Using Toolbar for Markdown Writer with `.mdx` files?
If you want to use [Toolbar for Markdown Writer](https://github.com/zhuochun/tool-bar-md-writer), make sure to add `source.mdxjs` to the plugin's settings.
![Скриншот 2019-08-25 05.57.50](https://i.imgur.com/vopHxXt.png)
## Applying MDX grammar to `.md` files?
By default the MDX language is applied only to `.mdx` files. If MDX files in your project end with `.md`, you can create a custom file type in your `config.cson`:
```cson
core:
customFileTypes:
'source.mdx': [
'md'
]
```## Auto-close tags
If you want Atom to automatically close tags while you type, you can install [Auto Close Tag](https://atom.io/packages/autoclose).