public
Description: Super simple wiki targeted at developers
Homepage:
Clone URL: git://github.com/citrusbyte/quiki.git
quiki / lib / html_parser.rb
100644 10 lines (8 sloc) 0.1 kb
1
2
3
4
5
6
7
8
9
10
class HtmlParser
  def initialize(text)
    @text = text
  end
  
  def to_html
    @text
  end
end