jekyll-titles-from-content 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff8a481d7cdb1d7b6f9aa7dc89237c2161ff4a961a7223660306397c1805c5e0
4
- data.tar.gz: 1643e62e6242c0732b70df2fd0318b18bf0ec5a0e26a14cc6289db4ae4846c15
3
+ metadata.gz: dddaac5e6d1535299e2f02ba432f584a7b75f8a95ec4a74c806ff7f538daef94
4
+ data.tar.gz: 553dd2b7a9935963ace2d847c22d46b376df832171327ad18ac27125c687f97b
5
5
  SHA512:
6
- metadata.gz: 88dbff3cc44e0b615698eb92d688a7fbd3fea8da2de8fac572c14dd3bf1f047da3ed333953e518a0712951987bd710b31ca98894117c70ac3082f3aff3092954
7
- data.tar.gz: b715015864a05e78f124b67fefb412658a6e1060a82b8de2c4f176902abdc88e772eb8d923f625fabc8772bb9aa97636f1a9d784dc50eb64a1be7482192ca0e1
6
+ metadata.gz: 321ae26f6239126c4f0d319b73e1e310b1c75db4abc89123dd6e85c37350ce6b9da5f7554e65d1ffc2eded6b1c1354eef01dbe109828c48ecf8f116543def5a6
7
+ data.tar.gz: e7409962a5cec70b28c25ab7671d433e8931a5aebe935347ced2ddee2d5ba889a77c4fb0d6a365e459eaf9681b4bc0cb25d3f1f9645647381fa510e0c70f23ef
data/README.md CHANGED
@@ -37,8 +37,8 @@ Configuration options are optional and placed in `_config.yml` under the `titles
37
37
  titles_from_content:
38
38
  enabled: true # Easily toggle the plugin from your configuration.
39
39
  words: 5 # The number of words to use for the title.
40
- collections: true # Apply the plugin to collections. Posts are collections.
41
- dotdotdot: ... # The character(s) you'd like to append to truncated titles.
40
+ collections: false # Apply the plugin to collections. Posts are collections.
41
+ dotdotdot: "" # The character(s) you'd like to append to truncated titles.
42
42
  ```
43
43
 
44
44
  ### Processing Collections
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllTitlesFromContent
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-titles-from-content
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Colin Seymour
@@ -182,16 +182,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
182
182
  requirements:
183
183
  - - ">="
184
184
  - !ruby/object:Gem::Version
185
- version: '0'
185
+ version: 2.4.0
186
186
  required_rubygems_version: !ruby/object:Gem::Requirement
187
187
  requirements:
188
188
  - - ">="
189
189
  - !ruby/object:Gem::Version
190
- version: '0'
190
+ version: 2.7.0
191
191
  requirements: []
192
192
  rubygems_version: 3.0.3
193
193
  signing_key:
194
194
  specification_version: 4
195
- summary: A Jekyll plugin to pull the page title from the first X words of the content,
196
- when none is specified.
195
+ summary: A Jekyll plugin to pull the page title from the first few words of the first
196
+ line of the content if a title isn't set.
197
197
  test_files: []