Pure HTML to JSON converter that not use template engine.
$ npm install -D @burger-editor/frozen-patty
import FrozenPatty from 'frozen-patty';
FrozenPatty('<div data-field="text">value</div>').toJSON(); // => { text: 'value' }
FrozenPatty('<div data-field="field-name">value</div>').toJSON(); // => { 'field-name': 'value' }
FrozenPatty('<a href="http://localhost" data-field="href:href">link</a>').toJSON(); // => { 'href': 'http://localhost' }
FrozenPatty('<div data-bge="text">value</div>', { attr: 'bge' }).toJSON(); // => { text: 'value' }
FrozenPatty('<div data-field="text">value</div>').merge({ text: 'merged' }).toHTML(); // => "<div data-field="text">merged</div>";
Extraction data from HTML.
args | type | required | descriptions |
---|---|---|---|
html | string |
required | Original HTML |
options | Object |
optional | † |
options | type | default | descriptions |
---|---|---|---|
attr | string | "field" |
Data attribute name for specifying the node that FrozenPatty treats as a field |
Data merge
args | type | required | descriptions |
---|---|---|---|
data | Object |
required | New data |
Data to plain Object.
Render to HTML as string.