Class: Nokogiri::XML::Element
- Inherits:
-
Object
- Object
- Nokogiri::XML::Element
- Defined in:
- lib/nokogiri/xml/element.rb
Constant Summary collapse
- DEFAULT_FONT_SIZE =
12.to_f
Instance Method Summary collapse
- #bold? ⇒ Boolean
-
#font_size ⇒ Object
The node’s font size Used for guessing heading sizes.
- #italic? ⇒ Boolean
Instance Method Details
#bold? ⇒ Boolean
16 17 18 |
# File 'lib/nokogiri/xml/element.rb', line 16 def bold? styles['font-weight'] && styles['font-weight'] == 'bold' end |
#font_size ⇒ Object
The node’s font size Used for guessing heading sizes
Returns a float with the font-size
12 13 14 |
# File 'lib/nokogiri/xml/element.rb', line 12 def font_size styles['font-size'] ? styles['font-size'].to_f : DEFAULT_FONT_SIZE end |
#italic? ⇒ Boolean
20 21 22 |
# File 'lib/nokogiri/xml/element.rb', line 20 def italic? styles['font-style'] && styles['font-style'] == 'italic' end |