You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In SvelteKit each page is defined by a +page.svelte file. E.g.: src/routes/blog/[slug]/+page.svelte or src/routes/blog/[slug]/+page[.md / .mdx / .svx] since we're using MDsveX.
When creating content with the FrontMatter extension the default file is named index.md. This requires the SvelteKit end user having to rename the file to +page.md so that SvelteKit can direct the route to the specified markdown file.
Assuming we have the following set on fronmatter.json
@estruyf If the default file name will be defined within the content type (frontMatter.taxonomy.contentTypes) I think it would be redundant to include the file extension since there's already a fileType property. So I would suggest defining the default file name property within the content type, this way the user could have the option to change either the file name or the file type.
furkanb
added a commit
to furkanb/vscode-front-matter
that referenced
this issue
Feb 10, 2023
In SvelteKit each page is defined by a
+page.svelte
file. E.g.:src/routes/blog/[slug]/+page.svelte
orsrc/routes/blog/[slug]/+page[.md / .mdx / .svx]
since we're using MDsveX.When creating content with the FrontMatter extension the default file is named
index.md
. This requires the SvelteKit end user having to rename the file to+page.md
so that SvelteKit can direct the route to the specified markdown file.Assuming we have the following set on
fronmatter.json
One idea could be to be able to associate a default file name string (which defaults to index) for each content type. Like so:
Another idea could be to associate the default file name with a specific folder:
The text was updated successfully, but these errors were encountered: