Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down