├── .gitignore ├── LICENSE ├── Makefile ├── README.markdown ├── h5-maint.el ├── html5-langs.el ├── html5-ncr.el ├── html5-tok.el ├── schemas.xml ├── tools ├── build-langs.py ├── build-ncr.py └── extract-parsing-algorithm.py └── whattf-dt.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/README.markdown -------------------------------------------------------------------------------- /h5-maint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/h5-maint.el -------------------------------------------------------------------------------- /html5-langs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/html5-langs.el -------------------------------------------------------------------------------- /html5-ncr.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/html5-ncr.el -------------------------------------------------------------------------------- /html5-tok.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/html5-tok.el -------------------------------------------------------------------------------- /schemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/schemas.xml -------------------------------------------------------------------------------- /tools/build-langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/tools/build-langs.py -------------------------------------------------------------------------------- /tools/build-ncr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/tools/build-ncr.py -------------------------------------------------------------------------------- /tools/extract-parsing-algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/tools/extract-parsing-algorithm.py -------------------------------------------------------------------------------- /whattf-dt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hober/html5-el/HEAD/whattf-dt.el --------------------------------------------------------------------------------