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", "name": "marked",
"homepage": "https://github.com/chjj/marked", "homepage": "https://github.com/markedjs/marked",
"authors": [ "authors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>" "Christopher Jeffrey <chjjeffrey@gmail.com>"
], ],

View File

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

View File

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

View File

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