Yaml2Doc.Markdown
1.0.0
See the version list below for details.
dotnet add package Yaml2Doc.Markdown --version 1.0.0
NuGet\Install-Package Yaml2Doc.Markdown -Version 1.0.0
<PackageReference Include="Yaml2Doc.Markdown" Version="1.0.0" />
<PackageVersion Include="Yaml2Doc.Markdown" Version="1.0.0" />
<PackageReference Include="Yaml2Doc.Markdown" />
paket add Yaml2Doc.Markdown --version 1.0.0
#r "nuget: Yaml2Doc.Markdown, 1.0.0"
#:package Yaml2Doc.Markdown@1.0.0
#addin nuget:?package=Yaml2Doc.Markdown&version=1.0.0
#tool nuget:?package=Yaml2Doc.Markdown&version=1.0.0
Yaml2Doc.Markdown
Yaml2Doc.Markdown provides a baseline Markdown renderer for the Yaml2Doc core model (PipelineDocument).
For v1, the renderer is intentionally simple:
- Renders a top-level heading from the document
Name, if present. - Falls back to
# YAML Documentif nonameis provided. - Emits a
## Root Keyssection listing the top-level keys in the YAML document.
Use this package if you already have a PipelineDocument and just want a predictable Markdown representation.
Installation
dotnet add package Yaml2Doc.Markdown
Basic usage
Given a PipelineDocument (usually produced by Yaml2Doc.Core):
using Yaml2Doc.Core.Models;
using Yaml2Doc.Markdown;
// Suppose you obtained this from Yaml2Doc.Core
PipelineDocument document = GetPipelineDocumentSomehow();
// Create the renderer
IMarkdownRenderer renderer = new BasicMarkdownRenderer();
// Render to Markdown
string markdown = renderer.Render(document);
// Write or use the Markdown
Console.WriteLine(markdown);
Typical output shape:
# My Pipeline
## Root Keys
- name
- trigger
- jobs
You can implement your own IMarkdownRenderer if you need richer or dialect-specific Markdown.
API documentation
For full type and member details, see:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. 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 was computed. 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. |
-
net9.0
- Xml2Doc.MSBuild (>= 1.4.0-preview.80-g111a6ac)
- Yaml2Doc.Core (>= 1.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Yaml2Doc.Markdown:
| Package | Downloads |
|---|---|
|
Yaml2Doc.Cli
Command-line tool that converts YAML pipeline definitions into Markdown documentation. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.0 | 193 | 12/4/2025 |
| 1.1.0-preview.26-ga1ebf43 | 168 | 12/4/2025 |
| 1.1.0-preview.25-gc4d1d21 | 168 | 12/4/2025 |
| 1.0.0 | 183 | 12/3/2025 |
| 1.0.0-preview.24-gd822a58 | 167 | 12/3/2025 |
| 1.0.0-preview.23-g2fad194 | 172 | 12/3/2025 |
| 1.0.0-preview.22-gd7f78e2 | 171 | 12/3/2025 |
| 1.0.0-preview.21-g71d2f29 | 173 | 12/3/2025 |
| 1.0.0-preview.20-ga2d3c5e | 167 | 12/3/2025 |