Skip to content

Commit 2e38720

Browse files
committed
basic
1 parent 3daf4bc commit 2e38720

15 files changed

+319
-12
lines changed

.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This file is for unifying the coding style for different editors and IDEs.
2+
# More information at http://EditorConfig.org
3+
4+
# No .editorconfig files above the root directory
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
indent_size = 4
10+
end_of_line = lf
11+
indent_style = space
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
15+
[*.{bemjson.js,deps.js}]
16+
indent_size = 4
17+
18+
[{bower,package}.json]
19+
indent_size = 2
20+
21+
[*.md]
22+
trim_trailing_whitespace = false

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# OS
2+
.DS_Store
3+
._*
4+
5+
# NODEJS
6+
node_modules
7+
npm-debug.log
8+
9+
coverage

.jscsrc

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"excludeFiles": [
3+
".git/**",
4+
"node_modules/**",
5+
"coverage/**"
6+
],
7+
"fileExtensions": [".js"],
8+
"validateParameterSeparator": ", ",
9+
"disallowSpacesInCallExpression": true,
10+
"disallowSpaceAfterObjectKeys": true,
11+
"disallowSpaceBeforeSemicolon": true,
12+
"disallowSpaceBeforePostfixUnaryOperators": true,
13+
"disallowNewlineBeforeBlockStatements": true,
14+
"disallowMultipleLineBreaks": true,
15+
"disallowTrailingComma": true,
16+
"disallowTrailingWhitespace": true,
17+
"disallowNamedUnassignedFunctions": true,
18+
"disallowSpacesInFunctionDeclaration": {
19+
"beforeOpeningRoundBrace": true
20+
},
21+
"disallowSpacesInFunctionExpression": {
22+
"beforeOpeningRoundBrace": true
23+
},
24+
"disallowSpacesInConditionalExpression": {
25+
"afterTest": true,
26+
"afterConsequent": true
27+
},
28+
"requireSpaceBeforeBlockStatements": 1,
29+
"requireSpaceAfterKeywords": [
30+
"do",
31+
"for",
32+
"if",
33+
"else",
34+
"switch",
35+
"case",
36+
"try",
37+
"catch",
38+
"void",
39+
"while",
40+
"with",
41+
"return",
42+
"typeof"
43+
],
44+
"requireSpaceAfterBinaryOperators": true,
45+
"requireSpacesInForStatement": true,
46+
"requireSpaceBetweenArguments": true,
47+
"requireSemicolons": true,
48+
"requireFunctionDeclarations": true,
49+
"requireCommaBeforeLineBreak": true,
50+
"requireSpacesInConditionalExpression": {
51+
"afterTest": true,
52+
"afterConsequent": true
53+
},
54+
"requireSpacesInFunctionDeclaration": {
55+
"beforeOpeningCurlyBrace": true
56+
},
57+
"requireSpacesInConditionalExpression": {
58+
"beforeConsequent": true,
59+
"beforeAlternate": true
60+
}
61+
}

.jshintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
coverage

.jshintrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"eqeqeq": true,
3+
"expr": true,
4+
"maxlen": 120,
5+
"undef": true,
6+
"unused": true,
7+
"node": true
8+
}

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules/
2+
test/
3+
npm-debug.log
4+
.editorconfig
5+
.jscsrc
6+
.jshintignore
7+
.jshintrc

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- "4.1"
5+
- "0.12"
6+
- "0.10"
7+
8+
env:
9+
global:
10+
- ISTANBUL_COVERAGE: yes
11+
12+
after_success:
13+
- npm i coveralls
14+
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && echo "Coverage data was sent to coveralls!"

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
(The MIT License)
2+
3+
Copyright (c) 2015 Ivan Voischev <voischev.ivan@ya.ru>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
'Software'), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
# posthtml-parser
2+
[![npm version](https://badge.fury.io/js/posthtml-parser.svg)](http://badge.fury.io/js/posthtml-parser)
3+
[![Build Status](https://travis-ci.org/posthtml/posthtml-parser.svg?branch=master)](https://travis-ci.org/posthtml/posthtml-parser?branch=master)
4+
[![Coverage Status](https://coveralls.io/repos/posthtml/posthtml-parser/badge.svg?branch=master)](https://coveralls.io/r/posthtml/posthtml-parser?branch=master)
5+
6+
Parse HTML/XML to [PostHTMLTree](https://github.com/posthtml/posthtml#posthtml-json-tree-example)
7+
8+
## License
9+
10+
[MIT](LICENSE)

index.js

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
/*jshint -W082 */
2+
var htmlparser = require('htmlparser2');
3+
4+
/**
5+
* Parse html to PostHTMLTree
6+
* @param {String} html
7+
* @return {Object}
8+
*/
9+
module.exports = function postHTMLParser(html) {
10+
var bufArray = [],
11+
results = [];
12+
13+
bufArray.last = function() {
14+
return this[this.length - 1];
15+
};
16+
17+
var parser = new htmlparser.Parser({
18+
onprocessinginstruction: function(name, data) {
19+
name === '!doctype' && results.push('<' + data + '>');
20+
},
21+
oncomment: function(data) {
22+
var comment = '<!--' + data + '-->',
23+
last = bufArray.last();
24+
25+
if (!last) {
26+
results.push(comment);
27+
return;
28+
}
29+
30+
last.content || (last.content = []);
31+
last.content.push(comment);
32+
},
33+
onopentag: function(tag, attrs) {
34+
var buf = {};
35+
36+
buf.tag = tag;
37+
38+
if (!isEmpty(attrs)) buf.attrs = attrs;
39+
40+
bufArray.push(buf);
41+
},
42+
onclosetag: function() {
43+
var buf = bufArray.pop();
44+
45+
if (bufArray.length === 0) {
46+
results.push(buf);
47+
return;
48+
}
49+
50+
var last = bufArray.last();
51+
if (!(last.content instanceof Array)) {
52+
last.content = [];
53+
}
54+
last.content.push(buf);
55+
},
56+
ontext: function(text) {
57+
var last = bufArray.last();
58+
if (!last) {
59+
results.push(text);
60+
return;
61+
}
62+
63+
last.content || (last.content = []);
64+
last.content.push(text);
65+
}
66+
});
67+
68+
parser.write(html);
69+
parser.end();
70+
71+
return results;
72+
};
73+
74+
function isEmpty(obj) {
75+
for (var key in obj) {
76+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
77+
return false;
78+
}
79+
}
80+
return true;
81+
}

package.json

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,38 @@
11
{
22
"name": "posthtml-parser",
3-
"version": "0.0.0",
4-
"description": "Parser for PostHTML",
3+
"version": "0.1.0",
4+
"description": "Parse HTML/XML to PostHTMLTree",
55
"keywords": [
66
"html",
77
"xml",
8-
"postproccessor",
98
"parser",
10-
"transform",
11-
"transformations",
12-
"preprocessor",
13-
"processor",
14-
"posthtml"
9+
"posthtml",
10+
"posthtmltree"
1511
],
1612
"main": "index.js",
1713
"scripts": {
18-
"test": "echo \"Error: no test specified\" && exit 1"
14+
"test": "npm run lint && npm run coverage",
15+
"lint": "jshint . && jscs -v .",
16+
"coverage": "istanbul cover --report text --report html --report lcov node_modules/mocha/bin/_mocha"
1917
},
2018
"repository": {
2119
"type": "git",
22-
"url": "git+https://github.com/voischev/posthtml-parser.git"
20+
"url": "git+https://github.com/posthtml/posthtml-parser.git"
2321
},
2422
"author": "Ivan Voischev <voischev.ivan@ya.ru>",
2523
"license": "MIT",
2624
"bugs": {
27-
"url": "https://github.com/voischev/posthtml-parser/issues"
25+
"url": "https://github.com/posthtml/posthtml-parser/issues"
2826
},
29-
"homepage": "https://github.com/voischev/posthtml-parser#readme"
27+
"homepage": "https://github.com/posthtml/posthtml-parser#readme",
28+
"dependencies": {
29+
"htmlparser2": "^3.8.3"
30+
},
31+
"devDependencies": {
32+
"chai": "^3.3.0",
33+
"istanbul": "^0.4.0",
34+
"jscs": "^2.3.5",
35+
"jshint": "^2.8.0",
36+
"mocha": "^2.3.3"
37+
}
3038
}

test/mocha.opts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--inline-diffs
2+
--reporter spec

test/templates/parser.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/templates/render.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Html</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7, IE=9">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<meta name="description" content="Description">
9+
10+
<meta property="og:url" content="http://github.com/posthtml">
11+
<meta property="og:type" content="website">
12+
<meta property="og:site_name" content="PostHTML">
13+
14+
<link rel="stylesheet" type="text/css" href="path/to/file.css">
15+
<script src="path/to/file.js" type="text/javascript" charset="utf-8"></script>
16+
17+
<script>
18+
console.log('PostHTML!');
19+
</script>
20+
</head>
21+
<body onload="try{if(!google.j.b){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}}catch(e){}if(document.images)new Image().src='/images/nav_logo231.png'">
22+
23+
<h1>Title</h1>
24+
<p>Lorem ipsum dolor sit amet...</p>
25+
26+
<section class="foo" style="color: red;">
27+
<header class="foo bar" style="color: blue; border: 1px solid" id="id">
28+
<div class="foo bar baz" id="idd" data-url="url/to/">
29+
<span id="idd" data-data="{ foo: 'bar' }">
30+
<a href="#">
31+
<img src="path/to/img">
32+
Link
33+
</a>
34+
</span>
35+
</div>
36+
</header>
37+
</section>
38+
39+
<script type="text/javascript">
40+
(function(){function k(a){++b;a=a||window.event;google.iTick(a.target||a.srcElement)}if(google.timers&&google.timers.load.t){var c,b,f;google.c.c.a&&(google.startTick("aft"),google.afte=!1);var g=document.getElementsByTagName("img");c=g.length;for(var d=b=0,a;d<c;++d)if(a=g[d],google.c.c.i&&"none"==a.style.display)++b;else{var h="string"!=typeof a.src||!a.src,e=h||a.complete;google.c.c.d?a.getAttribute("data-deferred")&&(e=!1,a.removeAttribute("data-deferred")):google.c.c.m&&h&&a.getAttribute("data-bsrc")&&
41+
(e=!1);e?++b:google.rll(a,!0,k)}f=c-b;google.rll(window,!1,function(){google.tick("load","ol");google.c.e("load","imc",String(b));google.c.e("load","imn",String(c));google.c.e("load","imp",String(f));google.unblockCSI("load","ol")});google.tick("load",["prt","iml"])}})();
42+
</script>
43+
44+
<script src="path/to/file2.js" type="text/javascript" charset="utf-8"></script>
45+
</body>
46+
</html>

test/test.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var parser = require('..');
2+
var describe = require('mocha').describe;
3+
var it = require('mocha').it;
4+
var expect = require('chai').expect;
5+
var path = require('path');
6+
var fs = require('fs');
7+
var html = fs.readFileSync(path.resolve(__dirname, 'templates/render.html'), 'utf8').toString();
8+
var tree = require('./templates/parser.js');
9+
10+
describe('PostHTML-Parser test', function() {
11+
it('html to tree', function() {
12+
expect(tree).to.eql(parser(html));
13+
});
14+
});

0 commit comments

Comments
 (0)