Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Releases: Nitro/markdown-link-check

v0.10.0

24 Jul 16:14
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release
Fix resource leak

v0.9.0

17 Jul 10:48
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release
Improve CI

v0.8.0

17 Jun 08:47
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release
Add option to ignore and directories

v0.7.0

24 May 00:51
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release
Support anchor validation inside li tags

v0.6.1

23 May 01:02
Compare
Choose a tag to compare
v0.6.1 Pre-release
Pre-release
Fix the case where we don't have a anchor check

If the markdown don't have a anchor to be checked and the file exists, we need to early return in order to have a
correct state.

v0.6.0

22 May 23:15
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release
Improve output

Handle the paths ending with a slash or not the same.

v0.5.0

20 May 12:29
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release
Fix the output of the relative path

The previous code had a bug when the current path is declared as '.' as
it did remove all the dots from the path like 'file.md' being
transformed in 'filemd'.

v0.4.0

19 May 22:34
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release
Output the relative path

v0.3.0

18 May 13:30
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release
Add email provider

v0.2.0

13 May 11:41
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
Fix file provider anchor check

This code was modeled after how GitHub is parsing the Markdown. But this
is broken in the sense that our parser may and probably don't follow
the same rules from GitHub's parser.
The change is to parse the fragment using the same library that is used
to process the markdown into HTML. With this we can hit the links
correctly.