From 07617e277c01f8d6bdacd716162d2588765de237 Mon Sep 17 00:00:00 2001 From: AtchayaSekar28 Date: Fri, 24 Jul 2026 12:01:18 +0530 Subject: [PATCH] Task (1042583): Revamp Markdown Library in Document SDK UG Documentation-Removed the unwanted comments --- .../Markdown-Library/NET/Loading-and-Saving-document.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Document-Processing/Markdown/Markdown-Library/NET/Loading-and-Saving-document.md b/Document-Processing/Markdown/Markdown-Library/NET/Loading-and-Saving-document.md index 6c42746e95..d83195e6e2 100644 --- a/Document-Processing/Markdown/Markdown-Library/NET/Loading-and-Saving-document.md +++ b/Document-Processing/Markdown/Markdown-Library/NET/Loading-and-Saving-document.md @@ -285,7 +285,6 @@ MarkdownDocument markdownDocument = new MarkdownDocument(); // Opens an existing Markdown document using the Open method. markdownDocument.Open("Input.md"); // To-Do some manipulation -// To-Do some manipulation // Saves the Markdown document to the file system markdownDocument.Save("Output.md"); // Disposes the document to release all memory @@ -300,7 +299,6 @@ Dim markdownDocument As New MarkdownDocument() ' Opens an existing Markdown document using the Open method. markdownDocument.Open("Input.md") 'To-Do some manipulation -'To-Do some manipulation ' Saves the Markdown document to the file system markdownDocument.Save("Output.md") ' Disposes the document to release all memory @@ -327,7 +325,6 @@ MarkdownDocument markdownDocument = new MarkdownDocument(); // Opens an existing Markdown document using the Open method. markdownDocument.Open("Input.md"); // To-Do some manipulation -// To-Do some manipulation // Creates an instance of memory stream MemoryStream stream = new MemoryStream(); // Saves the Markdown document to the stream @@ -344,7 +341,6 @@ Dim markdownDocument As New MarkdownDocument() ' Opens an existing Markdown document using the Open method. markdownDocument.Open("Input.md") 'To-Do some manipulation -'To-Do some manipulation 'Creates an instance of memory stream Dim stream As New MemoryStream() ' Saves the Markdown document to the stream @@ -460,7 +456,6 @@ The following code example demonstrates how to get the Markdown content as text. // Opens an existing Markdown document. MarkdownDocument markdownDocument = new MarkdownDocument("Input.md"); // To-Do some manipulation -// To-Do some manipulation // Retrieves the Markdown document content as text. string mdContent = markdownDocument.GetMarkdownText(); // Disposes the document to release all memory @@ -473,7 +468,6 @@ markdownDocument.Dispose(); ' Opens an existing Markdown document. Dim markdownDocument As MarkdownDocument = New MarkdownDocument("../../Data/Input.md") ' To-Do some manipulation -' To-Do some manipulation ' Retrieves the Markdown document content as text. Dim mdContent As String = markdownDocument.GetMarkdownText() ' Disposes the document to release all memory @@ -500,7 +494,6 @@ Once the document manipulation and save operations are completed, you should clo // Opens, saves and closes a Markdown document. MarkdownDocument markdownDocument = new MarkdownDocument("Input.md"); -// To-Do some manipulation // To-Do some manipulation // Saves the Markdown document to the file system @@ -516,7 +509,6 @@ markdownDocument.Dispose(); ' Opens, saves and closes a Markdown document. Dim markdownDocument As New MarkdownDocument("Input.md") -'To-Do some manipulation 'To-Do some manipulation ' Saves the Markdown document to the file system