diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-09-24 20:38:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-24 20:38:36 -0700 |
commit | e3a3292e87ef212e3c2134e34e28de0fff3d2978 (patch) | |
tree | 3ba2012502f05545c467df8af9b9ab81391b325f | |
parent | be0089d79840e0b12c113f745e505244ede1efaa (diff) | |
parent | ce4852f081f61386af82b03de7a37cd69d86e6f2 (diff) |
Merge pull request #498 from mortenpi/fix-gh-links
Update GitHub links
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | changelog.txt | 14 | ||||
-rw-r--r-- | package.json | 2 |
3 files changed, 12 insertions, 12 deletions
@@ -17,12 +17,12 @@ of the spec. The reference implementations live in separate repositories: -- <https://github.com/jgm/cmark> (C) -- <https://github.com/jgm/commonmark.js> (JavaScript) +- <https://github.com/commonmark/cmark> (C) +- <https://github.com/commonmark/commonmark.js> (JavaScript) There is a list of third-party libraries in a dozen different languages -[here](https://github.com/jgm/CommonMark/wiki/List-of-CommonMark-Implementations). +[here](https://github.com/commonmark/CommonMark/wiki/List-of-CommonMark-Implementations). Running tests against the spec ------------------------------ @@ -160,7 +160,7 @@ Contributing There is a [forum for discussing CommonMark](http://talk.commonmark.org); you should use it instead of github issues for questions and possibly open-ended discussions. -Use the [github issue tracker](http://github.com/jgm/CommonMark/issues) +Use the [github issue tracker](http://github.com/commonmark/CommonMark/issues) only for simple, clear, actionable issues. Authors diff --git a/changelog.txt b/changelog.txt index 938a104..2fff8b1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,7 @@ [0.28] * Allow unlimited balanced pairs of parentheses in link URLs - (@kivikakk, jgm/cmark#166). The rationale is that there are many URLs + (@kivikakk, commonmark/cmark#166). The rationale is that there are many URLs containing unescaped nested parentheses. Note that implementations are allowed to impose limits on parentheses nesting for performance reasons, but at least three levels @@ -64,7 +64,7 @@ * Test suite: Don't mess up on examples with 32 backticks (#423). * Removed duplicate reference to "container block". * Add examples for Unicode whitespace (Timothy Gu). In light of - jgm/commonmark.js#107, add a few examples/test cases to make sure the + commonmark/commonmark.js#107, add a few examples/test cases to make sure the distinction between Unicode whitespace and regular whitespace is kept. * Fix missing closing paren typo (Robin Stocker). @@ -114,7 +114,7 @@ [0.25] - * Added several more tab-handling cases (see jgm/cmark#101). + * Added several more tab-handling cases (see commonmark/cmark#101). * Fixed spec test for tabs. In the blockquote with a tab following the `>`, only one space should be consumed, yielding two spaces at the beginning of the content. @@ -243,7 +243,7 @@ * Added `iframe` to list of tags that always start HTML blocks (#352). * Added example of list item starting with two blanks (#332). * Added test case clarifying laziness in block quotes (see - jgm/commonmark.js#60). + commonmark/commonmark.js#60). * Add an example with mixed indentation code block in "Tabs" section (Robin Stocker). This makes sure that implementations skip columns instead of offsets for continued indented code blocks. @@ -295,14 +295,14 @@ * Specify nested link definition behavior in prose (Benjamin Dumke-von der Ehe). * Added test for edge case in link reference parsing - (Benjamin Dumke-von der Ehe, see jgm/commonmark.js#49). + (Benjamin Dumke-von der Ehe, see commonmark/commonmark.js#49). * Added link tests with fragment identifiers and queries (David Green, #342). * Added test cases with a literal backslash in a link destination - (see jgm/commonmark.js#45). + (see commonmark/commonmark.js#45). * Added test for entity `≧̸` which resolves to two code points. Put entity tests on several lines for readability (see - jgm/commonmark.js#47). + commonmark/commonmark.js#47). * Fixed broken "pre" literal HTML example. Contents weren't escaped properly. * Simplified defn of "unicode whitespace character," diff --git a/package.json b/package.json index 70a21dc..947e655 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "commonmark", "markdown" ], - "repository": "jgm/CommonMark", + "repository": "commonmark/CommonMark", "license": "MIT", "files": [ "index.js", |