Skip to content

Instantly share code, notes, and snippets.

@vvakame
Created February 13, 2014 10:12
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 vvakame/8972728 to your computer and use it in GitHub Desktop.
Save vvakame/8972728 to your computer and use it in GitHub Desktop.
reviewで--target markdown でcmdブロック記法が使えなかったので
# encoding: utf-8
require 'pp'
module ReVIEW
class MARKDOWNBuilder
def cmd(lines)
puts "```"
lines.each do |line|
puts detab(line)
end
puts "```"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment