$ cnpm install diffable-html
This formatter will normalize your HTML in a way that when you diff it, you get a clear sense of what changed.
This is a "zero-config" and opinionated HTML formatter. Default rules might change in future releases in which case we will push a major release.
Feel free to open issues to discuss better defaults.
Formatting consists of:
Be aware that this plugin is intended for making HTML diffs more readable. We took the compromise of not dealing with white-spaces like the browsers do.
Add the package as a dev-dependency:
# With npm
npm install --save-dev diffable-html
# With yarn
yarn add --dev diffable-html
import toDiffableHtml from 'diffable-html';
const html = `
<div id="header">
<h1>Hello World!</h1>
<ul id="main-list" class="list"><li><a href="#">My HTML</a></li></ul>
</div>
`
console.log(toDiffableHtml(html));
Will output:
<div id="header">
<h1>
Hello World!
</h1>
<ul
id="main-list"
class="list"
>
<li>
<a href="#">
My HTML
</a>
</li>
</ul>
</div>
This formatter was initially developed to address the lack of some features in js-beautifier:
These features are needed to improve readability of HTML diffs.
Development of this plugin was motivated by making testing of Vue.js components easier by the use of Jest with snapshot tests.
You can find a serializer for formatting your HTML here Jest serializer.
Copyright 2013 - present © cnpmjs.org | Home |