Module: Nokogiri

Defined in:
lib/itonoko.rb

Overview

nokogiri互換のトップレベルAPI

Defined Under Namespace

Modules: HTML, XML

Constant Summary collapse

HTML4 =
HTML
HTML5 =
HTML

Class Method Summary collapse

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

.HTML5(string, *args, &block) ⇒ Object



67
68
69
# File 'lib/itonoko.rb', line 67

def self.HTML5(string, *args, &block)
  HTML.parse(string, *args, &block)
end

.XML(string, *args, &block) ⇒ Object



55
56
57
# File 'lib/itonoko.rb', line 55

def self.XML(string, *args, &block)
  XML.parse(string, *args, &block)
end