summaryrefslogtreecommitdiff
path: root/appl/ebook/cssparser.m
blob: ea007a7823a481635f53ecc822318c93312a06ed (plain)
1
2
3
4
5
6
7
8
9
10
11
CSSparser: module {
	PATH: con "/dis/ebook/cssparser.dis";
	Decl: adt {
		name:		string;
		important:	int;
		val:			string;
	};
	init:		fn();
	parse:	fn(s: string): list of (string, list of Decl);
	parsedecl:	fn(s: string): list of Decl;
};