Full commonmark + general upgrades (#10275)

This commit is contained in:
Franck Nijhof 2019-09-03 10:47:40 +02:00 committed by GitHub
parent b771386a10
commit 3e780634c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 17 deletions

View File

@ -15,8 +15,8 @@ group :jekyll_plugins do
gem 'jekyll-redirect-from', '0.15.0' gem 'jekyll-redirect-from', '0.15.0'
gem 'jekyll-sitemap', '1.3.1' gem 'jekyll-sitemap', '1.3.1'
gem 'jekyll-time-to-read', '0.1.2' gem 'jekyll-time-to-read', '0.1.2'
gem 'jekyll-commonmark-ghpages', '0.1.6' gem 'jekyll-commonmark', '1.3.1'
end end
gem 'sinatra', '2.0.6' gem 'sinatra', '2.0.7'
gem 'nokogiri', '1.10.4' gem 'nokogiri', '1.10.4'

View File

@ -1,11 +1,11 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
addressable (2.6.0) addressable (2.7.0)
public_suffix (>= 2.0.2, < 4.0) public_suffix (>= 2.0.2, < 5.0)
chunky_png (1.3.11) chunky_png (1.3.11)
colorator (1.1.0) colorator (1.1.0)
commonmarker (0.17.13) commonmarker (0.20.1)
ruby-enum (~> 0.5) ruby-enum (~> 0.5)
compass (1.0.3) compass (1.0.3)
chunky_png (~> 1.2) chunky_png (~> 1.2)
@ -47,10 +47,6 @@ GEM
jekyll-commonmark (1.3.1) jekyll-commonmark (1.3.1)
commonmarker (~> 0.14) commonmarker (~> 0.14)
jekyll (>= 3.7, < 5.0) jekyll (>= 3.7, < 5.0)
jekyll-commonmark-ghpages (0.1.6)
commonmarker (~> 0.17.6)
jekyll-commonmark (~> 1.2)
rouge (>= 2.0, < 4.0)
jekyll-paginate (1.1.0) jekyll-paginate (1.1.0)
jekyll-redirect-from (0.15.0) jekyll-redirect-from (0.15.0)
jekyll (>= 3.3, < 5.0) jekyll (>= 3.3, < 5.0)
@ -78,9 +74,9 @@ GEM
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
pathutil (0.16.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (3.1.1) public_suffix (4.0.1)
rack (2.0.7) rack (2.0.7)
rack-protection (2.0.6) rack-protection (2.0.7)
rack rack
rake (12.3.3) rake (12.3.3)
rb-fsevent (0.10.3) rb-fsevent (0.10.3)
@ -94,12 +90,12 @@ GEM
sass (3.4.25) sass (3.4.25)
sass-globbing (1.1.5) sass-globbing (1.1.5)
sass (>= 3.1) sass (>= 3.1)
sassc (2.1.0) sassc (2.2.0)
ffi (~> 1.9) ffi (~> 1.9)
sinatra (2.0.6) sinatra (2.0.7)
mustermann (~> 1.0) mustermann (~> 1.0)
rack (~> 2.0) rack (~> 2.0)
rack-protection (= 2.0.6) rack-protection (= 2.0.7)
tilt (~> 2.0) tilt (~> 2.0)
stringex (2.8.5) stringex (2.8.5)
terminal-table (1.8.0) terminal-table (1.8.0)
@ -113,7 +109,7 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
compass (= 1.0.3) compass (= 1.0.3)
jekyll (= 4.0.0) jekyll (= 4.0.0)
jekyll-commonmark-ghpages (= 0.1.6) jekyll-commonmark (= 1.3.1)
jekyll-paginate (= 1.1.0) jekyll-paginate (= 1.1.0)
jekyll-redirect-from (= 0.15.0) jekyll-redirect-from (= 0.15.0)
jekyll-sitemap (= 1.3.1) jekyll-sitemap (= 1.3.1)
@ -121,7 +117,7 @@ DEPENDENCIES
nokogiri (= 1.10.4) nokogiri (= 1.10.4)
rake (= 12.3.3) rake (= 12.3.3)
sass-globbing (= 1.1.5) sass-globbing (= 1.1.5)
sinatra (= 2.0.6) sinatra (= 2.0.7)
stringex (= 2.8.5) stringex (= 2.8.5)
RUBY VERSION RUBY VERSION

View File

@ -39,9 +39,11 @@ liquid:
error_mode: strict error_mode: strict
commonmark: commonmark:
options: ["SMART", "FOOTNOTES"] options: ["SMART", "FOOTNOTES", "UNSAFE"]
extensions: ["strikethrough", "autolink", "table"] extensions: ["strikethrough", "autolink", "table"]
highlighter: none
plugins: plugins:
- jekyll-redirect-from - jekyll-redirect-from
- jekyll-time-to-read - jekyll-time-to-read