我正在研究prose.io,并且想了解有关内容管理工作流程的更多信息。
prose.io内容贡献者是通过prose.io访问GitHub上的主存储库,还是在分支机构甚至分支上工作?
我想知道会有多少错误,每个人都可以访问时主存储库会变得多么混乱?
是否可以将拉取请求与散文结合在一起?
最佳答案
将prose用于我的个人博客及其主回购散文可以访问。
但是,您可以做一些事情。在Jekyll _config.yml
中,您可以为rooturl: "DIRECTORY NAME"
设置散文参数选项,这是限制散文对目录的访问。在我的情况下,存在一个名为_posts
的目录,prose无法对其进行任何编辑。还有ignore
选项,基本上使文件夹在散文上不可见。一世
这是我的散文配置,用作示例。在这里,我同时使用root和ignore选项。
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."
更多关于这里的选项>
https://github.com/prose/prose/wiki/Prose-Configuration
关于jekyll - Prose.io内容管理工作流程介绍,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26006731/