Codeuctivity.OpenXmlPowerTools
9.0.475
Prefix Reserved
dotnet add package Codeuctivity.OpenXmlPowerTools --version 9.0.475
NuGet\Install-Package Codeuctivity.OpenXmlPowerTools -Version 9.0.475
<PackageReference Include="Codeuctivity.OpenXmlPowerTools" Version="9.0.475" />
<PackageVersion Include="Codeuctivity.OpenXmlPowerTools" Version="9.0.475" />
<PackageReference Include="Codeuctivity.OpenXmlPowerTools" />
paket add Codeuctivity.OpenXmlPowerTools --version 9.0.475
#r "nuget: Codeuctivity.OpenXmlPowerTools, 9.0.475"
#:package Codeuctivity.OpenXmlPowerTools@9.0.475
#addin nuget:?package=Codeuctivity.OpenXmlPowerTools&version=9.0.475
#tool nuget:?package=Codeuctivity.OpenXmlPowerTools&version=9.0.475
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- DocumentFormat.OpenXml (>= 3.3.0)
- SkiaSharp (>= 3.119.1)
- SkiaSharp.NativeAssets.Linux.NoDependencies (>= 3.119.1)
-
net8.0
- DocumentFormat.OpenXml (>= 3.3.0)
- SkiaSharp (>= 3.119.1)
- SkiaSharp.NativeAssets.Linux.NoDependencies (>= 3.119.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Codeuctivity.OpenXmlPowerTools:
| Package | Downloads |
|---|---|
|
Codeuctivity.OpenXmlToHtml
Converts docx to html without the need to setup any dependency |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.475 | 0 | 1/22/2026 |
| 9.0.463 | 247 | 1/12/2026 |
| 9.0.456 | 202 | 1/6/2026 |
| 9.0.434 | 3,008 | 11/15/2025 |
| 9.0.416 | 1,821 | 10/11/2025 |
| 9.0.385 | 59,352 | 8/15/2025 |
| 8.0.374 | 2,186 | 8/2/2025 |
| 8.0.369 | 872 | 7/22/2025 |
| 8.0.314 | 13,745 | 3/1/2025 |
| 8.0.310 | 231 | 2/26/2025 |
| 8.0.306 | 174 | 2/26/2025 |
| 8.0.302 | 327 | 2/22/2025 |
| 8.0.295 | 348 | 2/15/2025 |
| 8.0.292 | 209 | 2/14/2025 |
| 8.0.251 | 14,689 | 7/24/2024 |
| 8.0.237 | 8,945 | 3/19/2024 |
| 7.0.210 | 9,038 | 11/14/2023 |
| 6.0.195 | 16,810 | 9/12/2023 |
| 6.0.178 | 604 | 8/11/2023 |
| 6.0.172-Prerelease | 248 | 7/15/2023 |
| 5.1.156-Prerelease | 220 | 7/6/2023 |
| 5.1.137-Prerelease | 615 | 2/22/2023 |
| 5.1.116-Prerelease | 439 | 12/15/2022 |
| 5.1.103-Prerelease | 270 | 11/13/2022 |
| 5.1.76-Prerelease | 701 | 8/7/2022 |
| 5.1.60-Prerelease | 470 | 7/17/2022 |
| 5.1.52-Prerelease | 359 | 7/8/2022 |
| 5.1.40-Prerelease | 1,393 | 4/6/2022 |
| 5.1.34-Prerelease | 332 | 4/4/2022 |
| 5.1.27-Prerelease | 914 | 2/21/2022 |
| 5.1.15-Prerelease | 367 | 1/29/2022 |
Merge pull request #186 from Codeuctivity/main
- DocumentAssembler
- only add paragraph when no other block-level elements exist in the table cell
- fix bug where conditionals can leave a table cell in an invalid state, causing Word to report an error
- emulate Word's whitespace handling and treatment of xml:space="preserve"
avoid spurious error and crash on
- UnicodeMapper
- more comprehensive fix for whitespace handling in UnicodeMapper