新建文章
1
|
hugo new content post/blog-history/index.md
|
今天将blog的markdown文章从文章名.md
改成了Page Bundles
模式.
hugo官方对Page Bundles
模式的介绍在这里
1
2
3
4
5
|
#/bin/bash
# 从 文章名.md 改成 Page Bundles模式
find . -type f -name "*.md" -exec sh -c 'mv "$1" "$(dirname "$1")/index.md"' _ {} \;
# 从 Page Bundles模式 改成 文章名.md
for file in */*.md; do mv "$file" "$(dirname "$file")/$(basename "$(dirname "$file").md")"; done
|