repo.or.cz
/
git-blog.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Re-ordered markdown parsers... again. Maruku first, most featureful.
[git-blog.git]
/
lib
/
git-blog
/
parser
/
html.rb
blob
3e3a7eed78cd9504a4132d3d400e0d83f02146a8
1
module GitBlog
2
module Parsers
3
module HTML
4
def self.parse input
5
input.gsub!(/^(.*)(\n\s+)*\n/m, '')
6
input
7
end
8
end
9
end
10
end