Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rogerwelin/markdown2confluence-server
Converts markdown to Atlassian confluence markup language
https://github.com/rogerwelin/markdown2confluence-server
confluence confluence-markup docker-image markdown
Last synced: 29 days ago
JSON representation
Converts markdown to Atlassian confluence markup language
- Host: GitHub
- URL: https://github.com/rogerwelin/markdown2confluence-server
- Owner: rogerwelin
- Created: 2017-05-15T10:05:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-28T20:12:12.000Z (over 1 year ago)
- Last Synced: 2023-08-29T03:44:16.460Z (over 1 year ago)
- Topics: confluence, confluence-markup, docker-image, markdown
- Language: Ruby
- Homepage: https://rogerwelin.github.io/markdown/confluence/docker/2017/05/15/convert-markdown-to-confluence-wiki.html
- Size: 20.5 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# markdown2confluence-server
## Synopsis
Converts markdown to Atlassian confluence markup language.
Forked from https://github.com/jedi4ever/markdown2confluence. Previosly run as a cli-tool this fork implements the functionality as a rest server using Sinatra.## Build locally
* gem install bundle
* bundle install --path vendor/bundle
* bundle exec rackup## Endpoints
* GET localhost:9292
* GET localhost:9292/ping
* PUT localhost:9292/markdown2confluence## Usage
Take a look at the included script test-markdown.rb to know how to interact with server## Test
Run:
* ruby test-markdown.rb## Docker image from Dockerhub (prefered way of running the application)
* docker run -d -p 9292:9292 rogerw/markdown2confluence-server## Build docker image locally
To build and start docker image locally:
* docker build -t markdown2confluence-server -f docker/Dockerfile .
* docker run -d -p 9292:9292 markdown2confluence-server