|
diff --git a/go.mod b/go.mod
|
| ... |
| 6 |
github.com/DavidBelicza/TextRank/v2 v2.1.3 |
6 |
github.com/DavidBelicza/TextRank/v2 v2.1.3 |
| 7 |
github.com/alexflint/go-arg v1.4.3 |
7 |
github.com/alexflint/go-arg v1.4.3 |
| 8 |
github.com/gosimple/slug v1.13.1 |
8 |
github.com/gosimple/slug v1.13.1 |
|
|
9 |
github.com/mangoumbrella/goldmark-figure v1.0.0 |
| 9 |
github.com/microcosm-cc/bluemonday v1.0.24 |
10 |
github.com/microcosm-cc/bluemonday v1.0.24 |
| 10 |
github.com/otiai10/copy v1.12.0 |
11 |
github.com/otiai10/copy v1.12.0 |
| 11 |
github.com/tdewolff/minify/v2 v2.12.7 |
12 |
github.com/tdewolff/minify/v2 v2.12.7 |
| ... |
|
diff --git a/go.sum b/go.sum
|
| ... |
| 26 |
github.com/gosimple/slug v1.13.1/go.mod h1:UiRaFH+GEilHstLUmcBgWcI42viBN7mAb818JrYOeFQ= |
26 |
github.com/gosimple/slug v1.13.1/go.mod h1:UiRaFH+GEilHstLUmcBgWcI42viBN7mAb818JrYOeFQ= |
| 27 |
github.com/gosimple/unidecode v1.0.1 h1:hZzFTMMqSswvf0LBJZCZgThIZrpDHFXux9KeGmn6T/o= |
27 |
github.com/gosimple/unidecode v1.0.1 h1:hZzFTMMqSswvf0LBJZCZgThIZrpDHFXux9KeGmn6T/o= |
| 28 |
github.com/gosimple/unidecode v1.0.1/go.mod h1:CP0Cr1Y1kogOtx0bJblKzsVWrqYaqfNOnHzpgWw4Awc= |
28 |
github.com/gosimple/unidecode v1.0.1/go.mod h1:CP0Cr1Y1kogOtx0bJblKzsVWrqYaqfNOnHzpgWw4Awc= |
|
|
29 |
github.com/mangoumbrella/goldmark-figure v1.0.0 h1:L+ebP73dET0a2n68PV7m5oFJmwwH5GzRIJLgszR3fwo= |
|
|
30 |
github.com/mangoumbrella/goldmark-figure v1.0.0/go.mod h1:iIL+fhdmCQDpE0l/TKtGhokWzIbo5lo/Y2OIAcx6usI= |
| 29 |
github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2/go.mod h1:0KeJpeMD6o+O4hW7qJOT7vyQPKrWmj26uf5wMc/IiIs= |
31 |
github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2/go.mod h1:0KeJpeMD6o+O4hW7qJOT7vyQPKrWmj26uf5wMc/IiIs= |
| 30 |
github.com/microcosm-cc/bluemonday v1.0.24 h1:NGQoPtwGVcbGkKfvyYk1yRqknzBuoMiUrO6R7uFTPlw= |
32 |
github.com/microcosm-cc/bluemonday v1.0.24 h1:NGQoPtwGVcbGkKfvyYk1yRqknzBuoMiUrO6R7uFTPlw= |
| 31 |
github.com/microcosm-cc/bluemonday v1.0.24/go.mod h1:ArQySAMps0790cHSkdPEJ7bGkF2VePWH773hsJNSHf8= |
33 |
github.com/microcosm-cc/bluemonday v1.0.24/go.mod h1:ArQySAMps0790cHSkdPEJ7bGkF2VePWH773hsJNSHf8= |
| ... |
|
diff --git a/main.go b/main.go
|
| ... |
| 24 |
"github.com/DavidBelicza/TextRank/v2" |
24 |
"github.com/DavidBelicza/TextRank/v2" |
| 25 |
"github.com/alexflint/go-arg" |
25 |
"github.com/alexflint/go-arg" |
| 26 |
"github.com/gosimple/slug" |
26 |
"github.com/gosimple/slug" |
|
|
27 |
"github.com/mangoumbrella/goldmark-figure" |
| 27 |
"github.com/microcosm-cc/bluemonday" |
28 |
"github.com/microcosm-cc/bluemonday" |
| 28 |
|
29 |
|
| 29 |
"github.com/tdewolff/minify/v2" |
30 |
"github.com/tdewolff/minify/v2" |
| ... |
| 169 |
extension.TaskList, |
170 |
extension.TaskList, |
| 170 |
extension.Footnote, |
171 |
extension.Footnote, |
| 171 |
meta.Meta, |
172 |
meta.Meta, |
|
|
173 |
figure.Figure, |
| 172 |
highlighting.NewHighlighting( |
174 |
highlighting.NewHighlighting( |
| 173 |
highlighting.WithStyle(config.Highlighting), |
175 |
highlighting.WithStyle(config.Highlighting), |
| 174 |
), |
176 |
), |
| ... |