RubyGems Navigation menu

nokogiri-styles 0.1.0

NokgiriStyles lets you decompose inline CSS styling (the style attribute) in HTML elements so you don’t have to bother with regexes and such. Usage: require 'nokogiri' require 'nokogiri-styles' # ... # Get styles node['style'] # => 'width: 400px; color: blue' node.styles['width'] # => '400px' node.styles['color'] # => 'blue' # Update styles style = node.styles style['width'] = '500px' style['height'] = '300px' style['color'] = nil node.styles = style node['style'] # => 'width: 500xp; height: 300px' # Modify classes node['class'] # => 'foo bar' node.classes # => ['foo', 'bar'] node.classes = ['foo'] node['class'] # => 'foo' Note that the `style` attribute is only updated when assigning `.styles`, simply doing `node.styles['color'] = 'red'` does not work. Patches welcome.

Gemfile:
= 复制到剪贴板 已复制!

安装:
=

版本列表:

  1. 0.1.2 - July 19, 2012 (6.5 KB)
  2. 0.1.1 - July 19, 2012 (6.5 KB)
  3. 0.1.0 - July 19, 2012 (7.0 KB)

Runtime 依赖 (1):

nokogiri >= 0

Development 依赖 (1):

test-unit = 2.4.8

业主:

作者:

  • Sijmen Mulder

SHA 256 校验和:

15c60fed815a252ccb743a99504d4640201e8f5b4f8e599988c2166c22ab0b35

下载总量 1,324,510

这个版本 3,000

许可:

需要的 Ruby 版本:

链接: