Skip to content

Files

Latest commit

 

History

History
28 lines (22 loc) · 835 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 835 Bytes

Markdown Previewer

This is a simple React powered app that lets you live preview for Github-flavored markdown in the browser.

Installation

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.

Project Structure

.
├── package.json
├── public
│   └── index.html
├── README.md
└── src
    ├── components
    │   ├── App.js
    │   ├── MarkdownAnalyzer.js
    │   ├── markdownDummyInput.js
    │   └── MarkdownOutput.js
    └── index.js