Merge pull request #5611 from XhmikosR/https

Merge pull request 5611
This commit is contained in:
jekyllbot
2016-11-29 15:50:29 -08:00
committed by GitHub
31 changed files with 56 additions and 56 deletions

View File

@@ -11,4 +11,4 @@ Second paragraph
Third paragraph
[link]: http://www.jekyllrb.com/
[link]: https://jekyllrb.com/

View File

@@ -21,4 +21,4 @@ Second paragraph
Third paragraph
[link]: http://www.jekyllrb.com/
[link]: https://jekyllrb.com/

View File

@@ -12,4 +12,4 @@ Second paragraph
Third paragraph
[link]: http://www.jekyllrb.com/
[link]: https://jekyllrb.com/

View File

@@ -7,9 +7,9 @@ Jekyll is a simple, blog-aware, static site generator. It takes a template
directory containing raw text files in various formats, runs it through
[Markdown](http://daringfireball.net/projects/markdown/) (or
[Textile](http://redcloth.org/textile)) and
[Liquid](http://wiki.shopify.com/Liquid)
[Liquid](https://help.shopify.com/themes/liquid/basics)
converters, and spits out a complete, ready-to-publish static website suitable
for serving with your favorite web server. Jekyll also happens to be the engine
behind [GitHub Pages](http://pages.github.com), which means you can use Jekyll
behind [GitHub Pages](https://pages.github.com/), which means you can use Jekyll
to host your projects page, blog, or website from GitHubs servers **for
free**.

View File

@@ -7,9 +7,9 @@ Jekyll is a simple, blog-aware, static site generator. It takes a template
directory containing raw text files in various formats, runs it through
[Markdown](http://daringfireball.net/projects/markdown/) (or
[Textile](http://redcloth.org/textile)) and
[Liquid](http://wiki.shopify.com/Liquid)
[Liquid](https://help.shopify.com/themes/liquid/basics)
converters, and spits out a complete, ready-to-publish static website suitable
for serving with your favorite web server. Jekyll also happens to be the engine
behind [GitHub Pages](http://pages.github.com), which means you can use Jekyll
behind [GitHub Pages](https://pages.github.com/), which means you can use Jekyll
to host your projects page, blog, or website from GitHubs servers **for
free**.

View File

@@ -93,12 +93,12 @@ class TestExcerpt < JekyllUnitTest
context "before render" do
should "be the first paragraph of the page" do
expected = "First paragraph with [link ref][link].\n\n[link]: "\
"http://www.jekyllrb.com/"
"https://jekyllrb.com/"
assert_equal expected, @excerpt.content
end
should "contain any refs at the bottom of the page" do
assert @excerpt.content.include?("[link]: http://www.jekyllrb.com/")
assert @excerpt.content.include?("[link]: https://jekyllrb.com/")
end
end
@@ -110,13 +110,13 @@ class TestExcerpt < JekyllUnitTest
end
should "be the first paragraph of the page" do
expected = "<p>First paragraph with <a href=\"http://www.jekyllrb.com/\">link "\
expected = "<p>First paragraph with <a href=\"https://jekyllrb.com/\">link "\
"ref</a>.</p>\n\n"
assert_equal expected, @extracted_excerpt.output
end
should "link properly" do
assert @extracted_excerpt.content.include?("http://www.jekyllrb.com/")
assert @extracted_excerpt.content.include?("https://jekyllrb.com/")
end
end