blog-history

blog history

新建文章

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
Licensed under CC BY-NC-SA 4.0
最后更新于 Nov 29, 2023
Built with Hugo
主题 StackJimmy 设计