ualibraries / Guide-on-the-Side

The University of Arizona Libraries will no longer provide support for Guide on the Side. The code will remain openly available; however, UAL can no longer provide code fixes or upgrades.
https://ualibraries.github.io/Guide-on-the-Side/about.html
Other
66 stars 48 forks source link

Rewrite the SteppableBehavior with an XML/HTML parser #105

Open simpsonw opened 9 years ago

simpsonw commented 9 years ago

Currently, the SteppableBehavior is using regular expressions to parse the HTML stored in Tutorials. This is not ideal since HTML uses a context-free rather than a regular grammar, so regular expressions are not the best tool to parse HTML. It would probably be best to rewrite this using an HTML or XML parser.