I have over 150 blog posts markdown files with YAML front matter. I either need to import them into Grav or run a script to create folders, move and rename these files. I’m sure I’m not the first person to have ever needed this feature, but I haven’t found anything searching discourse or the main site.
well, the lack of response (or even people viewing my question) is a bit concerning. Can’t tell if no one visits because they never need help, or if the userbase is sparse.
I haven’t answered because I don’t know. I understand and agree with what you say. I would expect it’s been done before and you could find a tool, probably not Grav-oriented, not that that matters. You might need to write a short script. Please share if you do.
Is there any way to simply drop all my markdown files into a folder (say, named ‘blog’) and serve them from there? Having to create a separate folder for each of the 155 files is the part I would like to avoid…
I don’t know it there is a specific tool to import your markdown files, but if you don’t want ton create a separate folder for each, you could use a command for that.
Let’s say that all your posts are in the same folder and you want to create a seperate folder for each and move the file in its new folder :
Open the “Run window” (windows + r)
Lauch a command prompt (write cmd, then press enter)
Navigate to your folder using cd
Let the magic begins : for %i in (*) do move “%i” “%~ni”
1 - strip the date from the file name
2 - create a folder based on the remaining file name
3 - move the file into the new folder
4 - rename the file to ‘post.md’
I don’t use linux so I won’t be able to help you with that, but you could have a look to this question on stack overflow:
There is the “create folder and move file” part already.
If the date always has the same format, you could strip the corresponding number of characters.
That’s where my knowledge stop. You’ll need someone using linux from there.
I did a lot of search/replace using find and sed - but I often caused more problems along the way. Stripped the dashes that delineate the header before I discovered that they were fairly essential. When trying to fix my markdown image links I managed to add square brackets behind every exclamation point in every post. I use way too many exclamation points, btw…