Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giu7d/markdown-to-jsx-parser
Parsing markdown to JSX
https://github.com/giu7d/markdown-to-jsx-parser
Last synced: 1 day ago
JSON representation
Parsing markdown to JSX
- Host: GitHub
- URL: https://github.com/giu7d/markdown-to-jsx-parser
- Owner: giu7d
- Created: 2020-02-14T15:27:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T07:17:40.000Z (about 2 years ago)
- Last Synced: 2023-03-06T21:00:22.650Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 3.95 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Markdown to JSX
This is a challenge to create a parser based on regular expressions to convert markdown markup language to React.js JSX objects.
I've only implement some basic language features, like:
- Headers (H1, H2, H3...)
- Bold
- Italic
- MonospaceBut, lay down the foundations for more utilities, like images, links, etc.
This repository is just a challanges to improve my skills as a dev and should not be used for production.
## Getting Started
### Prerequisites
- nodejs (12.14.1);
- npm (6.13.4) or yarn (1.21.1).### Installing
To install this software, clone the repo and execute:
```
git clone
cd
npm install 'or' yarn install
```### Running
To run this software:
```
cd
npm start
```or
```
cd
yarn start
```## Built With:
- ReactJS;