Advance the current index of count characters

Property definitions

markdown2 $ MdInlineParser :: advance
	# Advance the current index of `count` characters
	private fun advance(count: Int) do
		index += count
		column += count
	end
lib/markdown2/markdown_inline_parsing.nit:132,2--136,4