Skip to content

Instantly share code, notes, and snippets.

@yorickpeterse
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yorickpeterse/c6ad6f8896b5f3daf197 to your computer and use it in GitHub Desktop.
Save yorickpeterse/c6ad6f8896b5f3daf197 to your computer and use it in GitHub Desktop.
%%machine example;
%%{
cdata_start = '<![CDATA[';
cdata_end = ']]>';
cdata := |*
# Everything that is not "]]>" (must match consecutive characters)
# Sadly this seems to result in "foo]]" being matched for input
# "<![CDATA[foo]]>".
(any* -- cdata_end) => {
...
};
# Just the literal "]]>" so we can break out of this machine
cdata_end => {
...
};
*|;
}%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment