From a9be654146753a2e710583e53513cc1e2a0a80e9 Mon Sep 17 00:00:00 2001 From: ravenscroftj Date: Tue, 17 Dec 2024 11:25:01 +0000 Subject: [PATCH] Add brainsteam/content/posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701.md --- ...g-missing-subdirs-in-notesync1734434701.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 brainsteam/content/posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701.md diff --git a/brainsteam/content/posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701.md b/brainsteam/content/posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701.md new file mode 100644 index 0000000..3d58ca2 --- /dev/null +++ b/brainsteam/content/posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701.md @@ -0,0 +1,23 @@ +--- +date: '2024-12-17T11:25:01.697646' +post_meta: +- date +tags: +- softeng +- python +- publishing +- obsidian +- colophon +title: Fixing Missing Subdirs in Notesync +type: posts +url: /posts/2024/12/17/fixing-missing-subdirs-in-notesync1734434701 + +--- + + + +

Last year I wrote a small utility called notesync to assist in my digital garden publication workflow. Thes script reads the frontmatter of my notes and looks for public: true. Then it copies notes from my private obsidian vault over to a public folder ready to be processed and published by quartz.

+

+ Today I noticed that content that was in a subfolder was not being detected or synchronised properly. I worked out that the Python glob module has a recursive=true flag that I had forgotten to set. Setting this flag has resolved the problem and content in sub-sub directories is now appearing on my site. +
+

\ No newline at end of file