Skip to content

Instantly share code, notes, and snippets.

@mankyKitty
Created August 7, 2016 23:27
Show Gist options
  • Save mankyKitty/37d0be05649114b0c4ce1ae09c3eca4a to your computer and use it in GitHub Desktop.
Save mankyKitty/37d0be05649114b0c4ce1ae09c3eca4a to your computer and use it in GitHub Desktop.
O.o
author :: Parser Author
author = between parens (many anyChar) <* eol
title :: Parser Title
title = do
t <- endBy anyChar (optional author)
mA <- optional author
pure $ Title t mA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment