✅ Familiarity with `YamlDotNet` package, parsing to strongly typed object keeps failing
So I have this
.md
to .yaml
parser written, and a package that parses a yaml into a .NET object class, however it keeps telling me the properties cannot be found.
For example, when I parse with the example class shown in https://dotnetfiddle.net/k1d6I2 my fiddle.
The method I use for parsing is in there too.
However, when I try to parse a markdown file:
I get the following error:
Can anyone help me out here? Or is there an easier way to parse .md files into JSON instead? (not using a console application, like this git linkhttps://github.com/markjulmar/MarkdownToJson1 Reply
Addition:
Both
https://manigandham.com/post/parse-yaml-frontmatter-markdown-dotnet
and
https://github.com/aaubry/YamlDotNet
Are documentation on the package I use