UNPKG

htmlfy

Version:

HTML formatter yo! Prettify, minify, and more!

23 lines (20 loc) 465 B
/** * @type {import('htmlfy').Config} */ export const CONFIG = { content_wrap: 0, ignore: [], ignore_with: '_!i-£___£%_', strict: false, tab_size: 2, tag_wrap: 0, tag_wrap_width: 80, trim: [] } export const CONTENT_IGNORE_STRING = '__!i-£___£%__' export const IGNORE_STRING = '!i-£___£%_' export const VOID_ELEMENTS = [ 'area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source', 'track', 'wbr' ]