Apply Patch

This commit is contained in:
2024-05-12 17:21:50 +02:00
parent 4b430213d5
commit 16a2ada206
2 changed files with 24 additions and 7 deletions

View File

@ -1,11 +1,17 @@
all:
go run main.go tree.go test_files/test.md
go build .
run:
go run . test_files/test.md
test:
go run main.go tree.go test_files/test.md
go run main.go tree.go test_files/README.md
go run main.go tree.go test_files/weird_headers.md
go run main.go tree.go test_files/audio.md
go run . test_files/test.md
go run . test_files/README.md
go run . test_files/weird_headers.md
go run . test_files/audio.md
install:
cp -v mdtoc /usr/local/bin/.
clean:
rm -vf main
go clean