Convert TXT to MD via C#
Export Excel spreadsheets to MD format on .NET Framework, .NET Core, Mono or Xamarin Platforms.
How to Convert TXT to MD Using C#
In order to convert TXT to MD, we will use Aspose.Cells for .NET API which is a feature-rich, powerful and easy to use document manipulation and conversion API for C# platform. Open NuGet package manager, search for Aspose.Cells and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Cells
Steps to Convert TXT to MD via C#
.NET developers can easily load & convert TXT files to MD in just a few lines of code.
- Load TXT file with an instance of Workbook
- Call the Workbook.Save method
- Pass output path with MD extension as parameter
- Check specified path for resultant MD file
System Requirements
Before running the .NET conversion example code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET, .NET Core, Mono or Xamarin Platforms..
- Development environment like Microsoft Visual Studio.
- Add reference to the Aspose.Cells for .NET DLL in your project.
using Aspose.Cells;
var workbook = new Workbook("Input.xlsx");
workbook.Save("Output.pdf");
TXT What is TXT File Format
A file with .TXT extension represents a text document that contains plain text in the form of lines. Paragraphs in a text document are recognized by carriage returns and are used for better arrangement of file contents. A standard text document can be opened in any text editor or word processing application on different operating systems. All the text contained in such a file is in human-readable format and represented by sequence of characters.
Read MoreMD What is MD File Format
Text files created with Markdown language dialects is saved with .md or .MARKDOWN file extension. MD files are saved in plain text format that uses Markdown language which also includes inline text symbols, defining how a text can be formatted such as indentations, table formatting, fonts, and headers. MD files can be converted to HTML with a program called Markdown. Markdown language is released by John Gruber.
Read MoreOther Supported Conversions
You can also convert TXT into many other file formats including few listed below.