我正在研究 prose.io,我想了解有关内容管理工作流程的更多信息。
prose.io 内容贡献者是否可以通过 prose.io 访问 GitHub 上的主存储库,或者他们是否在分支甚至分支上工作?
我想知道当每个人都可以访问时,主仓库会出现多少问题以及主仓库会变得多么混乱?
是否可以选择将拉取请求与散文结合起来?
将散文用于我的个人博客,并且可以访问它的主要 repo 散文。
但是,您可以做一些事情。在 Jekyll_config.yml
中,您可以设置散文参数选项来rooturl: "DIRECTORY NAME"
限制散文对目录的访问。在我的情况下,有一个目录被调用_posts
,散文无法编辑它之外的任何内容。还有一个ignore
选项基本上使文件夹在散文中不可见。我
这是我的散文配置,用作示例。在这里,我同时使用了 root 和忽略选项。
prose:
rooturl: '_posts'
media: 'img'
ignore:
- 404.html
- LICENSE
- feed.xml
- _config.yml
- /_layouts
- /_includes
- /css
- /img
- /js
metadata:
_posts:
- name: "layout"
field:
element: "hidden"
value: "post"
- name: "title"
field:
element: "text"
label: "Post title"
placeholder: "Title"
alterable: true
- name: "subtitle"
field:
element: "textarea"
label: "Subtitle"
placeholder: "A description of your post."
alterable: true
- name: "date"
field:
element: "text"
label: "Date"
help: "Enter date of post."
placeholder: "yyyy-mm-dd"
alterable: true
- name: "published"
field:
element: "checkbox"
label: "Publish"
help: "Check to publish post, uncheck to hide."
更多关于这里的选项>