lib/vedeu/output/renderers/escape_sequence.rb in vedeu-0.5.4 vs lib/vedeu/output/renderers/escape_sequence.rb in vedeu-0.5.5

- old
+ new

@@ -15,10 +15,10 @@ @options = options || {} end # Render the output with the escape sequences escaped. # - # @param output [Array<Array<Vedeu::Char>>] + # @param output [Array<Array<Vedeu::Views::Char>>] # @return [String] def render(output) @parsed ||= Array(output).flatten.map do |char| Esc.escape(char.to_s) + "\n" end.join