diff --git a/block.go b/block.go index dcd61e6..0150256 100644 --- a/block.go +++ b/block.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/block_test.go b/block_test.go index c339dee..20ddc71 100644 --- a/block_test.go +++ b/block_test.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. @@ -1589,7 +1589,7 @@ func TestListWithFencedCodeBlock(t *testing.T) { var tests = []string{ "1. one\n\n ```\n code\n ```\n\n2. two\n", "
    \n
  1. one

    \n\n
    code\n
  2. \n\n
  3. two

  4. \n
\n", - // https://github.com/russross/blackfriday/issues/239 + // https://github.com/danog/blackfriday/issues/239 "1. one\n\n ```\n - code\n ```\n\n2. two\n", "
    \n
  1. one

    \n\n
    - code\n
  2. \n\n
  3. two

  4. \n
\n", } @@ -1600,7 +1600,7 @@ func TestListWithMalformedFencedCodeBlock(t *testing.T) { t.Parallel() // Ensure that in the case of an unclosed fenced code block in a list, // no source gets ommitted (even if it is malformed). - // See russross/blackfriday#372 for context. + // See danog/blackfriday#372 for context. var tests = []string{ "1. one\n\n ```\n code\n\n2. two\n", "
    \n
  1. one\n```\ncode\n2. two
  2. \n
\n", diff --git a/doc.go b/doc.go index 57ff152..fe1f37c 100644 --- a/doc.go +++ b/doc.go @@ -14,7 +14,7 @@ // to the Markdown processor. // // If you're interested in calling Blackfriday from command line, see -// https://github.com/russross/blackfriday-tool. +// https://github.com/danog/blackfriday-tool. // // Sanitized Anchor Names // diff --git a/go.mod b/go.mod index 620b74e..d490566 100644 --- a/go.mod +++ b/go.mod @@ -1 +1 @@ -module github.com/russross/blackfriday/v2 +module github.com/danog/blackfriday/v2 diff --git a/helpers_test.go b/helpers_test.go index 420e794..154b2d1 100644 --- a/helpers_test.go +++ b/helpers_test.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/html.go b/html.go index b5ef299..3f1ab17 100644 --- a/html.go +++ b/html.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/inline.go b/inline.go index d45bd94..f0df681 100644 --- a/inline.go +++ b/inline.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/inline_test.go b/inline_test.go index 5a91d8a..244d68a 100644 --- a/inline_test.go +++ b/inline_test.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/markdown.go b/markdown.go index 58d2e45..cf9040b 100644 --- a/markdown.go +++ b/markdown.go @@ -1,5 +1,5 @@ // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/markdown_test.go b/markdown_test.go index 078dcda..dc9289d 100644 --- a/markdown_test.go +++ b/markdown_test.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. @@ -26,12 +26,12 @@ func TestDocument(t *testing.T) { "", // This shouldn't panic. - // https://github.com/russross/blackfriday/issues/172 + // https://github.com/danog/blackfriday/issues/172 "[]:<", "

[]:<

\n", // This shouldn't panic. - // https://github.com/russross/blackfriday/issues/173 + // https://github.com/danog/blackfriday/issues/173 " [", "

[

\n", } diff --git a/ref_test.go b/ref_test.go index a2e689c..36ac53c 100644 --- a/ref_test.go +++ b/ref_test.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. diff --git a/smartypants.go b/smartypants.go index 3a220e9..75ad98f 100644 --- a/smartypants.go +++ b/smartypants.go @@ -1,6 +1,6 @@ // // Blackfriday Markdown Processor -// Available at http://github.com/russross/blackfriday +// Available at http://github.com/danog/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License.