Parser.oneOf

will try one Parser, in the given order. If a parser fails, the next one is tried, but if it succeeds, its result is returned without trying the remaining parsers. If all parsers fail, Parser.oneOf fails. page

You can think of oneOf as trying either the head of the list, or oneOf the parsers in the tail of the list. page

~

Paragraph text parser code [⇐ oneOf]