Is there a standard lexer/parser tool for Python?

Posted by Salim Fadhley on Stack Overflow See other posts from Stack Overflow or by Salim Fadhley
Published on 2010-04-12T12:36:22Z Indexed on 2010/04/12 12:43 UTC
Read the original article Hit count: 355

Filed under:
|
|
|
|

A volunteer job requires us to convert a large number of LaTeX documents into ePub format. It's a series of open-source fiction book which has so far only been produced only on paper via a print on demand service. We'd like to be able to offer the book to users of book-reader devices (such as Kindle) which require the ePub format for best results.

Fortunately, ePub is a very simple format, however there's no trivial way for LaTeX to produce the XHTML outut required.

We experimented with alternative LaTeX compilers (e.g. plastex) but in the end we figured that it would probably be a lot easier to simply write our own compiler which understands a tiny subset of the LaTeX language and compiles directly to XHTML / ePub.

Previously I used a tool on Windows called GOLD. This allowed me to go directly from BNF grammars to a stub parser. It also alllowed me to implement the parser in any language I liked. (I'd choose Python).

This product has to work on Linux, so I'm wondering if there's an equivalent toolchain that works as well under Ubutnu / Eclipse / Python. The idea is that we will take the grammar of TeX and just implement a teeny subset of that, but we do not want to spend a huge amount of time worrying about grammar and parsing. A parser generator would obviously save us a great deal of time.

Sal


UPDATE 1: Bonus marks for a solution with excellent documentation or tutorials.

© Stack Overflow or respective owner

Related posts about python

Related posts about tex