Example of Create Markdown in ASP.NET Core Markdown Library
This sample demonstrates how to create a Markdown document with various elements such as headings, text, images, lists, tables, hyperlinks, and code blocks using .NET Markdown library.
DEMO
SOURCE
- Create Markdown documents programmatically using a document object model.
- Add structured content such as headings, paragraphs, blockquotes, and thematic breaks.
- Apply rich text formatting including bold, italic, strikethrough, inline code, and subscript/superscript.
- Insert images, hyperlinks, lists, checkboxes and tables.
- Include code blocks for technical documentation.
- Generate and save the Markdown document as a file or stream it to the browser.
More information about creating Markdown documents can be found in this
Documentation
section.