libmsoffice-word-html-writer-perl 1.08-1 source package in Ubuntu

Changelog

libmsoffice-word-html-writer-perl (1.08-1) unstable; urgency=medium

  * Import upstream version 1.08.
  * Update years of upstream and packaging copyright.
  * Declare compliance with Debian Policy 4.6.2.

 -- gregor herrmann <email address hidden>  Wed, 22 Mar 2023 22:18:21 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe perl

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmsoffice-word-html-writer-perl_1.08-1.dsc 2.6 KiB 452484ec0a34ecdd00fa1682c988fcd0cffb592dbcf1d1d0f41577a7a1cf2218
libmsoffice-word-html-writer-perl_1.08.orig.tar.gz 17.5 KiB 35461e87eb35d65d82a83c9c207a15293945f9e17db10ecb999b3f5de3de62d7
libmsoffice-word-html-writer-perl_1.08-1.debian.tar.xz 2.9 KiB 35e0af41f84f8054d618202febf04a5528a2a8cf2730f01a8664a5de1ca06134

Available diffs

No changes file available.

Binary packages built by this source

libmsoffice-word-html-writer-perl: module for writing MsWord documents in HTML format

 MsOffice::Word::HTML-Writer is one way to programmatically generate documents
 targeted for Microsoft Word (MsWord).
 .
 MsWord can read documents encoded in native binary format, in Rich Text
 Format (RTF), in WordML (an XML dialect), or -- maybe this is less known --
 in HTML, with some special markup for pagination and other MsWord-specific
 features. Such HTML documents are often in several parts, because attachments
 like images or headers/footers need to be in separate files; however, since
 it is more convenient to carry all data in a single file, MsWord also
 supports the "MHTML" format (or "MHT" for short), i.e. an encapsulation of a
 whole HTML tree into a single file encoded in MIME multipart format. This
 format can be generated interactively from MsWord by calling the "SaveAs"
 menu and choosing the .mht extension.
 .
 MsOffice::Word::HTML::Writer helps you to programmatically generate MsWord
 documents in MHT format. The advantage of this technique is that one can rely
 on standard HTML mechanisms for layout control, such as styles, tables, divs,
 etc -- of course this markup can be produced using your favorite HTML module.
 The added value of MsOffice::Word::HTML::Writer is to help building the MIME
 multipart file, and provide some abstractions for representing
 MsWord-specific features (headers, footers, fields, etc.). This is probably
 the most convenient way for programmatic document generation.