Skip to content

Instantly share code, notes, and snippets.

@raiph
Created December 20, 2014 05:35
Show Gist options
  • Save raiph/2714c5decbc9463dd095 to your computer and use it in GitHub Desktop.
Save raiph/2714c5decbc9463dd095 to your computer and use it in GitHub Desktop.
BBCode grammar
grammar BBCode {
regex TOP { (<para> | <code>)* }
regex para { [\N+ [\n|$]]+ [\n|$] }
regex code { '[code]' .* '[/code]' <.ws> }
}
BBCode.parse: Q:to[END];
[code]
a := f()
[/code]
just a line
another line
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment