Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adapttive/remark-external-preview

External Preview Plugin for Remark
https://github.com/adapttive/remark-external-preview

Last synced: 28 days ago
JSON representation

External Preview Plugin for Remark

Awesome Lists containing this project

README

        

# remark-external-preview
External Preview Plugin for Remark

## Installation

`npm install @adapttive/remark-external-preview` or

`yarn add @adapttive/remark-external-preview`

## Usage

```js

const remark = require("remark");
const html = require('remark-html');
const externalPreview = require('@adapttive/remark-external-preview');

remark()
.use(html)
.use(externalPreview)
.process(
"# Hi" +
"\n[@external:code:github](https://github.com/milindsingh/magento2-grumphp/blob/2d9be8cf5c9da07256af5194370e9a9326e30881/module/grumphp.yml#L1-L134)",
function(err, output) {
console.log(String(output))
console.error(err)
}
);
```