2010-02-20から1日間の記事一覧

hpricot:An Hpricot Showcase:Hpricot Fixups: :xhtml_strict

良く分かっていない >> require "hpricot" => true >> doc = Hpricot('<hoge></hoge>') => #<Hpricot::Doc {emptyelem <hoge>}> >> doc.to_html => "<hoge></hoge>" >> doc = Hpricot('<hoge></hoge>', :xhtml_strict => true) => #<Hpricot::Doc {elem <hoge> {bogusetag </hoge>}}> >> doc.to_html => "<hoge></hoge>" >> doc = Hp…