Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mr-sunglasses/readify

A Python tool for Rendering markdown files to your Browsers.
https://github.com/mr-sunglasses/readify

flask python3 readme rendering

Last synced: 2 months ago
JSON representation

A Python tool for Rendering markdown files to your Browsers.

Awesome Lists containing this project

README

        

# Readify

A Python tool for Rendering markdown files to your Browsers.

## Setup
```bash
git clone https://github.com/Mr-Sunglasses/Readify.git

cd readify

python3 -m venv venv

source venv/bin/activate

pip3 install -r requirements.txt
```

## Usage
```bash
cd readify

python3 readify.py --help

python3 readify.py --port=
```

# Demo images
### help
![Image-1](https://i.ibb.co/xfNvq99/demo-image1.png)
### rendering Markdowns
![Image-2](https://i.ibb.co/BwNjzg0/demo-image2.png)
### Serving Webapp
![Image-1](https://i.ibb.co/FmG5Kcn/demo-image3.png)

## To add Readify to your PATH [for linux and mac users]
```bash
cd bin
chmod +x readify
echo 'export PATH="$PATH:`pwd`/readify/bin"' >> ~./bashrc
#update current shell
source ~/.bashrc

# to verify if Readify is working
readify --help
```