aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-31 14:37:46 -0700
committerFuwn <[email protected]>2024-08-31 14:37:46 -0700
commit20d2bb24a733bb7eca99539b337dc4cc5832ed8e (patch)
tree9199e10a938613f49f25a7eb725832d75bc9bd05 /go.mod
parent- [#] update README (diff)
downloadhtml2md-master.tar.xz
html2md-master.zip
chore(go): add go.modHEADmaster
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod23
1 files changed, 23 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..0a77a3d
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,23 @@
+module github.com/Fuwn/html2md
+
+go 1.22.5
+
+require (
+ github.com/JohannesKaufmann/html-to-markdown v1.6.0
+ github.com/PuerkitoBio/goquery v1.9.2
+ github.com/mkideal/cli v0.2.7
+)
+
+require (
+ github.com/andybalholm/cascadia v1.3.2 // indirect
+ github.com/labstack/gommon v0.3.0 // indirect
+ github.com/mattn/go-colorable v0.1.7 // indirect
+ github.com/mattn/go-isatty v0.0.12 // indirect
+ github.com/mkideal/expr v0.1.0 // indirect
+ github.com/mkideal/pkg v0.1.3 // indirect
+ golang.org/x/crypto v0.23.0 // indirect
+ golang.org/x/net v0.25.0 // indirect
+ golang.org/x/sys v0.20.0 // indirect
+ golang.org/x/term v0.20.0 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+)