-
Hi all! Sometimes when creating a content, a simple
Is there any option to configure how the new file is created? Ideally:
Obviously, having to choose this every time might be a crappy user experience, so there could be multiple levels of configuration:
Maybe something like this:
Maybe there could also be a check-mark on the title popup, which remembers the selection for the given folder: Thanks so much for this wonderful tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I just found this in the documentation and tried it out to auto-create everything as a pageBundle. "frontMatter.taxonomy.contentTypes": [
{
"name": "default",
"pageBundle": false,
"previewPath": null,
"template": "[[workspace]]/.frontmatter/templates/default.md",
"fields": [ ... ]
},
{
"name": "bundle with thumbnail",
"pageBundle": true,
"previewPath": null,
"template": "[[workspace]]/.frontmatter/templates/default.md",
"fields": [ ... ]
},
{
"name": "bundle with feature image",
"pageBundle": true,
"previewPath": null,
"template": "[[workspace]]/.frontmatter/templates/default.md",
"fields": [ ... ]
}
], That gives me the option to choose the content type: I think this should be sufficient for what I was asking about. |
Beta Was this translation helpful? Give feedback.
I just found this in the documentation and tried it out to auto-create everything as a pageBundle.