Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kgrz/gfm_service
Markdown API mimicking the GitHub's V3 Markdown API
https://github.com/kgrz/gfm_service
Last synced: about 2 months ago
JSON representation
Markdown API mimicking the GitHub's V3 Markdown API
- Host: GitHub
- URL: https://github.com/kgrz/gfm_service
- Owner: kgrz
- Created: 2013-06-02T15:38:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-14T04:58:09.000Z (over 11 years ago)
- Last Synced: 2023-03-12T07:18:48.834Z (almost 2 years ago)
- Language: Ruby
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Note: Under Construction
## DescriptionA webservice that converts plain-text markdown to HTML and returns a JSON response.
The app follows the GitHub's V3 Markdown conversion API## Installation
Add this to your Gemfile:
gem 'gfm_service', :git => 'git://github.com/kgrz/gfm_service.git'
and run:
bundle
## Usage
Once the gem is installed, start the service:
gfm_service -sv -port 9000
Or, if you use a Procfile:
web: bundle exec gfm_service -sv -port 9000