Skip to content

Instantly share code, notes, and snippets.

@1syo
Created October 28, 2016 07:43
Show Gist options
  • Save 1syo/7307402868e8d3f6a753096f5319f684 to your computer and use it in GitHub Desktop.
Save 1syo/7307402868e8d3f6a753096f5319f684 to your computer and use it in GitHub Desktop.
#! /usr/bin/env ruby
begin
require 'github/markup'
rescue LoadError
Gem.install 'github-markup'
retry
end
begin
require 'redcarpet'
rescue LoadError
Gem.install 'redcarpet'
retry
end
p GitHub::Markup.render('README.markdown', "* One\n* Two")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment