Package Exports
- remark-unwrap-images
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-unwrap-images) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remark-unwrap-images 
Remark plugin to remove wrapping paragraph tag for images.
Installation
npm i -S remark-unwrap-imagesUsage
const remark = require('remark')
const unwrapImages = require('remark-unwrap-images')
const html = require('remark-html')
remark()
.use(unwrapImages)
.use(html)
.process(markdownString, function (err, file) {
if (err) { throw err }
console.log(String(file))
})