Converter.ConvertMarkdown
Contents
[
Hide
]ConvertMarkdown(Stream, string)
Convert Markdown source to html. Result is HTMLDocument
.
public static HTMLDocument ConvertMarkdown(Stream stream, string baseUri)
Parameter | Type | Description |
---|---|---|
stream | Stream | Conversion source. |
baseUri | String | The 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
- class HTMLDocument
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(Stream, string, Configuration)
Convert Markdown source to html. Result is HTMLDocument
.
public static HTMLDocument ConvertMarkdown(Stream stream, string baseUri,
Configuration configuration)
Parameter | Type | Description |
---|---|---|
stream | Stream | Conversion source. |
baseUri | String | The base URI of the document. It will be combined with the current directory path to form an absolute URL. |
configuration | Configuration | The environment configuration. |
Return Value
Conversion result HTMLDocument
.
See Also
- class HTMLDocument
- class Configuration
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(Stream, string, string)
Convert Markdown source to html. Result is html file.
public static void ConvertMarkdown(Stream stream, string baseUri, string outputPath)
Parameter | Type | Description |
---|---|---|
stream | Stream | Conversion source. |
baseUri | String | The base URI of the document. It will be combined with the current directory path to form an absolute URL. |
outputPath | String | Output file path. |
See Also
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
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)
Parameter | Type | Description |
---|---|---|
stream | Stream | Conversion source. |
baseUri | String | The base URI of the document. It will be combined with the current directory path to form an absolute URL. |
configuration | Configuration | The environment configuration. |
outputPath | String | Output file path. |
See Also
- class Configuration
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(string)
Convert Markdown source to html. Result is HTMLDocument
.
public static HTMLDocument ConvertMarkdown(string sourcePath)
Parameter | Type | Description |
---|---|---|
sourcePath | String | Path 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
- class HTMLDocument
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(string, Configuration)
Convert Markdown source to html. Result is HTMLDocument
.
public static HTMLDocument ConvertMarkdown(string sourcePath, Configuration configuration)
Parameter | Type | Description |
---|---|---|
sourcePath | String | Path to source Markdown file. It will be combined with the current directory path to form an absolute URL. |
configuration | Configuration | The environment configuration. |
Return Value
Conversion result HTMLDocument
.
See Also
- class HTMLDocument
- class Configuration
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(string, string)
Convert Markdown source to html. Result is html file.
public static void ConvertMarkdown(string sourcePath, string outputPath)
Parameter | Type | Description |
---|---|---|
sourcePath | String | Path to source Markdown file. It will be combined with the current directory path to form an absolute URL. |
outputPath | String | Output file path. |
See Also
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML
ConvertMarkdown(string, Configuration, string)
Convert Markdown source to html. Result is html file.
public static void ConvertMarkdown(string sourcePath, Configuration configuration,
string outputPath)
Parameter | Type | Description |
---|---|---|
sourcePath | String | Path to source Markdown file. It will be combined with the current directory path to form an absolute URL. |
configuration | Configuration | The environment configuration. |
outputPath | String | Output file path. |
See Also
- class Configuration
- class Converter
- namespace Aspose.Html.Converters
- assembly Aspose.HTML