Search Criteria
Package Details: html2markdown 2.3.3-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/html2markdown.git (read-only, click to copy) |
---|---|
Package Base: | html2markdown |
Description: | Convert HTML to Markdown. Even works with entire websites and can be extended through rules. |
Upstream URL: | https://html-to-markdown.com |
Licenses: | MIT |
Submitter: | vitaliikuzhdin |
Maintainer: | vitaliikuzhdin |
Last Packager: | vitaliikuzhdin |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2025-04-21 15:31 (UTC) |
Last Updated: | 2025-07-11 11:09 (UTC) |
Dependencies (3)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- git (git-gitAUR, git-glAUR) (make)
- go (go-gitAUR, gcc-go-gitAUR, gcc-go-snapshotAUR, gcc-go) (make)
Required by (24)
- 38c3-style-assets (make)
- 38c3-styleguide (make)
- 38c3-styles-commoninfo (make)
- jena1330-fonts-docs-git (make)
- jena1330-fonts-license (make)
- jena1330-latex-font-example-git (make)
- jena1330-latex-font-git (make)
- otf-jena1330-git (make)
- otf-pilowlava (make)
- otf-space-grotesk (make)
- otf-uncut-sans (make)
- pilowlava-font-common (make)
- t1-jena1330-git (make)
- ttf-jena1330-git (make)
- ttf-space-mono (make)
- ttf-uncut-sans (make)
- woff-jena1330-git (make)
- woff-pilowlava (make)
- woff-space-grotesk (make)
- woff-uncut-sans (make)
- Show 4 more...
Latest Comments
vitaliikuzhdin commented on 2025-07-11 11:18 (UTC) (edited on 2025-07-11 16:17 (UTC) by vitaliikuzhdin)
@dreieck, it looks like I accidentally broke the logic while updating to
2.3.3
, but when I previously commented that I had fixed the issue, it was indeed fixed.Thanks for your suggestions,
go get
seems to download only the needed modules, unlikego mod download
, which pulls in much more than necessary. I've also adopted the cleanerchmod
.In addition, I've added a custom
GOCACHE
export to keep the build cache inside$srcdir/
and avoid requiring a writable$HOME
(it also prevents littering the host system). Alternatively, if we want to contain everything in$srcdir/
, it might be easier to just exportGOPATH
, so that all other Go-related paths are automatically prefixed accordingly.What do you think? Should these changes be added to the wiki?
dreieck commented on 2025-07-09 22:04 (UTC) (edited on 2025-07-09 22:04 (UTC) by dreieck)
Ahoj,
hm, yes, the Go packaging guidelines seem not to have (yet) that stuff, but the rust packaging guidelines have that.
Anyway, I still see that it downloads in
build()
:About how to do it in go: I am also not knowledgeable about this, but I have here a few packages where I did stuff like
or
or
in
prepare()
.Regards!
vitaliikuzhdin commented on 2025-04-23 10:35 (UTC)
@dreieck, I was aware of the issue, but I was honestly following the Go package guidelines, which do not provide a solution for this. I suspect they were written before Go added support for vendoring modules. In any case, the package no longer requires an internet connection in the
build()
function. Please let me know your thoughts on this, especially if you are knowledgeable about Go.dreieck commented on 2025-04-23 07:53 (UTC)
This package downloads stuff in
build()
.This should not happen.
Please make sure that the go specific stuff to be downloaded, that cannot be downloaded in the
source
array, is downloaded inprepare()
, so thatbuild()
andpackage()
can run in an offline environment.Regards and thanks for the package!