Package Exports
- remark-inline-links
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-inline-links) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remark-inline-links

remark plug-in to transform references and definitions into normal links and images.
Installation
npm:
npm install remark-inline-links
remark-inline-links is also available as an AMD, CommonJS, and globals module, uncompressed and compressed.
Usage
Dependencies:
var remark = require('remark');
var inlineLinks = require('remark-inline-links');
Process:
var doc = remark().use(inlineLinks).process([
'[foo], [foo][], [bar][foo].',
'',
'![foo], ![foo][], ![bar][foo].',
'',
'[foo]: http://example.com "Example Domain"',
''
].join('\n'));
Yields:
[foo](http://example.com "Example Domain"), [foo](http://example.com "Example Domain"), [bar](http://example.com "Example Domain").
, , .
API
remark.use(inlineLinks)
Transform references and definitions into normal links and images.
Related
eush77/remark-defsplit
— Practically the same, but with URI-based identifiers instead of numerical ones.wooorm/remark-reference-links
— Reverse, thus rewriting normal links and images into references and definitions;