mirror of
https://github.com/jimeh/commonflow.org.git
synced 2026-02-19 05:46:40 +00:00
Switch from redcarpet to kramdown
This commit is contained in:
1
Gemfile
1
Gemfile
@@ -9,7 +9,6 @@ source 'https://rubygems.org'
|
|||||||
# This will help ensure the proper Jekyll version is running.
|
# This will help ensure the proper Jekyll version is running.
|
||||||
# Happy Jekylling!
|
# Happy Jekylling!
|
||||||
gem 'jekyll', '3.5.0'
|
gem 'jekyll', '3.5.0'
|
||||||
gem 'redcarpet'
|
|
||||||
|
|
||||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||||
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ GEM
|
|||||||
rb-fsevent (0.10.2)
|
rb-fsevent (0.10.2)
|
||||||
rb-inotify (0.9.10)
|
rb-inotify (0.9.10)
|
||||||
ffi (>= 0.5.0, < 2)
|
ffi (>= 0.5.0, < 2)
|
||||||
redcarpet (3.4.0)
|
|
||||||
rouge (1.11.1)
|
rouge (1.11.1)
|
||||||
safe_yaml (1.0.4)
|
safe_yaml (1.0.4)
|
||||||
sass (3.4.24)
|
sass (3.4.24)
|
||||||
@@ -49,7 +48,6 @@ DEPENDENCIES
|
|||||||
jekyll (= 3.5.0)
|
jekyll (= 3.5.0)
|
||||||
jekyll-seo-tag
|
jekyll-seo-tag
|
||||||
jekyll-sitemap
|
jekyll-sitemap
|
||||||
redcarpet
|
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
|
|||||||
@@ -19,6 +19,4 @@ defaults:
|
|||||||
values:
|
values:
|
||||||
layout: "default"
|
layout: "default"
|
||||||
|
|
||||||
markdown: redcarpet
|
markdown: kramdown
|
||||||
redcarpet:
|
|
||||||
extensions: ['autolink']
|
|
||||||
|
|||||||
8
index.md
8
index.md
@@ -88,12 +88,12 @@ interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119).
|
|||||||
3. Git Best Practices
|
3. Git Best Practices
|
||||||
1. All commit messages SHOULD follow the Commit Guidelines and format from
|
1. All commit messages SHOULD follow the Commit Guidelines and format from
|
||||||
the official git documentation:
|
the official git documentation:
|
||||||
https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project
|
<https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project>
|
||||||
2. You SHOULD always use "--force-with-lease" when doing a force push. The
|
2. You SHOULD always use "--force-with-lease" when doing a force push. The
|
||||||
plain "--force" option is dangerous and destructive. More information:
|
plain "--force" option is dangerous and destructive. More information:
|
||||||
https://developer.atlassian.com/blog/2015/04/force-with-lease/
|
<https://developer.atlassian.com/blog/2015/04/force-with-lease/>
|
||||||
3. You SHOULD understand and be comfortable with rebasing:
|
3. You SHOULD understand and be comfortable with rebasing:
|
||||||
https://git-scm.com/book/en/v2/Git-Branching-Rebasing
|
<https://git-scm.com/book/en/v2/Git-Branching-Rebasing>
|
||||||
4. It is RECOMMENDED that you always do "git pull --rebase" instead of "git
|
4. It is RECOMMENDED that you always do "git pull --rebase" instead of "git
|
||||||
pull" to avoid unnecessary merge commits. You can make this the default
|
pull" to avoid unnecessary merge commits. You can make this the default
|
||||||
behavior of "git pull" with "git config --global pull.rebase true".
|
behavior of "git pull" with "git config --global pull.rebase true".
|
||||||
@@ -108,7 +108,7 @@ interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119).
|
|||||||
2. If you are using a "VERSION" file in the root of the project, this MUST
|
2. If you are using a "VERSION" file in the root of the project, this MUST
|
||||||
only contain the exact version string.
|
only contain the exact version string.
|
||||||
3. The version string SHOULD follow the Semantic Versioning
|
3. The version string SHOULD follow the Semantic Versioning
|
||||||
(http://semver.org/) format. Use of Semantic Versioning is OPTIONAL, but
|
(<http://semver.org/>) format. Use of Semantic Versioning is OPTIONAL, but
|
||||||
the version string MUST NOT have a "v" prefix. For example "v2.11.4" is
|
the version string MUST NOT have a "v" prefix. For example "v2.11.4" is
|
||||||
bad, and "2.11.4" is good.
|
bad, and "2.11.4" is good.
|
||||||
5. Releases
|
5. Releases
|
||||||
|
|||||||
@@ -88,12 +88,12 @@ interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119).
|
|||||||
3. Git Best Practices
|
3. Git Best Practices
|
||||||
1. All commit messages SHOULD follow the Commit Guidelines and format from
|
1. All commit messages SHOULD follow the Commit Guidelines and format from
|
||||||
the official git documentation:
|
the official git documentation:
|
||||||
https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project
|
<https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project>
|
||||||
2. You SHOULD always use "--force-with-lease" when doing a force push. The
|
2. You SHOULD always use "--force-with-lease" when doing a force push. The
|
||||||
plain "--force" option is dangerous and destructive. More information:
|
plain "--force" option is dangerous and destructive. More information:
|
||||||
https://developer.atlassian.com/blog/2015/04/force-with-lease/
|
<https://developer.atlassian.com/blog/2015/04/force-with-lease/>
|
||||||
3. You SHOULD understand and be comfortable with rebasing:
|
3. You SHOULD understand and be comfortable with rebasing:
|
||||||
https://git-scm.com/book/en/v2/Git-Branching-Rebasing
|
<https://git-scm.com/book/en/v2/Git-Branching-Rebasing>
|
||||||
4. It is RECOMMENDED that you always do "git pull --rebase" instead of "git
|
4. It is RECOMMENDED that you always do "git pull --rebase" instead of "git
|
||||||
pull" to avoid unnecessary merge commits. You can make this the default
|
pull" to avoid unnecessary merge commits. You can make this the default
|
||||||
behavior of "git pull" with "git config --global pull.rebase true".
|
behavior of "git pull" with "git config --global pull.rebase true".
|
||||||
@@ -108,7 +108,7 @@ interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119).
|
|||||||
2. If you are using a "VERSION" file in the root of the project, this MUST
|
2. If you are using a "VERSION" file in the root of the project, this MUST
|
||||||
only contain the exact version string.
|
only contain the exact version string.
|
||||||
3. The version string SHOULD follow the Semantic Versioning
|
3. The version string SHOULD follow the Semantic Versioning
|
||||||
(http://semver.org/) format. Use of Semantic Versioning is OPTIONAL, but
|
(<http://semver.org/>) format. Use of Semantic Versioning is OPTIONAL, but
|
||||||
the version string MUST NOT have a "v" prefix. For example "v2.11.4" is
|
the version string MUST NOT have a "v" prefix. For example "v2.11.4" is
|
||||||
bad, and "2.11.4" is good.
|
bad, and "2.11.4" is good.
|
||||||
5. Releases
|
5. Releases
|
||||||
|
|||||||
Reference in New Issue
Block a user