Method: Vedeu::Cells::HTML#value
- Defined in:
- lib/vedeu/cells/support/html.rb
#value ⇒ String (private)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
74 75 76 77 78 79 80 81 82 |
# File 'lib/vedeu/cells/support/html.rb', line 74 def value if cell.respond_to?(:as_html) && present?(cell.as_html) cell.as_html else ' ' end end |