diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2d2235a75..7e934f5b73 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ We accept contributions via Pull Requests on [GitHub](https://github.com/thephpl ## Pull Requests -- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer). +- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://pear.php.net/package/PHP_CodeSniffer). - **Add tests!** - Your patch won't be accepted if it doesn't have tests. diff --git a/composer.json b/composer.json index d68d5dc2ba..30d299ab08 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ { "name": "Colin O'Dell", "email": "colinodell@gmail.com", - "homepage": "http://www.colinodell.com", + "homepage": "https://www.colinodell.com", "role": "Lead Developer" } ], diff --git a/src/Block/Element/AbstractBlock.php b/src/Block/Element/AbstractBlock.php index 2bf864584f..1d8b5351c7 100644 --- a/src/Block/Element/AbstractBlock.php +++ b/src/Block/Element/AbstractBlock.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/BlockQuote.php b/src/Block/Element/BlockQuote.php index 7e86ef89db..21d2c8fe38 100644 --- a/src/Block/Element/BlockQuote.php +++ b/src/Block/Element/BlockQuote.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/Document.php b/src/Block/Element/Document.php index 63eadf3049..27e2a9fab6 100644 --- a/src/Block/Element/Document.php +++ b/src/Block/Element/Document.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/FencedCode.php b/src/Block/Element/FencedCode.php index 1e73bc0ea5..deb2f32446 100644 --- a/src/Block/Element/FencedCode.php +++ b/src/Block/Element/FencedCode.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/Heading.php b/src/Block/Element/Heading.php index 4663645a9d..94302edc46 100644 --- a/src/Block/Element/Heading.php +++ b/src/Block/Element/Heading.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/HtmlBlock.php b/src/Block/Element/HtmlBlock.php index 0d60adf8fe..51f778ec79 100644 --- a/src/Block/Element/HtmlBlock.php +++ b/src/Block/Element/HtmlBlock.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/IndentedCode.php b/src/Block/Element/IndentedCode.php index 50decde130..bf913a799a 100644 --- a/src/Block/Element/IndentedCode.php +++ b/src/Block/Element/IndentedCode.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/ListBlock.php b/src/Block/Element/ListBlock.php index a9df74909d..f93dd6d493 100644 --- a/src/Block/Element/ListBlock.php +++ b/src/Block/Element/ListBlock.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/ListData.php b/src/Block/Element/ListData.php index d98840bb95..3555d09651 100644 --- a/src/Block/Element/ListData.php +++ b/src/Block/Element/ListData.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/ListItem.php b/src/Block/Element/ListItem.php index 6cd01d18bc..902e832857 100644 --- a/src/Block/Element/ListItem.php +++ b/src/Block/Element/ListItem.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/Paragraph.php b/src/Block/Element/Paragraph.php index 88f8b17884..f5c9fb745c 100644 --- a/src/Block/Element/Paragraph.php +++ b/src/Block/Element/Paragraph.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Element/ThematicBreak.php b/src/Block/Element/ThematicBreak.php index 24dbb2c7fc..1e88317e5e 100644 --- a/src/Block/Element/ThematicBreak.php +++ b/src/Block/Element/ThematicBreak.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/ATXHeadingParser.php b/src/Block/Parser/ATXHeadingParser.php index eba33481a0..050019f10e 100644 --- a/src/Block/Parser/ATXHeadingParser.php +++ b/src/Block/Parser/ATXHeadingParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/BlockParserInterface.php b/src/Block/Parser/BlockParserInterface.php index f60b94a458..1f171d9795 100644 --- a/src/Block/Parser/BlockParserInterface.php +++ b/src/Block/Parser/BlockParserInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/BlockQuoteParser.php b/src/Block/Parser/BlockQuoteParser.php index e0347df0ba..17593270e4 100644 --- a/src/Block/Parser/BlockQuoteParser.php +++ b/src/Block/Parser/BlockQuoteParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/FencedCodeParser.php b/src/Block/Parser/FencedCodeParser.php index e9f894329a..d87681b171 100644 --- a/src/Block/Parser/FencedCodeParser.php +++ b/src/Block/Parser/FencedCodeParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/HtmlBlockParser.php b/src/Block/Parser/HtmlBlockParser.php index 713770e462..3eab228a84 100644 --- a/src/Block/Parser/HtmlBlockParser.php +++ b/src/Block/Parser/HtmlBlockParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/IndentedCodeParser.php b/src/Block/Parser/IndentedCodeParser.php index 5f1261e0ff..ad45bd48cf 100644 --- a/src/Block/Parser/IndentedCodeParser.php +++ b/src/Block/Parser/IndentedCodeParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/LazyParagraphParser.php b/src/Block/Parser/LazyParagraphParser.php index 520b442338..bf05196cad 100644 --- a/src/Block/Parser/LazyParagraphParser.php +++ b/src/Block/Parser/LazyParagraphParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/ListParser.php b/src/Block/Parser/ListParser.php index af144f5c0a..24319a1c68 100644 --- a/src/Block/Parser/ListParser.php +++ b/src/Block/Parser/ListParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/SetExtHeadingParser.php b/src/Block/Parser/SetExtHeadingParser.php index 7689349d3c..5a20a6e64d 100644 --- a/src/Block/Parser/SetExtHeadingParser.php +++ b/src/Block/Parser/SetExtHeadingParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Parser/ThematicBreakParser.php b/src/Block/Parser/ThematicBreakParser.php index c614d235ab..56314daa7b 100644 --- a/src/Block/Parser/ThematicBreakParser.php +++ b/src/Block/Parser/ThematicBreakParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/BlockQuoteRenderer.php b/src/Block/Renderer/BlockQuoteRenderer.php index c134f7342a..e2dbf5f26e 100644 --- a/src/Block/Renderer/BlockQuoteRenderer.php +++ b/src/Block/Renderer/BlockQuoteRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/BlockRendererInterface.php b/src/Block/Renderer/BlockRendererInterface.php index 2b92209a82..3f07f33d7a 100644 --- a/src/Block/Renderer/BlockRendererInterface.php +++ b/src/Block/Renderer/BlockRendererInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/DocumentRenderer.php b/src/Block/Renderer/DocumentRenderer.php index 7a72c04fa3..fe0a453732 100644 --- a/src/Block/Renderer/DocumentRenderer.php +++ b/src/Block/Renderer/DocumentRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/FencedCodeRenderer.php b/src/Block/Renderer/FencedCodeRenderer.php index c1c75983f1..6dee2774be 100644 --- a/src/Block/Renderer/FencedCodeRenderer.php +++ b/src/Block/Renderer/FencedCodeRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/HeadingRenderer.php b/src/Block/Renderer/HeadingRenderer.php index ce5cf7883b..4f666898ec 100644 --- a/src/Block/Renderer/HeadingRenderer.php +++ b/src/Block/Renderer/HeadingRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/HtmlBlockRenderer.php b/src/Block/Renderer/HtmlBlockRenderer.php index 95fa7b26b1..c16e186544 100644 --- a/src/Block/Renderer/HtmlBlockRenderer.php +++ b/src/Block/Renderer/HtmlBlockRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/IndentedCodeRenderer.php b/src/Block/Renderer/IndentedCodeRenderer.php index ea506998ad..b065fd122c 100644 --- a/src/Block/Renderer/IndentedCodeRenderer.php +++ b/src/Block/Renderer/IndentedCodeRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/ListBlockRenderer.php b/src/Block/Renderer/ListBlockRenderer.php index 73ed30ced9..9d4e3681fb 100644 --- a/src/Block/Renderer/ListBlockRenderer.php +++ b/src/Block/Renderer/ListBlockRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/ListItemRenderer.php b/src/Block/Renderer/ListItemRenderer.php index 2166708dc3..e8c340e7e4 100644 --- a/src/Block/Renderer/ListItemRenderer.php +++ b/src/Block/Renderer/ListItemRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/ParagraphRenderer.php b/src/Block/Renderer/ParagraphRenderer.php index 081b2cc041..a221f29121 100644 --- a/src/Block/Renderer/ParagraphRenderer.php +++ b/src/Block/Renderer/ParagraphRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Block/Renderer/ThematicBreakRenderer.php b/src/Block/Renderer/ThematicBreakRenderer.php index e2a8e793ca..c92e5de074 100644 --- a/src/Block/Renderer/ThematicBreakRenderer.php +++ b/src/Block/Renderer/ThematicBreakRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/CommonMarkConverter.php b/src/CommonMarkConverter.php index f1e874d5e6..04b6fefccb 100644 --- a/src/CommonMarkConverter.php +++ b/src/CommonMarkConverter.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Context.php b/src/Context.php index 2798be34e6..e99cf9ef9e 100644 --- a/src/Context.php +++ b/src/Context.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/ContextInterface.php b/src/ContextInterface.php index 768a8b88fb..12846c6ec3 100644 --- a/src/ContextInterface.php +++ b/src/ContextInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Converter.php b/src/Converter.php index b3528e61a6..4f0c72b056 100644 --- a/src/Converter.php +++ b/src/Converter.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Delimiter/Delimiter.php b/src/Delimiter/Delimiter.php index ba8bbb553b..66ce8296ea 100644 --- a/src/Delimiter/Delimiter.php +++ b/src/Delimiter/Delimiter.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Delimiter/DelimiterStack.php b/src/Delimiter/DelimiterStack.php index b606db2d5a..0c9531f410 100644 --- a/src/Delimiter/DelimiterStack.php +++ b/src/Delimiter/DelimiterStack.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/DocParser.php b/src/DocParser.php index 37a29c40fb..b2dba95335 100644 --- a/src/DocParser.php +++ b/src/DocParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/DocumentProcessorInterface.php b/src/DocumentProcessorInterface.php index c5c8db72b5..90f55266cf 100644 --- a/src/DocumentProcessorInterface.php +++ b/src/DocumentProcessorInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/ElementRendererInterface.php b/src/ElementRendererInterface.php index e3bd5d5249..9101a44d78 100644 --- a/src/ElementRendererInterface.php +++ b/src/ElementRendererInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Environment.php b/src/Environment.php index 1bc22577f8..31ffcbbbe9 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Extension/CommonMarkCoreExtension.php b/src/Extension/CommonMarkCoreExtension.php index 5a40e09fe8..c9f47b589f 100644 --- a/src/Extension/CommonMarkCoreExtension.php +++ b/src/Extension/CommonMarkCoreExtension.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Extension/Extension.php b/src/Extension/Extension.php index 9e811a9607..d52249234b 100644 --- a/src/Extension/Extension.php +++ b/src/Extension/Extension.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Extension/ExtensionInterface.php b/src/Extension/ExtensionInterface.php index c5fc2f39e3..bdfcf8d622 100644 --- a/src/Extension/ExtensionInterface.php +++ b/src/Extension/ExtensionInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Extension/MiscExtension.php b/src/Extension/MiscExtension.php index 11cd284cde..0c3f730533 100644 --- a/src/Extension/MiscExtension.php +++ b/src/Extension/MiscExtension.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/HtmlRenderer.php b/src/HtmlRenderer.php index c65492c453..b3a50f29a4 100644 --- a/src/HtmlRenderer.php +++ b/src/HtmlRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/AbstractInline.php b/src/Inline/Element/AbstractInline.php index a0de4726f5..ae75500314 100644 --- a/src/Inline/Element/AbstractInline.php +++ b/src/Inline/Element/AbstractInline.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/AbstractInlineContainer.php b/src/Inline/Element/AbstractInlineContainer.php index 7176aa86d6..00dbacce1f 100644 --- a/src/Inline/Element/AbstractInlineContainer.php +++ b/src/Inline/Element/AbstractInlineContainer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/AbstractStringContainer.php b/src/Inline/Element/AbstractStringContainer.php index b2852eca64..edb26561af 100644 --- a/src/Inline/Element/AbstractStringContainer.php +++ b/src/Inline/Element/AbstractStringContainer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/AbstractWebResource.php b/src/Inline/Element/AbstractWebResource.php index f5eaddf559..d9b3aa0835 100644 --- a/src/Inline/Element/AbstractWebResource.php +++ b/src/Inline/Element/AbstractWebResource.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Code.php b/src/Inline/Element/Code.php index b42f9ae467..352a798ee4 100644 --- a/src/Inline/Element/Code.php +++ b/src/Inline/Element/Code.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Emphasis.php b/src/Inline/Element/Emphasis.php index efb4b76c95..046b760392 100644 --- a/src/Inline/Element/Emphasis.php +++ b/src/Inline/Element/Emphasis.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/HtmlInline.php b/src/Inline/Element/HtmlInline.php index 54cea30e2f..0a3301c326 100644 --- a/src/Inline/Element/HtmlInline.php +++ b/src/Inline/Element/HtmlInline.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Image.php b/src/Inline/Element/Image.php index 3bfe4e4f77..c05efb7da3 100644 --- a/src/Inline/Element/Image.php +++ b/src/Inline/Element/Image.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Link.php b/src/Inline/Element/Link.php index 556bebb5ee..571798be46 100644 --- a/src/Inline/Element/Link.php +++ b/src/Inline/Element/Link.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Newline.php b/src/Inline/Element/Newline.php index d1abf6dad3..1d7cc7e219 100644 --- a/src/Inline/Element/Newline.php +++ b/src/Inline/Element/Newline.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Strong.php b/src/Inline/Element/Strong.php index a055511fc7..f519c3d8d5 100644 --- a/src/Inline/Element/Strong.php +++ b/src/Inline/Element/Strong.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Element/Text.php b/src/Inline/Element/Text.php index a2a421ba3b..4e851bd6ad 100644 --- a/src/Inline/Element/Text.php +++ b/src/Inline/Element/Text.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/AutolinkParser.php b/src/Inline/Parser/AutolinkParser.php index 2981dae00d..ec5a08c1ff 100644 --- a/src/Inline/Parser/AutolinkParser.php +++ b/src/Inline/Parser/AutolinkParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/BacktickParser.php b/src/Inline/Parser/BacktickParser.php index fd71480557..01b1f6b805 100644 --- a/src/Inline/Parser/BacktickParser.php +++ b/src/Inline/Parser/BacktickParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/BangParser.php b/src/Inline/Parser/BangParser.php index 5387764ab6..02d8ddd630 100644 --- a/src/Inline/Parser/BangParser.php +++ b/src/Inline/Parser/BangParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/CloseBracketParser.php b/src/Inline/Parser/CloseBracketParser.php index 2fec9acecc..6e6c24491f 100644 --- a/src/Inline/Parser/CloseBracketParser.php +++ b/src/Inline/Parser/CloseBracketParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/EmphasisParser.php b/src/Inline/Parser/EmphasisParser.php index f2a460c18b..d271fecfe6 100644 --- a/src/Inline/Parser/EmphasisParser.php +++ b/src/Inline/Parser/EmphasisParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/EntityParser.php b/src/Inline/Parser/EntityParser.php index 53ca4c17b4..577e7a5a78 100644 --- a/src/Inline/Parser/EntityParser.php +++ b/src/Inline/Parser/EntityParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/EscapableParser.php b/src/Inline/Parser/EscapableParser.php index e6b0954104..5c8b42dba7 100644 --- a/src/Inline/Parser/EscapableParser.php +++ b/src/Inline/Parser/EscapableParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/HtmlInlineParser.php b/src/Inline/Parser/HtmlInlineParser.php index 392a61b09d..02368ed6c4 100644 --- a/src/Inline/Parser/HtmlInlineParser.php +++ b/src/Inline/Parser/HtmlInlineParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/NewlineParser.php b/src/Inline/Parser/NewlineParser.php index 591bc170b6..36e470f133 100644 --- a/src/Inline/Parser/NewlineParser.php +++ b/src/Inline/Parser/NewlineParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Parser/OpenBracketParser.php b/src/Inline/Parser/OpenBracketParser.php index 04c099d112..cfa04090a5 100644 --- a/src/Inline/Parser/OpenBracketParser.php +++ b/src/Inline/Parser/OpenBracketParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Processor/EmphasisProcessor.php b/src/Inline/Processor/EmphasisProcessor.php index e617576649..797f6ec2d7 100644 --- a/src/Inline/Processor/EmphasisProcessor.php +++ b/src/Inline/Processor/EmphasisProcessor.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Processor/InlineProcessorInterface.php b/src/Inline/Processor/InlineProcessorInterface.php index 1de3e69c83..b1a6041799 100644 --- a/src/Inline/Processor/InlineProcessorInterface.php +++ b/src/Inline/Processor/InlineProcessorInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/CodeRenderer.php b/src/Inline/Renderer/CodeRenderer.php index 86e9919b89..5cf70f74ad 100644 --- a/src/Inline/Renderer/CodeRenderer.php +++ b/src/Inline/Renderer/CodeRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/EmphasisRenderer.php b/src/Inline/Renderer/EmphasisRenderer.php index fdccbd58da..8ccefbcd8e 100644 --- a/src/Inline/Renderer/EmphasisRenderer.php +++ b/src/Inline/Renderer/EmphasisRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/HtmlInlineRenderer.php b/src/Inline/Renderer/HtmlInlineRenderer.php index b2de708184..ebbec5f19e 100644 --- a/src/Inline/Renderer/HtmlInlineRenderer.php +++ b/src/Inline/Renderer/HtmlInlineRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/ImageRenderer.php b/src/Inline/Renderer/ImageRenderer.php index 9a634bd894..aa35d9ebea 100644 --- a/src/Inline/Renderer/ImageRenderer.php +++ b/src/Inline/Renderer/ImageRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/InlineRendererInterface.php b/src/Inline/Renderer/InlineRendererInterface.php index 91af10e4d8..06741e5028 100644 --- a/src/Inline/Renderer/InlineRendererInterface.php +++ b/src/Inline/Renderer/InlineRendererInterface.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/LinkRenderer.php b/src/Inline/Renderer/LinkRenderer.php index b553388778..90d2505c4c 100644 --- a/src/Inline/Renderer/LinkRenderer.php +++ b/src/Inline/Renderer/LinkRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/NewlineRenderer.php b/src/Inline/Renderer/NewlineRenderer.php index f45ab3d00b..4a94c675a3 100644 --- a/src/Inline/Renderer/NewlineRenderer.php +++ b/src/Inline/Renderer/NewlineRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/StrongRenderer.php b/src/Inline/Renderer/StrongRenderer.php index b93a01709a..95234159c4 100644 --- a/src/Inline/Renderer/StrongRenderer.php +++ b/src/Inline/Renderer/StrongRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Inline/Renderer/TextRenderer.php b/src/Inline/Renderer/TextRenderer.php index 31fa55cb48..575c3bc028 100644 --- a/src/Inline/Renderer/TextRenderer.php +++ b/src/Inline/Renderer/TextRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/InlineParserContext.php b/src/InlineParserContext.php index 47ffcc68ff..f1e99257e3 100644 --- a/src/InlineParserContext.php +++ b/src/InlineParserContext.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/InlineParserEngine.php b/src/InlineParserEngine.php index acd8b59ccd..926934d091 100644 --- a/src/InlineParserEngine.php +++ b/src/InlineParserEngine.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Reference/Reference.php b/src/Reference/Reference.php index be7f9c8dc3..2cf8cb8386 100644 --- a/src/Reference/Reference.php +++ b/src/Reference/Reference.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Reference/ReferenceMap.php b/src/Reference/ReferenceMap.php index af10cd9a22..cd14b39a45 100644 --- a/src/Reference/ReferenceMap.php +++ b/src/Reference/ReferenceMap.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/ReferenceParser.php b/src/ReferenceParser.php index dbea2d91e4..f131bd5ea5 100644 --- a/src/ReferenceParser.php +++ b/src/ReferenceParser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/UnmatchedBlockCloser.php b/src/UnmatchedBlockCloser.php index ec847cff98..00ab1c8606 100644 --- a/src/UnmatchedBlockCloser.php +++ b/src/UnmatchedBlockCloser.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Util/Configuration.php b/src/Util/Configuration.php index b001a84dcb..974527c16f 100644 --- a/src/Util/Configuration.php +++ b/src/Util/Configuration.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Util/Html5Entities.php b/src/Util/Html5Entities.php index db199ef916..c13d38e78b 100644 --- a/src/Util/Html5Entities.php +++ b/src/Util/Html5Entities.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Util/LinkParserHelper.php b/src/Util/LinkParserHelper.php index 7fb224601b..31fc4ab089 100644 --- a/src/Util/LinkParserHelper.php +++ b/src/Util/LinkParserHelper.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Util/RegexHelper.php b/src/Util/RegexHelper.php index 12142953e4..6d3cda9e26 100644 --- a/src/Util/RegexHelper.php +++ b/src/Util/RegexHelper.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/src/Util/UrlEncoder.php b/src/Util/UrlEncoder.php index 071d1b3ccf..8d4fcfbdd4 100644 --- a/src/Util/UrlEncoder.php +++ b/src/Util/UrlEncoder.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/functional/SpecTest.php b/tests/functional/SpecTest.php index 982ca448ca..9aa16134f1 100644 --- a/tests/functional/SpecTest.php +++ b/tests/functional/SpecTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/BlockQuoteRendererTest.php b/tests/unit/Block/Renderer/BlockQuoteRendererTest.php index 5ecc37978c..703343a421 100644 --- a/tests/unit/Block/Renderer/BlockQuoteRendererTest.php +++ b/tests/unit/Block/Renderer/BlockQuoteRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/DocumentRendererTest.php b/tests/unit/Block/Renderer/DocumentRendererTest.php index ab0b6761a1..c84d93952f 100644 --- a/tests/unit/Block/Renderer/DocumentRendererTest.php +++ b/tests/unit/Block/Renderer/DocumentRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/FencedCodeRendererTest.php b/tests/unit/Block/Renderer/FencedCodeRendererTest.php index ec9b0c1c87..1d14d68be7 100644 --- a/tests/unit/Block/Renderer/FencedCodeRendererTest.php +++ b/tests/unit/Block/Renderer/FencedCodeRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/HeadingRendererTest.php b/tests/unit/Block/Renderer/HeadingRendererTest.php index 14b930b652..4e242fb31d 100644 --- a/tests/unit/Block/Renderer/HeadingRendererTest.php +++ b/tests/unit/Block/Renderer/HeadingRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/HtmlBlockRendererTest.php b/tests/unit/Block/Renderer/HtmlBlockRendererTest.php index 382872dffc..54a13d1e5e 100644 --- a/tests/unit/Block/Renderer/HtmlBlockRendererTest.php +++ b/tests/unit/Block/Renderer/HtmlBlockRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/IndentedCodeRendererTest.php b/tests/unit/Block/Renderer/IndentedCodeRendererTest.php index 6f22ec99bd..092b666bfb 100644 --- a/tests/unit/Block/Renderer/IndentedCodeRendererTest.php +++ b/tests/unit/Block/Renderer/IndentedCodeRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/ListBlockRendererTest.php b/tests/unit/Block/Renderer/ListBlockRendererTest.php index a34c1da722..d476caaa44 100644 --- a/tests/unit/Block/Renderer/ListBlockRendererTest.php +++ b/tests/unit/Block/Renderer/ListBlockRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/ListItemRendererTest.php b/tests/unit/Block/Renderer/ListItemRendererTest.php index 3d199f2a5e..8ef3bdc698 100644 --- a/tests/unit/Block/Renderer/ListItemRendererTest.php +++ b/tests/unit/Block/Renderer/ListItemRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/ParagraphRendererTest.php b/tests/unit/Block/Renderer/ParagraphRendererTest.php index 4d66797b7f..4953d5b651 100644 --- a/tests/unit/Block/Renderer/ParagraphRendererTest.php +++ b/tests/unit/Block/Renderer/ParagraphRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Block/Renderer/ThematicBreakRendererTest.php b/tests/unit/Block/Renderer/ThematicBreakRendererTest.php index af4fa442c3..fab3f998ed 100644 --- a/tests/unit/Block/Renderer/ThematicBreakRendererTest.php +++ b/tests/unit/Block/Renderer/ThematicBreakRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/EnvironmentTest.php b/tests/unit/EnvironmentTest.php index 687ecbc0c2..d0d25ab465 100644 --- a/tests/unit/EnvironmentTest.php +++ b/tests/unit/EnvironmentTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Extension/ExtensionTest.php b/tests/unit/Extension/ExtensionTest.php index 540becd9f3..1f9f4acfb1 100644 --- a/tests/unit/Extension/ExtensionTest.php +++ b/tests/unit/Extension/ExtensionTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Extension/MiscExtensionTest.php b/tests/unit/Extension/MiscExtensionTest.php index 746bd6cf81..52688d6a53 100644 --- a/tests/unit/Extension/MiscExtensionTest.php +++ b/tests/unit/Extension/MiscExtensionTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/FakeEmptyHtmlRenderer.php b/tests/unit/FakeEmptyHtmlRenderer.php index 2f90c75caa..81b7aa5894 100644 --- a/tests/unit/FakeEmptyHtmlRenderer.php +++ b/tests/unit/FakeEmptyHtmlRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/FakeHtmlRenderer.php b/tests/unit/FakeHtmlRenderer.php index ca9f895fb8..77da48b823 100644 --- a/tests/unit/FakeHtmlRenderer.php +++ b/tests/unit/FakeHtmlRenderer.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/HtmlElementTest.php b/tests/unit/HtmlElementTest.php index 1b6c798534..175e452e73 100644 --- a/tests/unit/HtmlElementTest.php +++ b/tests/unit/HtmlElementTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Parser/BacktickParserTest.php b/tests/unit/Inline/Parser/BacktickParserTest.php index 9d52044af1..24d503bc40 100644 --- a/tests/unit/Inline/Parser/BacktickParserTest.php +++ b/tests/unit/Inline/Parser/BacktickParserTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/CodeRendererTest.php b/tests/unit/Inline/Renderer/CodeRendererTest.php index ca2a3d14c2..f3dc12115f 100644 --- a/tests/unit/Inline/Renderer/CodeRendererTest.php +++ b/tests/unit/Inline/Renderer/CodeRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/EmphasisRendererTest.php b/tests/unit/Inline/Renderer/EmphasisRendererTest.php index 1334870074..2c404ad524 100644 --- a/tests/unit/Inline/Renderer/EmphasisRendererTest.php +++ b/tests/unit/Inline/Renderer/EmphasisRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/HtmlInlineRendererTest.php b/tests/unit/Inline/Renderer/HtmlInlineRendererTest.php index d5a048fbb5..e188eb16da 100644 --- a/tests/unit/Inline/Renderer/HtmlInlineRendererTest.php +++ b/tests/unit/Inline/Renderer/HtmlInlineRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/ImageRendererTest.php b/tests/unit/Inline/Renderer/ImageRendererTest.php index 09ae603d0c..cdec852a61 100644 --- a/tests/unit/Inline/Renderer/ImageRendererTest.php +++ b/tests/unit/Inline/Renderer/ImageRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/LinkRendererTest.php b/tests/unit/Inline/Renderer/LinkRendererTest.php index c3763652d0..13bd6918be 100644 --- a/tests/unit/Inline/Renderer/LinkRendererTest.php +++ b/tests/unit/Inline/Renderer/LinkRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/NewlineRendererTest.php b/tests/unit/Inline/Renderer/NewlineRendererTest.php index 7758c57404..b61de8d8ab 100644 --- a/tests/unit/Inline/Renderer/NewlineRendererTest.php +++ b/tests/unit/Inline/Renderer/NewlineRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/StrongRendererTest.php b/tests/unit/Inline/Renderer/StrongRendererTest.php index 5cba567e99..314de5133b 100644 --- a/tests/unit/Inline/Renderer/StrongRendererTest.php +++ b/tests/unit/Inline/Renderer/StrongRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE diff --git a/tests/unit/Inline/Renderer/TextRendererTest.php b/tests/unit/Inline/Renderer/TextRendererTest.php index dad66a4bde..dff5b4cad2 100644 --- a/tests/unit/Inline/Renderer/TextRendererTest.php +++ b/tests/unit/Inline/Renderer/TextRendererTest.php @@ -5,7 +5,7 @@ * * (c) Colin O'Dell * - * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) + * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE