Codeuctivity.OpenXmlPowerTools
7.0.224
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Codeuctivity.OpenXmlPowerTools --version 7.0.224
NuGet\Install-Package Codeuctivity.OpenXmlPowerTools -Version 7.0.224
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Codeuctivity.OpenXmlPowerTools" Version="7.0.224" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Codeuctivity.OpenXmlPowerTools --version 7.0.224
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Codeuctivity.OpenXmlPowerTools, 7.0.224"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Codeuctivity.OpenXmlPowerTools as a Cake Addin #addin nuget:?package=Codeuctivity.OpenXmlPowerTools&version=7.0.224 // Install Codeuctivity.OpenXmlPowerTools as a Cake Tool #tool nuget:?package=Codeuctivity.OpenXmlPowerTools&version=7.0.224
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OpenXmlPowerTools
This is a fork of https://www.nuget.org/packages/OpenXmlPowerTools/
Focus of this fork
- Linux, Windows and MacOs support
- Conversion of DOCX to HTML/CSS.
Example - Convert DOCX to HTML
var sourceDocxFileContent = File.ReadAllBytes("./source.docx");
using var memoryStream = new MemoryStream();
await memoryStream.WriteAsync(sourceDocxFileContent, 0, sourceDocxFileContent.Length);
using var wordProcessingDocument = WordprocessingDocument.Open(memoryStream, true);
var settings = new WmlToHtmlConverterSettings("htmlPageTitle");
var html = WmlToHtmlConverter.ConvertToHtml(wordProcessingDocument, settings);
var htmlString = html.ToString(SaveOptions.DisableFormatting);
File.WriteAllText("./target.html", htmlString, Encoding.UTF8);
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- DocumentFormat.OpenXml (>= 2.20.0)
- SixLabors.Fonts (>= 1.0.1)
- SixLabors.ImageSharp (>= 2.1.6)
GitHub repositories
This package is not used by any popular GitHub repositories.
Merge pull request #94 from Codeuctivity/dependabot/github_actions/actions/stale-9
Bump actions/stale from 8 to 9