Converter.ConvertMarkdown

ConvertMarkdown(Stream, string)

Convert Markdown source to html. Result is HTMLDocument.

public static HTMLDocument ConvertMarkdown(Stream stream, string baseUri)
ParameterTypeDescription
streamStreamConversion source.
baseUriStringThe base URI of the document. It will be combined with the current directory path to form an absolute URL.

Return Value

Conversion result HTMLDocument.

See Also


ConvertMarkdown(Stream, string, Configuration)

Convert Markdown source to html. Result is HTMLDocument.

public static HTMLDocument ConvertMarkdown(Stream stream, string baseUri, 
    Configuration configuration)
ParameterTypeDescription
streamStreamConversion source.
baseUriStringThe base URI of the document. It will be combined with the current directory path to form an absolute URL.
configurationConfigurationThe environment configuration.

Return Value

Conversion result HTMLDocument.

See Also


ConvertMarkdown(Stream, string, string)

Convert Markdown source to html. Result is html file.

public static void ConvertMarkdown(Stream stream, string baseUri, string outputPath)
ParameterTypeDescription
streamStreamConversion source.
baseUriStringThe base URI of the document. It will be combined with the current directory path to form an absolute URL.
outputPathStringOutput file path.

See Also


ConvertMarkdown(Stream, string, Configuration, string)

Convert Markdown source to html. Result is html file.

public static void ConvertMarkdown(Stream stream, string baseUri, Configuration configuration, 
    string outputPath)
ParameterTypeDescription
streamStreamConversion source.
baseUriStringThe base URI of the document. It will be combined with the current directory path to form an absolute URL.
configurationConfigurationThe environment configuration.
outputPathStringOutput file path.

See Also


ConvertMarkdown(string)

Convert Markdown source to html. Result is HTMLDocument.

public static HTMLDocument ConvertMarkdown(string sourcePath)
ParameterTypeDescription
sourcePathStringPath to source Markdown file. It will be combined with the current directory path to form an absolute URL.

Return Value

Conversion result HTMLDocument.

See Also


ConvertMarkdown(string, Configuration)

Convert Markdown source to html. Result is HTMLDocument.

public static HTMLDocument ConvertMarkdown(string sourcePath, Configuration configuration)
ParameterTypeDescription
sourcePathStringPath to source Markdown file. It will be combined with the current directory path to form an absolute URL.
configurationConfigurationThe environment configuration.

Return Value

Conversion result HTMLDocument.

See Also


ConvertMarkdown(string, string)

Convert Markdown source to html. Result is html file.

public static void ConvertMarkdown(string sourcePath, string outputPath)
ParameterTypeDescription
sourcePathStringPath to source Markdown file. It will be combined with the current directory path to form an absolute URL.
outputPathStringOutput file path.

See Also


ConvertMarkdown(string, Configuration, string)

Convert Markdown source to html. Result is html file.

public static void ConvertMarkdown(string sourcePath, Configuration configuration, 
    string outputPath)
ParameterTypeDescription
sourcePathStringPath to source Markdown file. It will be combined with the current directory path to form an absolute URL.
configurationConfigurationThe environment configuration.
outputPathStringOutput file path.

See Also