├── .gitignore ├── LICENSE ├── README.md ├── attributevalues.txt ├── common.txt ├── css.txt ├── cssproperties.txt ├── generator.py ├── grammar.py ├── html.txt ├── js.txt ├── jshelpers.txt ├── mod_ref_helper ├── libgenerator_helper.dylib ├── libgenerator_helper.so └── mem_dep.json ├── svg.txt ├── svgattrvalues.txt ├── tagattributes.txt ├── template.html └── webkit_helper.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .history 2 | .idea 3 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/README.md -------------------------------------------------------------------------------- /attributevalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/attributevalues.txt -------------------------------------------------------------------------------- /common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/common.txt -------------------------------------------------------------------------------- /css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/css.txt -------------------------------------------------------------------------------- /cssproperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/cssproperties.txt -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/generator.py -------------------------------------------------------------------------------- /grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/grammar.py -------------------------------------------------------------------------------- /html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/html.txt -------------------------------------------------------------------------------- /js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/js.txt -------------------------------------------------------------------------------- /jshelpers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/jshelpers.txt -------------------------------------------------------------------------------- /mod_ref_helper/libgenerator_helper.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/mod_ref_helper/libgenerator_helper.dylib -------------------------------------------------------------------------------- /mod_ref_helper/libgenerator_helper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/mod_ref_helper/libgenerator_helper.so -------------------------------------------------------------------------------- /mod_ref_helper/mem_dep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/mod_ref_helper/mem_dep.json -------------------------------------------------------------------------------- /svg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/svg.txt -------------------------------------------------------------------------------- /svgattrvalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/svgattrvalues.txt -------------------------------------------------------------------------------- /tagattributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/tagattributes.txt -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/template.html -------------------------------------------------------------------------------- /webkit_helper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChijinZ/Minerva/HEAD/webkit_helper.txt --------------------------------------------------------------------------------