QuestPDF.Markdown 1.9.0

dotnet add package QuestPDF.Markdown --version 1.9.0
NuGet\Install-Package QuestPDF.Markdown -Version 1.9.0
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="QuestPDF.Markdown" Version="1.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QuestPDF.Markdown --version 1.9.0
#r "nuget: QuestPDF.Markdown, 1.9.0"
#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.
// Install QuestPDF.Markdown as a Cake Addin
#addin nuget:?package=QuestPDF.Markdown&version=1.9.0

// Install QuestPDF.Markdown as a Cake Tool
#tool nuget:?package=QuestPDF.Markdown&version=1.9.0

<img src="/img/logo.svg?raw=true" width="128" align="right">

QuestPDF.Markdown

QuestPDF.Markdown allows rendering markdown into a QuestPDF document using the markdig parser.

Nuget Nuget

Usage

var text = 
@"# Hello, world!
*Greetings* from **markdown**!
> Hello, back!";

var document = Document.Create(container =>
{
    container.Page(page =>
    {
        page.Margin(20);
        page.Content().Markdown(text);
    });
});

Usage

Styling the output

The styling used by QuestPDF.Markdown can be configured using MarkdownRendererOptions.

var text = @"> Hello, world!";

var options = new MarkdownRendererOptions
{
    BlockQuoteBorderColor = Colors.Red.Medium,
    BlockQuoteBorderThickness = 5
};

var document = Document.Create(container =>
{
    container.Page(page =>
    {
        page.Margin(20);
        page.Content().Markdown(text, options);
    });
});

Rendering images

By default, downloading and rendering external images is disabled. Images can be downloaded using the ParsedMarkdownDocument.DownloadImages() method. The parsed markdown document can then be passed to the Markdown() extension method.

var text = @"![title](https://placehold.co/100x50.jpg)";

var markdown = ParsedMarkdownDocument.FromText(text);
await markdown.DownloadImages(httpClient: myHttpClient /* Optionally provide your own HttpClient */);

var document = Document.Create(container =>
{
    container.Page(page =>
    {
        page.Margin(20);
        page.Content().Markdown(markdown, options);
    });
});

What's supported?

The aim of this library is to support all basic markdown functionality and some of the extensions supported by markdig.

Currently the following features are supported:

  • Headings
  • Block quotes
  • Code blocks
  • Lists (ordered, unordered)
  • Emphasis (bold, italic)
  • Task lists
  • Extra emphasis (subscript, superscript, strikethrough, marked, inserted)
  • Tables
  • Images

Support for the following extensions is currently not planned:

  • Raw HTML
  • Math blocks
  • Diagrams

A full sample can be found in test.md and the resulting test.pdf.

Contributing

To quickly test changes made in the library, you can make use of the excellent QuestPDF previewer in combination with the QuestPDF.Markdown.Tests project and dotnet watch

To render the test markdown file in the previewer, run the following command in the root directory of the repository:

dotnet watch test --project ./tests/QuestPDF.Markdown.Tests -- --filter Name=Render

To render the test markdown file in the previewer with additional background colors and margins, run the following command in the root directory of the repository:

dotnet watch test --project ./tests/QuestPDF.Markdown.Tests -- --filter Name=RenderDebug

Any changes made to the MarkdownRenderer class will be automatically reflected in the previewer.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.9.0 509 4/29/2024
1.8.0 127 4/22/2024
1.8.0-beta.4 55 4/1/2024
1.8.0-beta.3 63 3/27/2024
1.8.0-beta.2 52 3/20/2024
1.8.0-beta.1 47 3/2/2024
1.8.0-alpha 70 2/20/2024
1.7.3 647 4/1/2024
1.7.2 77 4/1/2024
1.7.1 928 3/2/2024
1.7.0 6,453 2/20/2024
1.6.1 85 2/16/2024
1.6.0 218 2/7/2024
1.5.0 601 2/2/2024
1.4.0 554 12/27/2023
1.3.1 142 12/22/2023
1.3.0 942 12/8/2023
1.2.0 209 11/19/2023
1.1.0 661 11/15/2023
1.0.1 104 11/14/2023
1.0.0 121 11/13/2023
1.0.0-alpha.6 54 11/12/2023
1.0.0-alpha.5 49 11/12/2023