module GitHub::Markup

def command(command, regexp, &block)

def command(command, regexp, &block)
  if File.exists?(file = File.dirname(__FILE__) + "/commands/#{command}")
    command = file
  end
  markups << CommandImplementation.new(regexp, command, &block)
end