├── .gitignore ├── .npmignore ├── .travis.yml ├── Makefile ├── README.md ├── index.js ├── package.json ├── px_to_rem ├── rem.cxx ├── style.css └── test ├── cases ├── anchor.css ├── anchor_t.css ├── style.css └── style_t.css └── parse.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | node_modules 3 | style_t.css 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/mocha 3 | 4 | .PHONY: test 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/package.json -------------------------------------------------------------------------------- /px_to_rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/px_to_rem -------------------------------------------------------------------------------- /rem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/rem.cxx -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/style.css -------------------------------------------------------------------------------- /test/cases/anchor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/test/cases/anchor.css -------------------------------------------------------------------------------- /test/cases/anchor_t.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/test/cases/anchor_t.css -------------------------------------------------------------------------------- /test/cases/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/test/cases/style.css -------------------------------------------------------------------------------- /test/cases/style_t.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/test/cases/style_t.css -------------------------------------------------------------------------------- /test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennis-johnson-dev/px_to_rem/HEAD/test/parse.js --------------------------------------------------------------------------------