Package Exports
- remark-lint-no-reference-like-url
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (remark-lint-no-reference-like-url) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remark-lint-no-reference-like-url
Warn when URLs are also defined identifiers.
Install
npm install --save remark-lint-no-reference-like-url
Example
When this rule is turned on, the following file
valid.md
is ok:
[Alpha](http://example.com).
[bravo]: https://example.com
When this rule is turned on, the following file
invalid.md
is not ok:
[Charlie](delta).
[delta]: https://example.com
1:1-1:17: Did you mean to use `[delta]` instead of `(delta)`, a reference?