@adapttive/remark-external-preview 中文文档教程

发布于 4年前 浏览 1 项目主页 更新于 3年前

remark-external-preview

Remark 的外部预览插件

Installation

npm install @adapttive/remark-external-preview

yarn add @adaptive/remark-external-preview

Usage

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)
        }
    );

remark-external-preview

External Preview Plugin for Remark

Installation

npm install @adapttive/remark-external-preview or

yarn add @adapttive/remark-external-preview

Usage

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)
        }
    );
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文