diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-29 20:23:30 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-29 20:23:30 +0200 |
commit | 2e0bca8fa3b531d527f8385f5919179f90229337 (patch) | |
tree | 9378079db6eb4211bbc1bac6b0c17f191ea46992 | |
parent | remove jekyll-remote-theme from dependencies (diff) | |
download | jekyll-theme-2e0bca8fa3b531d527f8385f5919179f90229337.tar.gz jekyll-theme-2e0bca8fa3b531d527f8385f5919179f90229337.zip |
add jekyll-tidy plugin
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Gemfile.lock | 7 | ||||
-rw-r--r-- | _config.yml | 1 |
3 files changed, 9 insertions, 0 deletions
@@ -3,6 +3,7 @@ gem 'jekyll', '~> 3' gem 'jekyll-github-metadata' gem 'jekyll-paginate' +gem 'jekyll-tidy' # Why is this not a dependency of Jekyll? Considering that without # kramdown-parser-gfm, Jekyll will error out. gem 'kramdown-parser-gfm' diff --git a/Gemfile.lock b/Gemfile.lock index d8dfc35..44afe3d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -34,6 +34,8 @@ GEM faraday-retry (1.0.3) ffi (1.15.5) forwardable-extended (2.6.0) + htmlbeautifier (1.4.2) + htmlcompressor (0.4.0) http_parser.rb (0.8.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -56,6 +58,10 @@ GEM jekyll-paginate (1.1.0) jekyll-sass-converter (1.5.2) sass (~> 3.4) + jekyll-tidy (0.2.2) + htmlbeautifier + htmlcompressor + jekyll jekyll-watch (2.2.1) listen (~> 3.0) kramdown (2.4.0) @@ -97,6 +103,7 @@ DEPENDENCIES jekyll (~> 3) jekyll-github-metadata jekyll-paginate + jekyll-tidy kramdown-parser-gfm BUNDLED WITH diff --git a/_config.yml b/_config.yml index 6bcc5f9..21d7d34 100644 --- a/_config.yml +++ b/_config.yml @@ -39,6 +39,7 @@ kramdown: plugins: - jekyll-github-metadata - jekyll-paginate + - jekyll-tidy # jekyll-github-metadata repository: egor-tensin/jekyll-theme |