Questions tagged [gridsome-source-filesystem]

3 questions
2
votes
2 answers

Is it possible to use nested folders in gridsome when using the source-filesystem plugin?

My desired content folder structure is as follows: - content (directory) -- home.md -- trip_A (directory) --- intro.md --- day_1.md --- day_2.md -- trip_B (directory) --- intro.md --- day_1.md I would ideally like to define this as a single…
songololo
  • 4,724
  • 5
  • 35
  • 49
2
votes
1 answer

Gridsome how to render link icon in markdown with source-filesystem?

With Gridsome's source-filesystem plugin in gridsome.config.js: plugins: [ { use: '@gridsome/source-filesystem', options: { path: 'docs/**/*.md', typeName: 'Doc', remark: { plugins:…
0
votes
1 answer

Gridsome source-filesystem add tag description

I'm using @gridsome/source-filesystem with this config: { use: '@gridsome/source-filesystem', options: { typeName: 'Post', path: 'content/posts/**/*.md', refs: { tags: { typeName: 'Tag', create: true }, …