Codeuctivity.OpenXmlPowerTools
8.0.306
Prefix Reserved
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 8.0.306
NuGet\Install-Package Codeuctivity.OpenXmlPowerTools -Version 8.0.306
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="8.0.306" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Codeuctivity.OpenXmlPowerTools" Version="8.0.306" />
<PackageReference Include="Codeuctivity.OpenXmlPowerTools" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Codeuctivity.OpenXmlPowerTools --version 8.0.306
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Codeuctivity.OpenXmlPowerTools, 8.0.306"
#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.
#addin nuget:?package=Codeuctivity.OpenXmlPowerTools&version=8.0.306
#tool nuget:?package=Codeuctivity.OpenXmlPowerTools&version=8.0.306
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. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- DocumentFormat.OpenXml (>= 3.0.2)
- SixLabors.Fonts (>= 1.0.1)
- SixLabors.ImageSharp (>= 2.1.9)
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 |
---|---|---|
8.0.314 | 543 | a month ago |
8.0.310 | 147 | a month ago |
8.0.306 | 94 | a month ago |
8.0.302 | 215 | 2 months ago |
8.0.295 | 217 | 2 months ago |
8.0.292 | 113 | 2 months ago |
8.0.251 | 9,374 | 9 months ago |
8.0.237 | 6,046 | 3/19/2024 |
7.0.210 | 6,734 | 11/14/2023 |
6.0.195 | 5,956 | 9/12/2023 |
6.0.178 | 381 | 8/11/2023 |
6.0.172-Prerelease | 168 | 7/15/2023 |
5.1.156-Prerelease | 132 | 7/6/2023 |
5.1.137-Prerelease | 508 | 2/22/2023 |
5.1.116-Prerelease | 323 | 12/15/2022 |
5.1.103-Prerelease | 154 | 11/13/2022 |
5.1.76-Prerelease | 567 | 8/7/2022 |
5.1.60-Prerelease | 331 | 7/17/2022 |
5.1.52-Prerelease | 215 | 7/8/2022 |
5.1.40-Prerelease | 1,258 | 4/6/2022 |
5.1.34-Prerelease | 183 | 4/4/2022 |
5.1.27-Prerelease | 789 | 2/21/2022 |
5.1.15-Prerelease | 192 | 1/29/2022 |
Convert Heading 7, 8 and 9 to HTML div with role and aria-level to keep them as headings