No commit activity in last 3 years
No release in over 3 years
A Redcarpet renderer to convert Markdown to Confluence syntax.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

~> 3.4
 Project Readme

RedcarpetConfluence

A Redcarpet renderer to convert Markdown to Confluence syntax.

Assumes text is UTF-8.

Usage

Call md2conf with the Markdown text to convert. Alternatively, pipe the text to md2conf.

md2conf README.md
cat README.md | md2conf

If you're on a Mac, pipe the output to pbcopy so you can paste it directly into Confluence.

md2conf README.md | pbcopy

From code

Create a Markdown parser with the Confluence renderer.

markdown = Redcarpet::Markdown.new(Redcarpet::Confluence)
puts markdown.render(markdown_text)

Installation

Add this line to your application's Gemfile:

gem 'redcarpet-confluence'

And then execute:

$ bundle

Or install it yourself as:

$ gem install redcarpet-confluence

and require it as:

require 'redcarpet/confluence'