Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
- Monospace

But, 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;