golang-github-aymerick-douceur 0.2.0-3build1 source package in Ubuntu

Changelog

golang-github-aymerick-douceur (0.2.0-3build1) mantic; urgency=medium

  * No-change rebuild with Go 1.21.

 -- Michael Hudson-Doyle <email address hidden>  Thu, 24 Aug 2023 17:14:48 +1200

Upload details

Uploaded by:
Michael Hudson-Doyle
Uploaded to:
Mantic
Original maintainer:
Debian Go Packaging Team
Architectures:
any all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc

Downloads

File Size SHA-256 Checksum
golang-github-aymerick-douceur_0.2.0.orig.tar.gz 20.4 KiB ceed015cddc99b600ccbbd6aa0ebe39063554049f70153887d3df7c21fefedbb
golang-github-aymerick-douceur_0.2.0-3build1.debian.tar.xz 3.4 KiB 646dc0f27717e9c974d2270ae404ba30d4602269a85cd54f3a9a0a7aae8005b5
golang-github-aymerick-douceur_0.2.0-3build1.dsc 2.4 KiB 26c02f18b8db9919dcee3da889e58bce44e48ccb87b527581f49d40cecd09f24

View changes file

Binary packages built by this source

douceur: simple CSS parser and inliner in Go (program)

 This package provides douceur, a simple CSS parser and HTML inliner.
 .
 Parser is vaguely inspired by CSS Syntax Module Level 3
 (https://www.w3.org/TR/css-syntax-3/) and corresponding JS parser
 (https://github.com/tabatkins/parse-css).
 .
 Inliner only parses CSS defined in HTML document; it DOES NOT fetch
 external stylesheets (for now).
 .
 Parse a CSS file and display result:
   $ douceur parse inputfile.css
 .
 Inline CSS in an HTML document and display result:
   $ douceur inline inputfile.html

douceur-dbgsym: debug symbols for douceur
golang-github-aymerick-douceur-dev: simple CSS parser and inliner in Go (library)

 Golang library with simple CSS parser and HTML inliner.
 See associated "douceur" binary for a basic command-line executable of this
 library.
 .
 Parser is vaguely inspired by CSS Syntax Module Level 3
 (https://www.w3.org/TR/css-syntax-3/) and corresponding JS parser
 (https://github.com/tabatkins/parse-css).
 .
 Inliner only parses CSS defined in HTML document; it DOES NOT fetch
 external stylesheets (for now). Inliner inserts additional attributes when
 possible.
 .
 Similar projects
  * premailer (https://github.com/premailer/premailer)
  * roadie (https://github.com/Mange/roadie)