mirror of
https://github.com/mendableai/firecrawl.git
synced 2025-09-21 06:22:39 +00:00

* add ZDR flag and v0 lockout * zdr walls on v1 and propagation * zdr within scrapeurl * fixes * more fixes * zdr flag on queue-worker logging * final stretch + testing, needs f-e changes * fixes * self-serve ZDR through request body * request-level zdr * improved zdrcleaner * generalize schema to allow for different data retention times in the future * update Go version on CI * feat(api/tests/zdr): test that nothing is logged * fix(api/tests/zdr): correct log name * fix(ci): envs * fix(zdrcleaner): lower bound on db query * zdr test with idmux * WIP Assignments * fix bad merge remove unused identity * fix stupid jest globals thing * feat(scrapeURL/zdr): blacklist pdf action * fix(concurrency-limit): zdr logging enforcement * temp: remove extra billing for zdr * SDK support * final zdr business logic fix rename * fix test log filtering * fix log filtering... again * fix(tests/zdr): more logging exceptions --------- Co-authored-by: Nicolas <nicolascamara29@gmail.com>
19 lines
565 B
Modula-2
19 lines
565 B
Modula-2
module html-to-markdown.go
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.24.0
|
|
|
|
require github.com/tomkosm/html-to-markdown v0.0.0-20250128162844-2f19490e042d
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.3 // indirect
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|
|
|
|
replace github.com/JohannesKaufmann/html-to-markdown => github.com/tomkosm/html-to-markdown v0.0.0-20250128162844-2f19490e042d
|