0.1.1 • Published 13 years ago
hashhash v0.1.1
hashhash rewrites single line CoffeeScript comments beginning with double hashes as block comments.
Install
npm install hashhash
Command-line Usage
Convert to file using
hashhash < input.coffee > output.coffeeConvert and compile
hashhash < input.coffee | coffee -csExamples
Single-line comment
hashhash converts following single-line CoffeeScript comment
## observe the double hash and space before this commentto
### observe the double hash and space before this comment ###which when compiled into javascript will be
/* observe the double hash and space before this comment
*/Multiple single-line comments
hashhash converts following single-line CoffeeScript comments
## observe the double hash and space before this comment
## multiple lines must have matching indentationto
###
observe the double hash and space before this comment
multiple lines must have matching indentation
###which when compiled into javascript will be
/*
observe the double hash and space before this comment
multiple lines must have matching indentation
*/