Hello :username, :repository is tiny string template engine
npm install mnml-tpl
Replace all :keys in string with given object.
```
npm i -S mnml-tpl
`js
var tpl = require('mnml-tpl');
var locals = { host: 'world', user: 'hello' };
var template = 'ssh :user@:host';
tpl(template)(locals); // ssh hello@world
``
MIT