aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--_config.yml22
2 files changed, 17 insertions, 9 deletions
diff --git a/README.md b/README.md
index 1a34f44..967b53f 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
- You don't need to touch the command line
- You don't need to install/configure ruby, rvm/rbenv, ruby gems :relaxed:
-- You don't need to install runtime dependancies like markdown processors, Pygments, etc
+- You don't need to install runtime dependencies like markdown processors, Pygments, etc
- If you're on Windows, this will make setting up Jekyll a lot easier
- It's easy to try out, you can just delete your forked repository if you don't like it
@@ -49,7 +49,7 @@ Edit `/_posts/2014-3-3-Hello-World.md` to publish your first blog post. This [Ma
## Local Development
1. Install Jekyll and plug-ins in one fell swoop. `gem install github-pages` This mirrors the plug-ins used by GitHub Pages on your local machine including Jekyll, Sass, etc.
-2. Clone down your fork `git clone git@github.com:yourusername/yourusername.github.io.git`
+2. Clone down your fork `git clone https://github.com/yourusername/yourusername.github.io.git`
3. Serve the site and watch for markup/sass changes `jekyll serve`
4. View your website at http://127.0.0.1:4000/
5. Commit any changes and push everything to the master branch of your GitHub user repository. GitHub Pages will then rebuild and serve your website.
diff --git a/_config.yml b/_config.yml
index f62e5d0..38219d7 100644
--- a/_config.yml
+++ b/_config.yml
@@ -53,13 +53,21 @@ baseurl: ""
# !! You don't need to change any of the configuration flags below !!
#
-markdown: redcarpet
-highlighter: pygments
permalink: /:title/
# The release of Jekyll Now that you're using
version: v1.1.0
+# Jekyll 3 now only supports Kramdown for Markdown
+kramdown:
+ # Use GitHub flavored markdown, including triple backtick fenced code blocks
+ input: GFM
+ # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting
+ syntax_highlighter: rouge
+ syntax_highlighter_opts:
+ # Use existing pygments syntax highlighting css
+ css_class: 'highlight'
+
# Set the Sass partials directory, as we're using @imports
sass:
style: :expanded # You might prefer to minify using :compressed
@@ -71,8 +79,8 @@ gems:
# Exclude these files from your production _site
exclude:
- - Gemfile
- - Gemfile.lock
- - LICENSE
- - README.md
- - CNAME
+ - Gemfile
+ - Gemfile.lock
+ - LICENSE
+ - README.md
+ - CNAME