From ffc29618a176eba87d649b0e73ce6391c5f962dc Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Sun, 8 Oct 2017 15:50:09 +0200 Subject: [PATCH] Link to Support (#6415) Merge pull request 6415 --- .github/CONTRIBUTING.markdown | 2 +- .github/{SUPPORT.md => SUPPORT.markdown} | 0 docs/_docs/contributing.md | 2 +- docs/_docs/history.md | 1 - docs/_docs/support.md | 24 ++++++++++++++++++++++++ rake/site.rake | 7 ++++++- 6 files changed, 32 insertions(+), 4 deletions(-) rename .github/{SUPPORT.md => SUPPORT.markdown} (100%) create mode 100644 docs/_docs/support.md diff --git a/.github/CONTRIBUTING.markdown b/.github/CONTRIBUTING.markdown index 91d18e7f..f1c19732 100644 --- a/.github/CONTRIBUTING.markdown +++ b/.github/CONTRIBUTING.markdown @@ -4,7 +4,7 @@ Hi there! Interested in contributing to Jekyll? We'd love your help. Jekyll is a ## Where to get help or report a problem -See [the support guidelines](SUPPORT.md) +See [the support guidelines](https://jekyllrb.com/docs/support/) ## Ways to contribute diff --git a/.github/SUPPORT.md b/.github/SUPPORT.markdown similarity index 100% rename from .github/SUPPORT.md rename to .github/SUPPORT.markdown diff --git a/docs/_docs/contributing.md b/docs/_docs/contributing.md index 5cf0398c..f1c643d3 100644 --- a/docs/_docs/contributing.md +++ b/docs/_docs/contributing.md @@ -8,7 +8,7 @@ Hi there! Interested in contributing to Jekyll? We'd love your help. Jekyll is a ## Where to get help or report a problem -See [the support guidelines](SUPPORT.md) +See [the support guidelines](https://jekyllrb.com/docs/support/) ## Ways to contribute diff --git a/docs/_docs/history.md b/docs/_docs/history.md index 20b98b5c..9c4e9def 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -84,7 +84,6 @@ note: This file is autogenerated. Edit /History.markdown instead. - Bump rubies on Travis ([#6366]({{ site.repository }}/issues/6366)) - ## 3.5.2 / 2017-08-12 {: #v3-5-2} diff --git a/docs/_docs/support.md b/docs/_docs/support.md new file mode 100644 index 00000000..d2233187 --- /dev/null +++ b/docs/_docs/support.md @@ -0,0 +1,24 @@ +--- +title: Support +permalink: "/docs/support/" +note: This file is autogenerated. Edit /.github/SUPPORT.markdown instead. +--- + +## Getting Help + +**Jekyll's issue tracker is not a support forum.** + +If you're looking for support for Jekyll, there are a lot of options: + +* Read [Jekyll Documentation](https://jekyllrb.com/docs/home/) +* If you have a question about using Jekyll, start a discussion on [Jekyll Forum](https://talk.jekyllrb.com/) or [StackOverflow](https://stackoverflow.com/questions/tagged/jekyll) +* Chat with Jekyllers — Join [our Gitter channel](https://gitter.im/jekyll/jekyll) or [our IRC channel on Freenode](irc:irc.freenode.net/jekyll) + +There are a bunch of helpful community members on these services that should be willing to point you in the right direction. + +## Report a bug + +* If you think you've found a bug within a Jekyll plugin, open an issue in that plugin's repository — First [look for the plugin on rubygems](https://rubygems.org/) then click on the `Homepage` link to access the plugin repository. +* If you think you've found a bug within Jekyll itself, [open an issue](https://github.com/jekyll/jekyll/issues/new). + +Happy Jekyllin'! diff --git a/rake/site.rake b/rake/site.rake index 15680b15..10d48c52 100644 --- a/rake/site.rake +++ b/rake/site.rake @@ -7,7 +7,7 @@ ############################################################################# namespace :site do - task :generated_pages => [:history, :version_file, :conduct, :contributing] + task :generated_pages => [:history, :version_file, :conduct, :contributing, :support] desc "Generate and view the site locally" task :preview => :generated_pages do @@ -77,6 +77,11 @@ namespace :site do siteify_file(".github/CONTRIBUTING.markdown", "title" => "Contributing") end + desc "Copy the support file" + task :support do + siteify_file(".github/SUPPORT.markdown", "title" => "Support") + end + desc "Write the site latest_version.txt file" task :version_file do File.open("#{docs_folder}/latest_version.txt", "wb") { |f| f.puts(version) } unless version =~ %r!(beta|rc|alpha)!i