如何维护pelican中的页面文件夹结构?
How to maintain the page folder structure in pelican?
我在路径 content/pages 中复制了几个文件夹。在 运行 pelican content 命令之后,我在输出文件夹下得到了 html 文件转换,其中所有 html 文件被整体复制到 output/pages 下。
例如:
如果我有文件夹结构:
内容
- pages
- hello
- hello.html
- world
- world.html
我得到的输出为:
输出
- pages
- hello.html
- world.html
我需要在输出文件夹中保留原始文件夹结构。
USE_FOLDER_AS_CATEGORY = True 选项无效。显然,它仅适用于文章而不适用于页面。
有没有其他方法来构建文件夹结构?
我相信以下插件是为您描述的确切用例设计的:https://github.com/akhayyat/pelican-page-hierarchy
我在路径 content/pages 中复制了几个文件夹。在 运行 pelican content 命令之后,我在输出文件夹下得到了 html 文件转换,其中所有 html 文件被整体复制到 output/pages 下。
例如:
如果我有文件夹结构:
内容
- pages
- hello
- hello.html
- world
- world.html
我得到的输出为:
输出
- pages
- hello.html
- world.html
我需要在输出文件夹中保留原始文件夹结构。
USE_FOLDER_AS_CATEGORY = True 选项无效。显然,它仅适用于文章而不适用于页面。
有没有其他方法来构建文件夹结构?
我相信以下插件是为您描述的确切用例设计的:https://github.com/akhayyat/pelican-page-hierarchy