Skip to content

Commit 304706d

Browse files
author
Jiang Shang
committed
add test
1 parent 33e2762 commit 304706d

File tree

6 files changed

+8
-21
lines changed

6 files changed

+8
-21
lines changed

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperdown",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"repo": "segmentfault/hyperdown.js",
55
"description": "A markdown parser",
66
"keywords": ["markdown", "hyperdown", "html"],

dist/Parser.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ var Parser = (function () {
466466
head = true;
467467
this.backBlock(1, 'table');
468468
}
469-
console.log(tableMatches);
469+
470470
if (tableMatches[1][0] == '|') {
471471
tableMatches[1] = tableMatches[1].substr(1);
472472

@@ -919,7 +919,7 @@ var Parser = (function () {
919919

920920
var _loop = function (key) {
921921
var line = lines[key];
922-
if (key === ignore) {
922+
if (parseInt(key) === ignore) {
923923
head = false;
924924
body = true;
925925
return 'continue';
@@ -933,7 +933,7 @@ var Parser = (function () {
933933
line = line.substr(1);
934934

935935
if (line[line.length - 1] === '|') {
936-
line = line.substr(0, -1);
936+
line = line.slice(0, -1);
937937
}
938938
}
939939

hyperdown.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@
895895
var space = _row[0];
896896
var type = _row[1];
897897
var line = _row[2];
898-
var _text = _row[3];
898+
var text = _row[3];
899899

900900
if (space !== minSpace) {
901901
var pattern = new RegExp("^\s{" + secondMinSpace + "}");
@@ -913,7 +913,7 @@
913913
html += "<li>" + this.parse(leftLines.join("\n")) + "</li>";
914914
}
915915

916-
leftLines = [_text];
916+
leftLines = [text];
917917
lastType = type;
918918
}
919919
} else {
@@ -1342,11 +1342,6 @@
13421342
})();
13431343

13441344
exports['default'] = Parser;
1345-
1346-
var parser = new Parser();
1347-
var text = '| Item | Value | Qty |\n| :-------- | --------:| :--: |\n| Computer | 1600 USD | 5 |\n| Phone | 12 USD | 12 |\n| Pipe | 1 USD | 234 |';
1348-
1349-
console.log(parser.makeHtml(text));
13501345
module.exports = exports['default'];
13511346

13521347
/***/ },

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Markdown解析器",
44
"repository": "https://github.com/SegmentFault/HyperDown.js",
55
"license": "BSD-4-Clause",
6-
"version": "0.1.3",
6+
"version": "0.1.4",
77
"devDependencies": {
88
"babel": "^5.8.22",
99
"babel-core": "^5.8.22",

src/Parser.js

-8
Original file line numberDiff line numberDiff line change
@@ -1050,11 +1050,3 @@ export default class Parser {
10501050
return this
10511051
}
10521052
}
1053-
var parser = new Parser()
1054-
var text = `| Item | Value | Qty |
1055-
| :-------- | --------:| :--: |
1056-
| Computer | 1600 USD | 5 |
1057-
| Phone | 12 USD | 12 |
1058-
| Pipe | 1 USD | 234 |`
1059-
1060-
console.log(parser.makeHtml(text))

test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('HyperDown.js', function() {
7878
assert.equal('<table><tbody><tr><td>test</td><td>test</td><tr></tbody></table>', parser.makeHtml('<table><tbody><tr><td>test</td><td>test</td><tr></tbody></table>'));
7979
});
8080
it('type2 |', function() {
81-
assert.equal('<table><thead><tr><th>test</th><th>test</th></tr></thead><thead><tr><th>------</th><th colspan="2">------</th></tr></thead><thead><tr><th>test</th><th>test</th></tr></thead></tbody></table>',
81+
assert.equal('<table><thead><tr><th align="left">Item</th><th>Value</th><th align="right">Qty</th></tr></thead><tbody><tr><td align="left">Computer</td><td>1600 USD</td><td align="right">5</td></tr><tr><td align="left">Phone</td><td>12 USD</td><td align="right">12</td></tr><tr><td align="left">Pipe</td><td>1 USD</td><td align="right">234</td></tr></tbody></table>',
8282
parser.makeHtml('| Item | Value | Qty |\n| :-------- | --------:| :--: |\n| Computer | 1600 USD | 5 |\n| Phone | 12 USD | 12 |\n| Pipe | 1 USD | 234 |'));
8383
});
8484
});

0 commit comments

Comments
 (0)