Interface IMarkdownRenderer
Markdown renderer.
Namespace:Microsoft.DocAsCode.MarkdownLite
Assembly:Microsoft.DocAsCode.MarkdownLite.dll
Syntax
public interface IMarkdownRenderer
Properties
Engine
Get the markdown engine.
Declaration
IMarkdownEngine Engine { get; }
Property Value
Type | Description |
---|---|
IMarkdownEngine |
Links
Get the No. links.
Declaration
Dictionary<string, LinkObj> Links { get; }
Property Value
Type | Description |
---|---|
Dictionary<String, LinkObj> |
Options
Get the Options.
Declaration
Options Options { get; }
Property Value
Type | Description |
---|---|
Options |
Methods
Render(IMarkdownToken)
Render a token.
Declaration
StringBuffer Render(IMarkdownToken token)
Parameters
Type | Name | Description |
---|---|---|
IMarkdownToken | token | The token to render. |
Returns
Type | Description |
---|---|
StringBuffer | The text. |