class Trenni::Template::Assembler

def text(text)

Output raw text to the template.
def text(text)
	text = text.gsub("'", "\\\\'")
	@code << "#{OUT}<<'#{text}';"
	
	# This is an interesting approach, but it doens't preserve newlines or tabs as raw characters, so template line numbers don't match up.
	# @parts << "#{OUT}<<#{text.dump};"
end