UNPKG

@carrotsearch/gatsby-transformer-html

Version:

A Gatsby transformer plugin for authoring content in HTML. Supports ToC generation, responsive images, section anchors and HighlightJS code highlighting.

9 lines (7 loc) 156 B
const { load } = require("cheerio"); exports.loadHtml = rawHtml => { return load(rawHtml); }; exports.renderHtml = $ => { return $.html("article"); };