From f728e801a822c58cb28963fab700cca60788c7e6 Mon Sep 17 00:00:00 2001 From: Amit Kulkarni <4337938+kulkarniamit@users.noreply.github.com> Date: Tue, 20 Nov 2018 11:10:04 -0800 Subject: [PATCH 1/2] Update 2016-01-29-jekyll-github-flavored-markdown.markdown Minor typos and script ending tag required --- en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown b/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown index 5cb677e..e3c5c29 100644 --- a/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown +++ b/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown @@ -45,7 +45,7 @@ Add [gfm-hack.js][gfm-hack] to html `` to enable `

` ~ `

` hover anc ```html ... - ``` @@ -54,7 +54,7 @@ Add [gfm-hack.js][gfm-hack] to html `` to enable `

` ~ `

` hover anc Add the install script in `Gemfile`, if not exists the file then create one. ```ruby -gem 'jemojy' +gem 'jemoji' ``` Add the dependency in `_config.yml`. From 7cfe7e17c2c65d4994ddebf303ccd4bfd5d3db46 Mon Sep 17 00:00:00 2001 From: Amit Kulkarni <4337938+kulkarniamit@users.noreply.github.com> Date: Tue, 20 Nov 2018 11:12:52 -0800 Subject: [PATCH 2/2] Update 2016-01-29-jekyll-github-flavored-markdown.markdown `jekyll serve` shows a warning: `Deprecation: The 'gems' configuration option has been renamed to 'plugins'. Please update your config file accordingly.` --- en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown b/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown index e3c5c29..0ce6e39 100644 --- a/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown +++ b/en/_posts/2016-01-29-jekyll-github-flavored-markdown.markdown @@ -60,7 +60,7 @@ gem 'jemoji' Add the dependency in `_config.yml`. ```ruby -gems: [jemoji] +plugins: [jemoji] ``` ## Tests