marked 0.2.9 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +5 -0
- package/LICENSE +1 -1
- package/README.md +313 -80
- package/component.json +10 -0
- package/doc/broken.md +426 -0
- package/doc/todo.md +2 -0
- package/lib/marked.js +273 -158
- package/man/marked.1 +4 -4
- package/package.json +2 -1
package/man/marked.1
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.ds q \N'34'
|
|
2
|
-
.TH marked 1 "
|
|
2
|
+
.TH marked 1 "2014-01-31" "v0.3.1" "marked.js"
|
|
3
3
|
|
|
4
4
|
.SH NAME
|
|
5
5
|
marked \- a javascript markdown parser
|
|
@@ -23,9 +23,9 @@ cat in.md | marked > out.html
|
|
|
23
23
|
.TP
|
|
24
24
|
echo "hello *world*" | marked
|
|
25
25
|
.TP
|
|
26
|
-
marked
|
|
26
|
+
marked \-o out.html in.md \-\-gfm
|
|
27
27
|
.TP
|
|
28
|
-
marked
|
|
28
|
+
marked \-\-output="hello world.html" \-i in.md \-\-no-breaks
|
|
29
29
|
|
|
30
30
|
.SH OPTIONS
|
|
31
31
|
.TP
|
|
@@ -81,7 +81,7 @@ For configuring and running programmatically.
|
|
|
81
81
|
Please report any bugs to https://github.com/chjj/marked.
|
|
82
82
|
|
|
83
83
|
.SH LICENSE
|
|
84
|
-
Copyright (c) 2011-
|
|
84
|
+
Copyright (c) 2011-2014, Christopher Jeffrey (MIT License).
|
|
85
85
|
|
|
86
86
|
.SH "SEE ALSO"
|
|
87
87
|
.BR markdown(1),
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "marked",
|
|
3
3
|
"description": "A markdown parser built for speed",
|
|
4
4
|
"author": "Christopher Jeffrey",
|
|
5
|
-
"version": "0.2
|
|
5
|
+
"version": "0.3.2",
|
|
6
6
|
"main": "./lib/marked.js",
|
|
7
7
|
"bin": "./bin/marked",
|
|
8
8
|
"man": "./man/marked.1",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"repository": "git://github.com/chjj/marked.git",
|
|
11
11
|
"homepage": "https://github.com/chjj/marked",
|
|
12
12
|
"bugs": { "url": "http://github.com/chjj/marked/issues" },
|
|
13
|
+
"license": "MIT",
|
|
13
14
|
"keywords": ["markdown", "markup", "html"],
|
|
14
15
|
"tags": ["markdown", "markup", "html"],
|
|
15
16
|
"devDependencies": {
|