lpains.documorph
0.0.7
See the version list below for details.
dotnet add package lpains.documorph --version 0.0.7
NuGet\Install-Package lpains.documorph -Version 0.0.7
<PackageReference Include="lpains.documorph" Version="0.0.7" />
paket add lpains.documorph --version 0.0.7
#r "nuget: lpains.documorph, 0.0.7"
// Install lpains.documorph as a Cake Addin #addin nuget:?package=lpains.documorph&version=0.0.7 // Install lpains.documorph as a Cake Tool #tool nuget:?package=lpains.documorph&version=0.0.7
documorph
documorph
is a .NET package and command-line tool for converting between document file formats. The initial implementation supports only .docx
to .md
files, but other formats will be considered for the future.
Package
dotnet package install lpains.documorph --prerelease
Getting Started
// Create an instance of the DocxToMarkdownProcessor class. This class requires the .docx file path.
var processor = new DocxToMarkdownProcessor(source.FullName);
// Invoke the Process() method which returns the markdown content and media files.
var (markdown, media) = processor.Process();
CLI
dotnet tool install --global lpains.documorph.cli --prerelease
Getting Started
Upon installation, access the tool by executing documorph
in your terminal. For specific command details, refer to the sections below or utilize the CLI help via documorph -h
.
documorph md --in <input> --out <output> [-?, -h, --help]
Basic usage example:
documorph --in .\source.docx `
--out .\target.md
Output file (target.md):
# Heading 1
1. numbered lists are supported
## Heading 2
- bullet lists too
### Heading 3
> You can create quotes and tables
| Column 1 | Column 2 |
|----------|----------|
| value 1 | value 2 |
#### Heading 4
You can also add links like this: [Link](https://www.example.com)
And images like this:
![Image](image1.png)
And **bold** or *italic* or __underscore__ or ~~striked~~ text.
Parameters
--in
(required)
The input .docx
file or directory. If a folder is provided, all the .docx
files will be converted. Any .docx
file should be a valid Open XML Word document.
--out
(required)
The output file or directory full path. The media files will be dropped in the folder where the output files are in.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- DocumentFormat.OpenXml (>= 3.0.2)
- DocumentFormat.OpenXml.Linq (>= 3.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.