├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bin └── hl.js ├── index.js ├── package.json ├── screen.png └── test ├── fixtures ├── makefile ├── test.cpp ├── test.js ├── test.json ├── test.m ├── test.md ├── test.py └── test.rb └── hl.js /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | node_modules 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/README.md -------------------------------------------------------------------------------- /bin/hl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/bin/hl.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/package.json -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/screen.png -------------------------------------------------------------------------------- /test/fixtures/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/makefile -------------------------------------------------------------------------------- /test/fixtures/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.cpp -------------------------------------------------------------------------------- /test/fixtures/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.js -------------------------------------------------------------------------------- /test/fixtures/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.json -------------------------------------------------------------------------------- /test/fixtures/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.m -------------------------------------------------------------------------------- /test/fixtures/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.md -------------------------------------------------------------------------------- /test/fixtures/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.py -------------------------------------------------------------------------------- /test/fixtures/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/fixtures/test.rb -------------------------------------------------------------------------------- /test/hl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/hl/HEAD/test/hl.js --------------------------------------------------------------------------------