├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── dist ├── createDOMElement.esm.js ├── createDOMElement.esm.js.map ├── createDOMElement.js ├── createDOMElement.js.map ├── createDOMElement.modern.js ├── createDOMElement.modern.js.map ├── createDOMElement.umd.js ├── createDOMElement.umd.js.map ├── createObjectElement.esm.js ├── createObjectElement.esm.js.map ├── createObjectElement.js ├── createObjectElement.js.map ├── createObjectElement.modern.js ├── createObjectElement.modern.js.map ├── createObjectElement.umd.js ├── createObjectElement.umd.js.map ├── createSVGElement.esm.js ├── createSVGElement.esm.js.map ├── createSVGElement.js ├── createSVGElement.js.map ├── createSVGElement.modern.js ├── createSVGElement.modern.js.map ├── createSVGElement.umd.js ├── createSVGElement.umd.js.map ├── webscript.esm.js ├── webscript.esm.js.map ├── webscript.js ├── webscript.js.map ├── webscript.modern.js ├── webscript.modern.js.map ├── webscript.umd.js └── webscript.umd.js.map ├── docs ├── app.js ├── example.png ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── index.html ├── libs │ └── codemirror │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── codemirrortemplate.css │ │ └── mode │ │ ├── javascript │ │ ├── index.html │ │ ├── javascript.js │ │ ├── json-ld.html │ │ ├── test.js │ │ └── typescript.html │ │ └── xml │ │ ├── index.html │ │ ├── test.js │ │ └── xml.js └── test.js ├── html2webscript ├── app.js ├── examples.js ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── index.html ├── libs │ ├── codemirror │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── codemirrortemplate.css │ │ ├── matchbrackets.js │ │ ├── mode │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── json-ld.html │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ └── xml │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xml.js │ │ └── placeholder.js │ ├── htmlminifier.min.js │ ├── prism.css │ ├── prism.js │ ├── terser │ │ ├── bundle.min.js │ │ └── version.txt │ └── viv.js └── test.js ├── package.json ├── src ├── createDOMElement.js ├── createObjectElement.js ├── createSVGElement.js ├── helpers │ └── addChild.js └── webscript.js └── test ├── app.js ├── img └── card-top.jpg └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [mudgen] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/README.md -------------------------------------------------------------------------------- /dist/createDOMElement.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.esm.js -------------------------------------------------------------------------------- /dist/createDOMElement.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.esm.js.map -------------------------------------------------------------------------------- /dist/createDOMElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.js -------------------------------------------------------------------------------- /dist/createDOMElement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.js.map -------------------------------------------------------------------------------- /dist/createDOMElement.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.modern.js -------------------------------------------------------------------------------- /dist/createDOMElement.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.modern.js.map -------------------------------------------------------------------------------- /dist/createDOMElement.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.umd.js -------------------------------------------------------------------------------- /dist/createDOMElement.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createDOMElement.umd.js.map -------------------------------------------------------------------------------- /dist/createObjectElement.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.esm.js -------------------------------------------------------------------------------- /dist/createObjectElement.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.esm.js.map -------------------------------------------------------------------------------- /dist/createObjectElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.js -------------------------------------------------------------------------------- /dist/createObjectElement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.js.map -------------------------------------------------------------------------------- /dist/createObjectElement.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.modern.js -------------------------------------------------------------------------------- /dist/createObjectElement.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.modern.js.map -------------------------------------------------------------------------------- /dist/createObjectElement.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.umd.js -------------------------------------------------------------------------------- /dist/createObjectElement.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createObjectElement.umd.js.map -------------------------------------------------------------------------------- /dist/createSVGElement.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.esm.js -------------------------------------------------------------------------------- /dist/createSVGElement.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.esm.js.map -------------------------------------------------------------------------------- /dist/createSVGElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.js -------------------------------------------------------------------------------- /dist/createSVGElement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.js.map -------------------------------------------------------------------------------- /dist/createSVGElement.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.modern.js -------------------------------------------------------------------------------- /dist/createSVGElement.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.modern.js.map -------------------------------------------------------------------------------- /dist/createSVGElement.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.umd.js -------------------------------------------------------------------------------- /dist/createSVGElement.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/createSVGElement.umd.js.map -------------------------------------------------------------------------------- /dist/webscript.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.esm.js -------------------------------------------------------------------------------- /dist/webscript.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.esm.js.map -------------------------------------------------------------------------------- /dist/webscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.js -------------------------------------------------------------------------------- /dist/webscript.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.js.map -------------------------------------------------------------------------------- /dist/webscript.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.modern.js -------------------------------------------------------------------------------- /dist/webscript.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.modern.js.map -------------------------------------------------------------------------------- /dist/webscript.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.umd.js -------------------------------------------------------------------------------- /dist/webscript.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/dist/webscript.umd.js.map -------------------------------------------------------------------------------- /docs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/app.js -------------------------------------------------------------------------------- /docs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/example.png -------------------------------------------------------------------------------- /docs/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/favicon/site.webmanifest -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/libs/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/codemirror.css -------------------------------------------------------------------------------- /docs/libs/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/codemirror.js -------------------------------------------------------------------------------- /docs/libs/codemirror/codemirrortemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/codemirrortemplate.css -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/javascript/json-ld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/javascript/json-ld.html -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/javascript/test.js -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/javascript/typescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/javascript/typescript.html -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/xml/test.js -------------------------------------------------------------------------------- /docs/libs/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/libs/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /docs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/docs/test.js -------------------------------------------------------------------------------- /html2webscript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/app.js -------------------------------------------------------------------------------- /html2webscript/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/examples.js -------------------------------------------------------------------------------- /html2webscript/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /html2webscript/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /html2webscript/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /html2webscript/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /html2webscript/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /html2webscript/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/favicon.ico -------------------------------------------------------------------------------- /html2webscript/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/favicon/site.webmanifest -------------------------------------------------------------------------------- /html2webscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/index.html -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/codemirror.css -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/codemirror.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/codemirrortemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/codemirrortemplate.css -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/matchbrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/matchbrackets.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/javascript/json-ld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/javascript/json-ld.html -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/javascript/test.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/javascript/typescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/javascript/typescript.html -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/xml/test.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /html2webscript/libs/codemirror/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/codemirror/placeholder.js -------------------------------------------------------------------------------- /html2webscript/libs/htmlminifier.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/htmlminifier.min.js -------------------------------------------------------------------------------- /html2webscript/libs/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/prism.css -------------------------------------------------------------------------------- /html2webscript/libs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/prism.js -------------------------------------------------------------------------------- /html2webscript/libs/terser/bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/terser/bundle.min.js -------------------------------------------------------------------------------- /html2webscript/libs/terser/version.txt: -------------------------------------------------------------------------------- 1 | @4.7.0/dist/bundle.min.js -------------------------------------------------------------------------------- /html2webscript/libs/viv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/libs/viv.js -------------------------------------------------------------------------------- /html2webscript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/html2webscript/test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/package.json -------------------------------------------------------------------------------- /src/createDOMElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/src/createDOMElement.js -------------------------------------------------------------------------------- /src/createObjectElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/src/createObjectElement.js -------------------------------------------------------------------------------- /src/createSVGElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/src/createSVGElement.js -------------------------------------------------------------------------------- /src/helpers/addChild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/src/helpers/addChild.js -------------------------------------------------------------------------------- /src/webscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/src/webscript.js -------------------------------------------------------------------------------- /test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/test/app.js -------------------------------------------------------------------------------- /test/img/card-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/test/img/card-top.jpg -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mudgen/webscript/HEAD/test/index.html --------------------------------------------------------------------------------