WordUtils is a .NET component designed for efficient Word document manipulation. It offers two core actions:
SearchReplaceValues: This action receives a Word document in binary format and a list of keywords. It replaces all instances of the specified keywords within the document, returning an updated binary file with the replacements applied.
GetHTML: This action converts the content of a Word document (provided in binary format) into HTML code, allowing the document’s structure and content to be rendered in web-compatible format.
Demo available here.
- Only supports .docx extensions;
- Code refactor to cover multiples scenarios;
BSD-3 license (https://opensource.org/licenses/BSD-3-Clause)