Module: Nokogiri
- Defined in:
- lib/itonoko.rb
Overview
nokogiri互換のトップレベルAPI
Defined Under Namespace
Constant Summary collapse
Class Method Summary collapse
- .HTML(string, *args, &block) ⇒ Object
- .HTML4(string, *args, &block) ⇒ Object
- .HTML5(string, *args, &block) ⇒ Object
- .XML(string, *args, &block) ⇒ Object
Class Method Details
.HTML(string, *args, &block) ⇒ Object
59 60 61 |
# File 'lib/itonoko.rb', line 59 def self.HTML(string, *args, &block) HTML.parse(string, *args, &block) end |
.HTML4(string, *args, &block) ⇒ Object
63 64 65 |
# File 'lib/itonoko.rb', line 63 def self.HTML4(string, *args, &block) HTML.parse(string, *args, &block) end |