5 lines
79 B
Bash
5 lines
79 B
Bash
# Hugo new post
|
|
hnp() {
|
|
hugo new posts/$1.md
|
|
$EDITOR content/posts/$1.md
|
|
}
|