UNPKG

phenomic

Version:

Modern website generator based on the React and Webpack ecosystem.

10 lines (8 loc) 206 B
// @flow import { html as beautifyHTML, default_options as defaultOptions, } from "js-beautify" export default (html: string): string => ( beautifyHTML(html, { ...defaultOptions, indent_size: 2 }) )