Skip to content

Commit

Permalink
Fix urls to markedjs
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed Mar 3, 2018
1 parent 76d75e1 commit ec78260
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marked",
"homepage": "https://github.com/chjj/marked",
"homepage": "https://github.com/markedjs/marked",
"authors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -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"],
Expand Down
4 changes: 2 additions & 2 deletions lib/marked.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion man/marked.1
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
4 changes: 2 additions & 2 deletions marked.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* marked tests
* Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed)
* https://github.com/chjj/marked
* https://github.com/markedjs/marked
*/

/**
Expand Down

0 comments on commit ec78260

Please sign in to comment.