Skip to content

Instantly share code, notes, and snippets.

@alexedwards
Created September 28, 2010 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexedwards/601357 to your computer and use it in GitHub Desktop.
Save alexedwards/601357 to your computer and use it in GitHub Desktop.
if ARGV.include?('--help')
File.read(__FILE__).split("\n").grep(/^# /).each do |line|
puts line[2..-1]
end
exit 0
end
require 'rdiscount'
STDOUT.write(RDiscount.new(ARGF.read).to_html)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment