Package Exports
- markdown-it-imsize
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 (markdown-it-imsize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
markdown-it-imsize
markdown-it plugin for size-specified image markups.
Usage
Enable plugin
var md = require('markdown-it')({
html: true,
linkify: true,
typography: true
}).use(require('markdown-it-imsize'); // <-- this use(package_name) is required
Example

is interpreted as
<p><img src="image.png" width="100" height="200"></p>