# File lib/maruku/input/parse_span_better.rb, line 703
                def push_elements(a)
                        for e in a 
                                if e.kind_of? String
                                        e.each_byte do |b| push_char b end
                                else
                                        push_element e
                                end
                        end
                end