This is a simple React powered app that lets you live preview for Github-flavored markdown in the browser.
Before trying to run the project, make sure to initialize the folder by running npm install.
This will take care of install all the project dependencies.
After this you can run npm start to run the dev server locally which will be available at localhost:3000.
.
├── package.json
├── public
│ └── index.html
├── README.md
└── src
├── components
│ ├── App.js
│ ├── MarkdownAnalyzer.js
│ ├── markdownDummyInput.js
│ └── MarkdownOutput.js
└── index.js