├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin ├── retag.js └── tag.css ├── example ├── JSXTransformer.js ├── demo.css ├── demo.html ├── react.js └── retag.js ├── package.json └── src ├── TagCollection.js ├── TagCollection.js.map ├── TagCollection.ts ├── retag.jsx └── tag.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | node_modules 3 | example 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/README.md -------------------------------------------------------------------------------- /bin/retag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/bin/retag.js -------------------------------------------------------------------------------- /bin/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/bin/tag.css -------------------------------------------------------------------------------- /example/JSXTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/example/JSXTransformer.js -------------------------------------------------------------------------------- /example/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/example/demo.css -------------------------------------------------------------------------------- /example/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/example/demo.html -------------------------------------------------------------------------------- /example/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/example/react.js -------------------------------------------------------------------------------- /example/retag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/example/retag.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/package.json -------------------------------------------------------------------------------- /src/TagCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/src/TagCollection.js -------------------------------------------------------------------------------- /src/TagCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/src/TagCollection.js.map -------------------------------------------------------------------------------- /src/TagCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/src/TagCollection.ts -------------------------------------------------------------------------------- /src/retag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/src/retag.jsx -------------------------------------------------------------------------------- /src/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VikramN/Re-Tag/HEAD/src/tag.css --------------------------------------------------------------------------------