/// <summary>
 /// Converts the HTML document (located in the local file system) to PDF and uploads resulting file to the storage.
 /// </summary>
 /// <param name="localFilePath">The local file system path to source document.</param>
 /// <param name="outPath">The path to resulting file; like this: [/Folder1][/Folder2]/Filename.md</param>
 /// <param name="useGit">Use Git flavor of Markdown</param>
 /// <param name="storage">Source and resulting document storage</param>
 /// <returns>AsposeResponse | Response status.</returns>
 public AsposeResponse PostConvertDocumentToMarkdown(string localFilePath, string outPath, bool?useGit = false, string storage = null)
 {
     return(ConversionApiImpl.PostConvertDocumentToMarkdown(localFilePath, outPath, useGit, storage));
 }
 /// <summary>
 ///  Converts the HTML document stream to Markdown and uploads resulting file to the storage.
 /// </summary>
 /// <param name="inStream">Source document stream.</param>
 /// <param name="outPath">The path to resulting file; like this: [/Folder1][/Folder2]/Filename.md</param>
 /// <param name="useGit">Use Git flavor of Markdown</param>
 /// <param name="storage">Source and resulting document storage</param>
 /// <returns>AsposeResponse | Response status.</returns>
 public AsposeResponse PostConvertDocumentToMarkdown(Stream inStream, string outPath, bool?useGit = false, string storage = null)
 {
     return(ConversionApiImpl.PostConvertDocumentToMarkdown(inStream, outPath, useGit, storage));
 }