Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Renders Markdown into Confluence syntax via Redcarpet.

License

Notifications You must be signed in to change notification settings

bugcrowd/redcarpet-confluence

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'

About

Renders Markdown into Confluence syntax via Redcarpet.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%