Read self between nstart and nend (excluded) and writte chars to out.

Property definitions

nitc :: html_commands $ Text :: read
	# Read `self` between `nstart` and `nend` (excluded) and writte chars to `out`.
	private fun read(out: FlatBuffer, nstart, nend: Int): Int do
		var pos = nstart
		while pos < length and pos < nend do
			out.add self[pos]
			pos += 1
		end
		if pos == length then return -1
		return pos
	end
src/doc/templates/html_commands.nit:449,2--458,4