Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Wraps the MarkDig SDK for handling markdown.
IMarkdownService.cs
_pipeline
MarkdownPipeline
public MarkdownService() { _pipeline = new MarkdownPipelineBuilder() .UseAdvancedExtensions() .UseSoftlineBreakAsHardlineBreak() .Build(); }
MarkdownService
ConvertMarkdownToHtml
string
AddSuperscriptCitations
[doc#]
namespace Numa.Interfaces { public interface IMarkdownService { string ConvertMarkdownToHtml( string markdown ); string AddSuperscriptCitations( string markdown ); } }