From dee0287a85d5f4f77c3d0d15438ca5e8f48aa5e2 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 6 Jan 2022 18:45:38 +0100 Subject: [PATCH] Update namespace --- block.go | 2 +- block_test.go | 6 +++--- go.mod | 2 +- html.go | 2 +- inline.go | 2 +- inline_test.go | 2 +- latex.go | 2 +- markdown.go | 2 +- markdown_test.go | 6 +++--- ref_test.go | 2 +- smartypants.go | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/block.go b/block.go index 563cb29..121c04a 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 f2d998d..a490849 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. @@ -1602,7 +1602,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", } @@ -1612,7 +1612,7 @@ func TestListWithFencedCodeBlock(t *testing.T) { func TestListWithMalformedFencedCodeBlock(t *testing.T) { // 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\n```\ncode\n\n2. two
  2. \n
\n", diff --git a/go.mod b/go.mod index d0f058a..f7d992b 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/russross/blackfriday +module github.com/danog/blackfriday go 1.13 diff --git a/html.go b/html.go index fa044ca..f16f873 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 27056eb..2d84b4f 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 cb1dfd5..cef3743 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/latex.go b/latex.go index 3d30d09..8d0c12a 100644 --- a/latex.go +++ b/latex.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 a0349ca..cfb18ec 100644 --- a/markdown.go +++ b/markdown.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_test.go b/markdown_test.go index d897644..777ea73 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. @@ -62,12 +62,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 733a63a..692245a 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 f25bd07..6da5db8 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.