From 0f8a3b29718bf6e2fd4efdcb315d36e741588878 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 10 Mar 2016 10:16:07 -0600 Subject: [PATCH] Proper contributing file in site/. Hello, friends. I have an update for you because i derp'd. [ci skip] --- Rakefile | 2 +- site/_docs/contributing.md | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/Rakefile b/Rakefile index 8bbb7728..122237ec 100644 --- a/Rakefile +++ b/Rakefile @@ -92,7 +92,7 @@ def siteify_file(file, front_matter = {}) title = begin File.read(file).match(/\A# (.*)$/)[1] rescue - File.basename(file, ".*") + File.basename(file, ".*").downcase.capitalize end slug = File.basename(file, ".markdown").downcase front_matter = front_matter.merge({ diff --git a/site/_docs/contributing.md b/site/_docs/contributing.md index 9f45f6f3..7845767c 100644 --- a/site/_docs/contributing.md +++ b/site/_docs/contributing.md @@ -1,23 +1,16 @@ --- -title: CONTRIBUTING +title: Contributing to Jekyll layout: docs permalink: "/docs/contributing/" note: This file is autogenerated. Edit /.github/CONTRIBUTING.markdown instead. --- ---- -layout: docs -title: Contributing -permalink: /docs/contributing/ ---- - -# Contribute to Jekyll - Hi there! Interested in contributing to Jekyll? We'd love your help. Jekyll is an open source project, built one contribution at a time by users like you. ## Where to get help or report a problem * If you have a question about using Jekyll, start a discussion on https://talk.jekyllrb.com. +* If you think you've found a bug within a Jekyll plugin, open an issue in that plugin's repository. * If you think you've found a bug within Jekyll itself, [open an issue](https://github.com/jekyll/jekyll/issues/new) ## Ways to contribute @@ -25,7 +18,7 @@ Hi there! Interested in contributing to Jekyll? We'd love your help. Jekyll is a Whether you're a developer, a designer, or just a Jekyll devotee, there are lots of ways to contribute. Here's a few ideas: * [Install Jekyll on your computer](https://jekyllrb.com/docs/installation/) and kick the tires. Does it work? Does it do what you'd expect? If not, [open an issue](https://github.com/jekyll/jekyll/issues/new) and let us know. -* Comment on some of the project's [open issue](https://github.com/jekyll/jekyll/issues). Have you experienced the same problem? Know a work around? Do you have a suggestion for how the feature could be better? +* Comment on some of the project's [open issues](https://github.com/jekyll/jekyll/issues). Have you experienced the same problem? Know a work around? Do you have a suggestion for how the feature could be better? * Read through [the documentation](http://jekyllrb.com/docs/home/), and click the "improve this page" button, any time you see something confusing, or have a suggestion for something that could be improved. * Browse through [the Jekyll discussion forum](https://talk.jekyllrb.com/), and lend a hand answering questions. There's a good chance you've already experienced what another user is experiencing. * Find [an open issue](https://github.com/jekyll/jekyll/issues) (especially [those labeled `help-wanted`](https://github.com/jekyll/jekyll/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp-wanted)), and submit a proposed fix. If it's your first pull request, we promise we won't bite, and are glad to answer any questions. @@ -83,7 +76,7 @@ If you want to add your plugin to the [list of plugins](http://jekyllrb.com/docs ## Code Contributions -Interesting in submitting a pull request? Awesome. Read on. There's a few common gotchas, we'd love to help you avoid. +Interesting in submitting a pull request? Awesome. Read on. There's a few common gotchas that we'd love to help you avoid. ### Tests and documentation