ohbarye / markdown-server

Simple markdown server written in Python. It converts your markdown file to HTML and returns a response as text/html.
https://pypi.python.org/pypi/markdown-server
MIT License
44 stars 20 forks source link
markdown python

=============== Markdown Server

Markdown-server is a simple web application. It converts markdown file to HTML and response by text/html.

How to use


Runtime Environment

:Python: 3.7 :pip: 19.1.1


Library Dependencies

See requirements.txt.


Just try

Start server

You don't need any special preparation to try to start server. Just execute below commands.

::

$ git clone https://github.com/ohbarye/markdown-server
$ cd markdown-server
$ virtualenv .venv
$ source .venv/bin/activate
(.venv)$ pip install -r requirements.txt
(.venv)$ markdownserver
    Bottle v0.12.8 server starting up (using WSGIRefServer())...
    Listening on http://localhost:8009/

Or, you can install from PyPi.

::

(.venv)$ pip install markdown-server
(.venv)$ markdownserver
    Bottle v0.12.8 server starting up (using WSGIRefServer())...
    Listening on http://localhost:8009/

If server start up successfully, browse below URL and check the converted result.

::

$ open http://localhost:8009/sample.md

Only Conversion

Additionally, You can use the conversion function alone.

::

(.venv)$ convert source_md_file target_html_file

Do as you like