1# https://taskfile.dev23version: '3'45vars:6 PUBLIC: youki:/srv/http/blog/78tasks:9 new:article:10 - 'printf "Title: " && read TITLE && hugo new "article/$(date +%Y)/$(date +%m)/${TITLE/ /_}.org"'11 new:tutorial:12 - 'printf "Title: " && read TITLE && hugo new "tutorial/$(date +%Y)/${TITLE/ /_}.org"'1314 serve:15 cmds:16 - hugo serve1718 build:19 cmds:20 - hugo2122 publish:23 deps: [build]24 cmds:25 - defer: rm -rf public26 - rsync ./public/ {{.PUBLIC}} -rP27