EPS.Extensions.YamlMarkdown 10.2.3

dotnet add package EPS.Extensions.YamlMarkdown --version 10.2.3
 
NuGet\Install-Package EPS.Extensions.YamlMarkdown -Version 10.2.3
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EPS.Extensions.YamlMarkdown" Version="10.2.3" />
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EPS.Extensions.YamlMarkdown" Version="10.2.3" />
 
Directory.Packages.props
<PackageReference Include="EPS.Extensions.YamlMarkdown" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EPS.Extensions.YamlMarkdown --version 10.2.3
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EPS.Extensions.YamlMarkdown, 10.2.3"
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EPS.Extensions.YamlMarkdown@10.2.3
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EPS.Extensions.YamlMarkdown&version=10.2.3
 
Install as a Cake Addin
#tool nuget:?package=EPS.Extensions.YamlMarkdown&version=10.2.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

YamlMarkdown

This NuGet package combines YamlDotNet and the Markdig Markdown parsing engine and makes a dead-simple class for parsing a file or TextReader object and deserializing your YAML object type as well as giving you your content in the original Markdown and generic HTML renderings.

The Markdig plugin uses a YAML front matter extension that will parse a YAML front matter into the MarkdownDocument.

Ours treats the YAML front matter as a completely separate object to be used for other purposes (SEO metadata in our use case).

How It Works

// Article in this case is a class of metadata properties 
// saved in the YAML
var parser = new YamlMarkdown<Article>();
// we get the Article object here
var article = parser.Parse("article.md");
//...and here
Console.WriteLine(parser.DataObject);
//...and the markup (separate from the YAML) here
Console.WriteLine(parser.Markdown);
//...and the parsed HTML here
Console.WriteLine(parser.Html);

The YAML markup at the top of your Markdown file must end with three dashes and a newline before your Markdown starts in order for this to work.

Example:

Title: Blog title
Description: "Blog description."
Published: 10/3/2019
Updated: 05/07/2020
Keywords: this, that, something else
Image: https://res.cloudinary.com/endpoint-systems/image/upload/v1548616596/gae_qlaf4t.png
Categories: 
 - Category1
 - Category2
--- 
(blog post here)
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed.
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EPS.Extensions.YamlMarkdown:

Package Downloads
MeshWeaver.Markdown

Package Description

MeshWeaver.Hosting

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.2.3 2,842 3/18/2026
10.2.2 124 3/18/2026
10.2.1 126 3/18/2026
10.2.0 133 3/18/2026
10.1.0 374 1/29/2026
10.0.0 319 1/8/2026
8.1.0 761 12/7/2025
8.0.0 2,940 6/18/2024
6.1.0 357 12/29/2023
6.0.2 542 2/1/2023
6.0.1 512 12/13/2022
6.0.0 537 1/5/2022
5.0.0 594 5/13/2021
1.0.0 765 8/25/2020
0.9.0 675 6/27/2020
0.8.0 737 5/18/2020
0.7.0 827 3/30/2020
0.6.0 800 2/4/2020
0.5.0 753 2/4/2020
0.4.0 788 10/25/2019
Loading failed

Fix critical bug in markdown read