Displaying 2 results from an estimated 2 matches for "meacham".
2004 Feb 21
2
a story of compromise and an idea
...for things like zsh completion, but for the
extra-paranoid or privacy conscious I think it would be a very practical
and simple change.
please respond to both me and the list as I am not subscribed.
John
--
---------------------------------------------------------------------------
John Meacham - California Institute of Technology, Alum. - john at foo.net
---------------------------------------------------------------------------
2008 Apr 06
1
markdown PEG (parsing expression grammar)
There's been a lot of discussion on this list about creating a formal
grammar for markdown. I had a go at writing a [parsing expression
grammar] for markdown. I used Haskell and John Meacham's Frisby PEG
parsing library, but it should not be too hard to port the grammar
to PEG libraries in other languages.
[parsing expression grammar]: http://en.wikipedia.org/wiki/Parsing_expression_grammar
The code is at <http://github.com/jgm/markdown-peg/tree/master>.
All that is require...