Skip to content

Commit

Permalink
Merge pull request #207 from vszakats/https
Browse files Browse the repository at this point in the history
use https in URLs where possible
  • Loading branch information
michelf committed Jul 5, 2015
2 parents e1aabe1 + 2eaa375 commit 942bf34
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion License.md
Expand Up @@ -5,7 +5,7 @@ All rights reserved.

Based on Markdown
Copyright (c) 2003-2006 John Gruber
<http://daringfireball.net/>
<https://daringfireball.net/>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions Michelf/Markdown.php
Expand Up @@ -8,7 +8,7 @@
#
# Original Markdown
# Copyright (c) 2004-2006 John Gruber
# <http://daringfireball.net/projects/markdown/>
# <https://daringfireball.net/projects/markdown/>
#
namespace Michelf;

Expand Down Expand Up @@ -493,7 +493,7 @@ protected function doHorizontalRules($text) {
"doImages" => 10,
"doAnchors" => 20,

# Make links out of things like `<http://example.com/>`
# Make links out of things like `<https://example.com/>`
# Must come after doAnchors, because you can use < and >
# delimiters in inline links like [this](<url>).
"doAutoLinks" => 30,
Expand Down
2 changes: 1 addition & 1 deletion Michelf/MarkdownExtra.php
Expand Up @@ -8,7 +8,7 @@
#
# Original Markdown
# Copyright (c) 2004-2006 John Gruber
# <http://daringfireball.net/projects/markdown/>
# <https://daringfireball.net/projects/markdown/>
#
namespace Michelf;

Expand Down
2 changes: 1 addition & 1 deletion Michelf/MarkdownInterface.php
Expand Up @@ -8,7 +8,7 @@
#
# Original Markdown
# Copyright (c) 2004-2006 John Gruber
# <http://daringfireball.net/projects/markdown/>
# <https://daringfireball.net/projects/markdown/>
#
namespace Michelf;

Expand Down
6 changes: 3 additions & 3 deletions Readme.md
Expand Up @@ -7,7 +7,7 @@ by Michel Fortin
<https://michelf.ca/>

based on Markdown by John Gruber
<http://daringfireball.net/>
<https://daringfireball.net/>


Introduction
Expand All @@ -25,7 +25,7 @@ software tool, originally written in Perl, that converts the plain text
markup to HTML. PHP Markdown is a port to PHP of the original Markdown
program by John Gruber.

* [Full documentation of the Markdown syntax](<http://daringfireball.net/projects/markdown/>)
* [Full documentation of the Markdown syntax](<https://daringfireball.net/projects/markdown/>)
— Daring Fireball (John Gruber)
* [Markdown Extra syntax additions](<https://michelf.ca/projects/php-markdown/extra/>)
— Michel Fortin
Expand Down Expand Up @@ -295,7 +295,7 @@ All rights reserved.

Based on Markdown
Copyright (c) 2003-2005 John Gruber
<http://daringfireball.net/>
<https://daringfireball.net/>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -14,7 +14,7 @@
},
{
"name": "John Gruber",
"homepage": "http://daringfireball.net/"
"homepage": "https://daringfireball.net/"
}
],
"require": {
Expand Down

0 comments on commit 942bf34

Please sign in to comment.