Fix urls to markedjs

This commit is contained in:
Steven 2018-03-03 14:20:24 -05:00
parent 76d75e19c7
commit ec78260e11
6 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "marked",
"homepage": "https://github.com/chjj/marked",
"homepage": "https://github.com/markedjs/marked",
"authors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>"
],

View File

@ -1,7 +1,7 @@
{
"name": "marked",
"version": "0.3.4",
"repo": "chjj/marked",
"repo": "markedjs/marked",
"description": "A markdown parser built for speed",
"keywords": ["markdown", "markup", "html"],
"scripts": ["lib/marked.js"],

View File

@ -1,7 +1,7 @@
/**
* marked - a markdown parser
* Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
* https://github.com/chjj/marked
* https://github.com/markedjs/marked
*/
;(function(root) {
@ -1316,7 +1316,7 @@ function marked(src, opt, callback) {
if (opt) opt = merge({}, marked.defaults, opt);
return Parser.parse(Lexer.lex(src, opt), opt);
} catch (e) {
e.message += '\nPlease report this to https://github.com/chjj/marked.';
e.message += '\nPlease report this to https://github.com/markedjs/marked.';
if ((opt || marked.defaults).silent) {
return '<p>An error occurred:</p><pre>'
+ escape(e.message + '', true)

View File

@ -81,7 +81,7 @@ For configuring and running programmatically.
require('marked')('*foo*', { gfm: true });
.SH BUGS
Please report any bugs to https://github.com/chjj/marked.
Please report any bugs to https://github.com/markedjs/marked.
.SH LICENSE
Copyright (c) 2011-2014, Christopher Jeffrey (MIT License).

4
marked.min.js vendored

File diff suppressed because one or more lines are too long

2
test/index.js vendored
View File

@ -3,7 +3,7 @@
/**
* marked tests
* Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed)
* https://github.com/chjj/marked
* https://github.com/markedjs/marked
*/
/**