2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-08-20 18:52:44 +08:00

Replace Hpricot with Nokogiri

This commit is contained in:
Jaime Iniesta 2013-02-12 09:46:45 -05:00
parent 84a167725d
commit 6995e75d41
15 changed files with 36 additions and 34 deletions

View file

@ -9,7 +9,7 @@ class CookedPostProcessor
@dirty = false
@opts = opts
@post = post
@doc = Hpricot(post.cooked)
@doc = Nokogiri::HTML(post.cooked)
end
def dirty?