Yosh

Results 3 issues of Yosh

Remove semicolons from syntax ;) **Not bad** ``` func Animal(name) { this.move = func (distance) { alert('\(name) moved \(distance)m.'); }; } var sam = new Animal('Sammy the Python'); sam.move(45); ```...

enhancement

Allow configuration to set the posts permalink. For example: ```bash TOTA_PERMALINK="/:year/:month/:day/:title" ``` Should create posts with the directory structure: ```bash posts/2019/06/29/hello-world

enhancement

Add a `--template` option to the create CLI command. ```bash tota new --template posts.mustache "Hello, world!" ```

enhancement