A collection of Node.js modules to parse plans generated by Untis (Timetable, Substitution plan)
var parser = require("untisparser");
// Parse a Timetable
var html = "... html code of the timetable";
var output = parser.parseTimetable(html);
// Parse a Substitution plan
var html = "... html code of the substitution plan";
var output = parser.parseSubstitutionplan(html);