JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 47122
  • Score
    100M100P100Q164632F
  • License MIT

remark-lint rule to warn on empty URLs in links and images

Package Exports

  • remark-lint-no-empty-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-empty-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-empty-url

Warn for empty URLs in links and images.

Install

npm install --save remark-lint-no-empty-url

Example

When this rule is turned on, the following file valid.md is ok:

[alpha](http://bravo.com).

![charlie](http://delta.com/echo.png "foxtrott").

When this rule is turned on, the following file invalid.md is not ok:

[golf]().

![hotel]().
1:1-1:9: Don’t use links without URL
3:1-3:11: Don’t use images without URL

License

MIT © Titus Wormer