1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'superredcloth'

class SuperBlackCloth < SuperRedCloth

  def to_tagged_text
    text = "<ASCII-MAC>\n<Version:5>\n"
    text += self.to_html
  end

  def copyright(opts)
    "CCCCC"
  end

end