Method: Post#first_image_in_body
- Defined in:
- app/models/post.rb
#first_image_in_body(size = nil, options = {}) ⇒ Object
116 117 118 119 120 |
# File 'app/models/post.rb', line 116 def first_image_in_body(size = nil, = {}) doc = Hpricot( post ) image = doc.at("img") image ? image['src'] : nil end |