Method: Qipowl::Bowlers::Html#orphan

Defined in:
lib/qipowl/bowlers/html.rb

#orphan(str) ⇒ String (private)

Produces html paragraph tag (<p>) with class owl.

Parameters:

  • str

    the words, to be put in paragraph tag.

Returns:

See Also:

  • Qipowl::Bowler#orphan


255
256
257
# File 'lib/qipowl/bowlers/html.rb', line 255

def orphan str
  "#{tagify(:p, {}, str.to_s.strip)}"
end