Module: Hemingway::SpecialNode

Defined in:
lib/hemingway/special/special_nodes.rb

Instance Method Summary collapse

Instance Method Details

#htmlObject



3
4
5
6
7
8
9
# File 'lib/hemingway/special/special_nodes.rb', line 3

def html
	if character.text_value == "textbackslash{}"
		"\\"
	else
		character.text_value
	end
end