html json显示中文,html2json

html to json & json to html

html2json & json2html

How to use

browser

include htmlparser.js & html2json.js scripts:

node

$ npm install html2jsonvar html2json = require('html2json').html2json;

var json2html = require('html2json').json2html;

API

json === html2json(document.body.innerHTML);

html === json2html(json);

console.assert(json === html);

JSON format

every json has node

memeber of node is

root

element

text

comment

root node is the root of JSON, every JSON must have only one root root, could have child.

element node represents html element, could have tag, attr, child.

text node represents text element, could have text.

comment node represents commment element, could have text.

Sample

html:

sample text with inline tag

foo
goo

json:

{

node: 'root',

child: [

{

node: 'element',

tag: 'div',

attr: { id: '1', class: 'foo' },

child: [

{

node: 'element',

tag: 'h2',

child: [

{ node: 'text', text: 'sample text with ' },

{ node: 'element', tag: 'code', child: [{ node: 'text', text: 'inline tag' }] }

]

},

{

node: 'element',

tag: 'pre',

attr: { id: 'demo', class: ['foo', 'bar'] },

child: [{ node: 'text', text: 'foo' }]

},

{

node: 'element',

tag: 'pre',

attr: { id: 'output', class: 'goo' },

child: [{ node: 'text', text: 'goo' }]

},

{

node: 'element',

tag: 'input',

attr: { id: 'execute', type: 'button', value: 'execute' }

}

]

}

]

}

Dependencies

repositry includes this at lib/ as git subtree.

CHANGELOG

1.0.2

fix #16 with merge #17

1.0.1

fix #14

before 1.0.0

Basically inline tag is melted into text

Input, textarea, image tags are act like block tag

License

MIT

HomePage

Repository

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值