Method: Flannel::BaseBlock#strip_and_encode_text
- Defined in:
- lib/flannel/base_block.rb
#strip_and_encode_text ⇒ Object
49 50 51 52 53 54 55 56 57 |
# File 'lib/flannel/base_block.rb', line 49 def strip_and_encode_text return unless @text @text.force_encoding("UTF-8") return if @type == :preformatted return unless @text @text = @text.strip end |