├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json ├── src └── nodemailer-markdown.js └── test └── nodemailer-markdown-test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | .jshintrc 3 | test -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/package.json -------------------------------------------------------------------------------- /src/nodemailer-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/src/nodemailer-markdown.js -------------------------------------------------------------------------------- /test/nodemailer-markdown-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/nodemailer-markdown/HEAD/test/nodemailer-markdown-test.js --------------------------------------------------------------------------------