Open nmariano9 opened 1 year ago
When setting any type of custom front matter template -- for example, simply:
---. id: {{{id}}} created: {{{date_read}}} ---.
I'm getting the following "omnivore_error" front matter instead:
---. id: 5sHP04gBKc5BngQzxRls omnivore_error: There was an error parsing the front matter template. See console for details. ---.
Upon checking the console, I get the titular error message:
YAMLParseError: Source contains multiple documents; please use YAML.parseAllDocuments()
Not much of a YAML or Python expert. Any tips on how to get around this?
Hey @nmariano9 sorry for the late reply.
I think the template is invalid with the . behind the --- and you can try with
.
---
--- id: {{{id}}} created: {{{date_read}}} ---
It is working locally for me
When setting any type of custom front matter template -- for example, simply:
I'm getting the following "omnivore_error" front matter instead:
Upon checking the console, I get the titular error message:
Not much of a YAML or Python expert. Any tips on how to get around this?