From eb08529f35ce33ed98c34fb48013f0f4a5fc9635 Mon Sep 17 00:00:00 2001 From: Autumn! <86073772+autumnull@users.noreply.github.com> Date: Fri, 16 Dec 2022 11:20:22 +0000 Subject: [chore/bugfix] Switch markdown from blackfriday to goldmark (#1267) Co-authored-by: Autumn! --- vendor/github.com/yuin/goldmark/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vendor/github.com/yuin/goldmark/Makefile (limited to 'vendor/github.com/yuin/goldmark/Makefile') diff --git a/vendor/github.com/yuin/goldmark/Makefile b/vendor/github.com/yuin/goldmark/Makefile new file mode 100644 index 000000000..e34fe866a --- /dev/null +++ b/vendor/github.com/yuin/goldmark/Makefile @@ -0,0 +1,10 @@ +.PHONY: test fuzz + +test: + go test -coverprofile=profile.out -coverpkg=github.com/yuin/goldmark,github.com/yuin/goldmark/ast,github.com/yuin/goldmark/extension,github.com/yuin/goldmark/extension/ast,github.com/yuin/goldmark/parser,github.com/yuin/goldmark/renderer,github.com/yuin/goldmark/renderer/html,github.com/yuin/goldmark/text,github.com/yuin/goldmark/util ./... + +cov: test + go tool cover -html=profile.out + +fuzz: + cd ./fuzz && go test -fuzz=Fuzz -- cgit v1.3