Just after each element in this list, add some HTML. Pass in an HTML str, which is turned into Hpricot elements.
Source Code
# File hpricot/elements.rb, line 150 def after(str = nil, &blk) each { |x| x.parent.insert_after Hpricot.make(str, &blk), x } end
<code/>and<pre/>for code samples.