markdown2 :: MdInlineParser :: peek_next
\0
# Return the char at the current input index + 1, or `\0` private fun peek_next: Char do if index + 1 < input.length then return input.chars[index + 1] end return '\0' end