in reply to Writing a Wiki Parser
A good simple parser module is Parse::RecDescent, I use it for a game management language. It has some rough edges. For example you should extract the perl code into subs instead of writing all in the parser because you otherwise get error messages with unusable line numbers. And I wouldn't use it for parsing complicated stuff like real computer languages, but for markup it should be good enough.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Writing a Wiki Parser
by pileofrogs (Priest) on Jul 14, 2008 at 16:48 UTC |