Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anru/rsted
[UNMAINTAINED] Online reStructuredText editor
https://github.com/anru/rsted
Last synced: about 1 month ago
JSON representation
[UNMAINTAINED] Online reStructuredText editor
- Host: GitHub
- URL: https://github.com/anru/rsted
- Owner: anru
- License: mit
- Archived: true
- Created: 2010-12-24T18:40:21.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T18:36:39.000Z (about 6 years ago)
- Last Synced: 2024-08-01T22:53:58.910Z (4 months ago)
- Language: JavaScript
- Homepage: http://rst.ninjs.org
- Size: 257 KB
- Stars: 698
- Watchers: 46
- Forks: 267
- Open Issues: 14
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - rsted - Online reStructuredText editor (JavaScript)
README
Simple online editor for reStructuredText on Flask.
Try it where: http://rst.ninjs.org/
Getting setup
-------------Requirements for rsted:
* Flask
* rst2html (from Docutils)These requirements are expressed in the pip-requirements.txt file and may be
installed by running the following (from within a virtual environment)::pip install -r pip-requirements.txt
How to run
----------Your Environment
++++++++++++++++
From within your environment, just run::./application.py
This will start a server on port 5000. Just visit http://localhost:5000/ in
your browser.Docker
++++++
In a docker installed host, just build and run::docker build -t rsted .
docker run --name rsted --rm -p 5000:5000 rstedA server starts on port 5000. Please adjust it, if you need another port
by changing run command above. And then just visit http://localhost:5000/ in
your browser.