@@ -39,6 +41,10 @@ There is an anchor named with `id` [Tomato](#tomato_id).
There is an anchor named with `name` [Tomato](#tomato_name).
+There is an anchor named with `id` [Tomato in single quote](#tomato_id_single_quote).
+
+There is an anchor named with `name` [Tomato in single quote](#tomato_name_single_quote).
+
There is an anchor in code [Tomato in code](#tomato_code).
There is an anchor in escaped code [Tomato in escaped backticks](#tomato_escaped_backticks).
diff --git a/test/markdown-link-check.test.js b/test/markdown-link-check.test.js
index eb77212..2d043f5 100644
--- a/test/markdown-link-check.test.js
+++ b/test/markdown-link-check.test.js
@@ -379,6 +379,8 @@ describe('markdown-link-check', function () {
{ link: '#potato', statusCode: 404, err: null, status: 'dead' },
{ link: '#tomato_id', statusCode: 200, err: null, status: 'alive' },
{ link: '#tomato_name', statusCode: 200, err: null, status: 'alive' },
+ { link: '#tomato_id_single_quote', statusCode: 200, err: null, status: 'alive' },
+ { link: '#tomato_name_single_quote', statusCode: 200, err: null, status: 'alive' },
{ link: '#tomato_code', statusCode: 404, err: null, status: 'dead' },
{ link: '#tomato_escaped_backticks', statusCode: 200, err: null, status: 'alive' },
{ link: '#tomato_comment', statusCode: 404, err: null, status: 'dead' },