jekyll_outline 1.2.4 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 296c5201e11daec7ec2e91ae703662ba44cfb7ca592da27adf61c23943a3c100
4
- data.tar.gz: 246e14ecb99ecf5a7510e7bcbd40eb5cfa58eb8e3cd740f33a726bc7b42cda78
3
+ metadata.gz: 789f862a50e91feb22e61715574c1358dfac651dd0029617333032d89bd3920a
4
+ data.tar.gz: 327437833f654e62df9e71540be12985eb98e518d4c87edd5f632aa4f5b9028a
5
5
  SHA512:
6
- metadata.gz: a3667c2afb14fb58fb6192149d51265ea54cbb745968ce0a04ba208bbf7a1cf807994a2f2057d38a57759d5679a89ac2a69cd52f829b1e61034c7daea158d02f
7
- data.tar.gz: 04e34bcdd95b84affb8b9a73e7a638c9013bc978ba393d11591772a132e4191237c168374fc6d203ce51525945a76350c2f79e6b31f140723f988296678c2585
6
+ metadata.gz: ac54e627cf7a5e839dff378e2d85c2c1d89ae6cad12fcdd1fa728591b0d3ed597d93c0af78787ef27ca15a4a4212b6f02156897b988f98c27587d9d73f297c1b
7
+ data.tar.gz: 4d6725aae2d9c428f9dcfbc2128918ca2bf43c626a26d235af7d183cb04d17252b8f1333ad125202e3c2fe8ef1a5880594bf68e1e52dfd3122e7d014116efc8b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.2.6 / 2025-01-03
4
+
5
+ * Added `exclude_from_outline` optional front matter YAML element.
6
+ * Ignores all files named `index`, regardless of file type.
7
+
8
+
9
+ ## 1.2.5 / 2024-08-20
10
+
11
+ * Added configurable error handling
12
+ * Updated to jekyll_plugin_support v1.0.2
13
+ * Defined `outline_error` CSS class in `demo/assets/css/jekyll_outline.css`.
14
+
15
+
3
16
  ## 1.2.4 / 2024-07-23
4
17
 
5
18
  * Updated dependencies to rely on current `jekyll_draft`.
data/README.md CHANGED
@@ -3,11 +3,190 @@
3
3
  `jekyll_outline` Jekyll tag plugin that creates a clickable table of contents.
4
4
 
5
5
 
6
+ ## Order
7
+
8
+ This plugin requires every page in a collection to have an entry for
9
+ <code>order</code> in its front matter.
10
+ The value of <code>order</code> must be an integer.
11
+ This entry is normally used for sorting the pages.
12
+
13
+ The front matter for [this page](https://mslinn.com/jekyll_plugins/jekyll_outline.html) is:
14
+
15
+ ```yaml
16
+ ---
17
+ categories: [Jekyll]
18
+ date: 2020-10-03
19
+ description: "Organizes the index of a collection into chapters."
20
+ last_modified_at: 2025-01-09
21
+ layout: jekyll
22
+ order: 100
23
+ title: <span class="code">jekyll_outline</span>
24
+ ---
25
+ ```
26
+
27
+
28
+ ## Examples
29
+
30
+ You can see this plugin in action in most of the index pages of [`mslinn.com`](https://mslinn.com).
31
+ Following is the source for two of them:
32
+
33
+ ### [Django / Oscar](https://mslinn.com/django/index.html)
34
+
35
+ This is the simplest possible outline, without images.
36
+
37
+ ```text
38
+ {% outline attribution django %}
39
+ 0: Django / Oscar Evaluation
40
+ 400: Notes
41
+ 800: Digging Deeper
42
+ 1900: Debugging
43
+ 2700: Production
44
+ ```
45
+
46
+ ### [A/V Studio Technology](https://mslinn.com/av_studio/index.html)
47
+
48
+ This outline features images associated with specific entries.
49
+
50
+ ```html
51
+ {% outline attribution av_studio %}
52
+ 0: Production Infrastructure
53
+ 150: Audio
54
+ 200: Video
55
+ 300: RME TotalMix
56
+ 400: OBS Studio
57
+ 500: Pro Tools
58
+ 550: Ableton Live &amp; Push
59
+ 600: Other Music Software
60
+ 700: MIDI Hardware &amp; Software
61
+ 800: Davinci Resolve
62
+ 1000: Computer Analysis
63
+ 2000: Music Theory
64
+ 3000: Business
65
+ 4000: General
66
+ {% endoutline %}
67
+
68
+ <div style="display: none">
69
+ {% img
70
+ align="right"
71
+ class=""
72
+ id="outline_150"
73
+ src="/av_studio/images/everse8/everse8d.webp"
74
+ size="eighthsize"
75
+ style="margin-top: 0"
76
+ wrapper_class="clear"
77
+ %}
78
+ {% img
79
+ align="right"
80
+ class=""
81
+ id="outline_200"
82
+ src="./images/equipment/sony_a7iii/sony_a7iii.webp"
83
+ size="eighthsize"
84
+ style="margin-top: 0"
85
+ wrapper_class="clear"
86
+ %}
87
+ {% img
88
+ align="right"
89
+ class=""
90
+ id="outline_300"
91
+ src="./images/rme/rme_logo.webp"
92
+ size="eighthsize"
93
+ style="margin-top: 0"
94
+ wrapper_class="clear"
95
+ %}
96
+ {% img
97
+ align="right"
98
+ class=""
99
+ id="outline_400"
100
+ src="./images/obsStudio/obs_logo.webp"
101
+ size="eighthsize"
102
+ style="margin-top: 0"
103
+ wrapper_class="clear"
104
+ %}
105
+ {% img
106
+ align="right"
107
+ class=""
108
+ id="outline_500"
109
+ src="./images/proTools/proToolsLogo.webp"
110
+ size="eighthsize"
111
+ style="margin-top: 0"
112
+ wrapper_class="clear"
113
+ %}
114
+ {% img
115
+ align="right"
116
+ class=""
117
+ id="outline_550"
118
+ src="./images/ableton/ableton_live_logo.webp"
119
+ size="eighthsize"
120
+ style="margin-top: 0"
121
+ wrapper_class="clear"
122
+ %}
123
+ {% img
124
+ align="right"
125
+ class="rounded"
126
+ id="outline_600"
127
+ src="./images/music21.webp"
128
+ size="eighthsize"
129
+ style="margin-top: 0"
130
+ wrapper_class="clear"
131
+ %}
132
+ {% img
133
+ align="right"
134
+ class=""
135
+ id="outline_700"
136
+ src="./images/midi/MIDI_logo.webp"
137
+ size="eighthsize"
138
+ style="margin-top: 0"
139
+ wrapper_class="clear"
140
+ %}
141
+ {% img
142
+ align="right"
143
+ class=""
144
+ id="outline_800"
145
+ src="./images/davinci_resolve/daVinci_resolve_logo.webp"
146
+ size="eighthsize"
147
+ style="margin-top: 0"
148
+ wrapper_class="clear"
149
+ %}
150
+ {% img
151
+ align="right"
152
+ class="rounded"
153
+ id="outline_2000"
154
+ src="./images/music_theory.webp"
155
+ size="eighthsize"
156
+ style="margin-top: 0"
157
+ wrapper_class="clear"
158
+ %}
159
+ {% img
160
+ align="right"
161
+ class=""
162
+ id="outline_4000"
163
+ src="./images/handsfree/pageflip_firefly.webp"
164
+ size="eighthsize"
165
+ style="margin-top: 0"
166
+ wrapper_class="clear"
167
+ %}
168
+ </div>
169
+
170
+ {% outline_js wrap_in_script_tag %}
171
+ ```
172
+
173
+
6
174
  ## Usage
7
175
 
8
- These examples are taken from [`demo/index.html`](demo/index.html).
176
+ All files in a collection are included in the outline,
177
+ except for those whose name starts with `index`,
178
+ and those with the following in their front matter:
179
+
180
+ ```yaml
181
+ exclude_from_outline: true
182
+ ```
183
+
184
+ Note that Jekyll requires all documents in a collection to have a value for `order` in their front matter.
185
+ This value is ignored by `outline_tag` if `exclude_from_outline` has a truthy value.
9
186
 
10
- Sort by `order` field:
187
+ The following examples are taken from [`demo/index.html`](demo/index.html).
188
+
189
+ Sort by the `order` field:
11
190
 
12
191
  ```html
13
192
  {% outline attribution fields="<b> title </b> &ndash; <i> description </i>" stuff %}
@@ -53,7 +232,7 @@ followed by an indication of whether the document is visible (a draft) or not.
53
232
 
54
233
  Entry can also include following fields:
55
234
  `draft`, `categories`, `description`, `date`, `last_modified` or `last_modified_at`, `layout`, `order`, `title`, `slug`,
56
- `ext`, `tags`, and `excerpt`.
235
+ `ext`, and `tags`.
57
236
 
58
237
  Specify the fields like this:
59
238
 
@@ -65,7 +244,7 @@ Specify the fields like this:
65
244
  {% endoutline %}
66
245
  ```
67
246
 
68
- Words that are not a known field are transcribed into the output.
247
+ Words in the `fields` argument that are not recognized as a field are transcribed into the output.
69
248
 
70
249
  In the above example, notice that the HTML is space delimited from the field names.
71
250
  The parser is simple and stupid: each token is matched against the known keywords.
@@ -75,21 +254,14 @@ Tokens are separated by white space.
75
254
  ### CSS
76
255
 
77
256
  The CSS used for the demo website should be copied to your project.
78
- See the sections of
79
- [`demo/assets/css/styles.css`](/mslinn/jekyll_outline/blob/master/demo/assets/css/style.css#L252-L315) as shown:
257
+ See [`demo/assets/css/jekyll_outline.css`](https://github.com/mslinn/jekyll_outline/blob/master/demo/assets/css/jekyll_outline.css).
80
258
 
81
- ```css
82
- /* Start of jekyll_plugin_support css */
83
- ... copy this portion ...
84
- /* End of jekyll_plugin_support css */
85
-
86
- /* Start of jekyll_outline css */
87
- ... copy this portion ...
88
- /* End of jekyll_outline css */
89
- ```
90
259
 
91
260
  ### JavaScript
92
261
 
262
+ Copy [`jekyll_outline.js`](https://github.com/mslinn/jekyll_outline/blob/master/demo/assets/js/jekyll_outline.js)
263
+ to your Jekyll website's JavaScript directory.
264
+
93
265
  This project's `outline_js` tag returns the Javascript necessary to position images relating to the outline.
94
266
  If used without parameters it just returns the JavaScript.
95
267
  Use the tag this way:
@@ -153,6 +325,8 @@ and have `id`s that correspond to outline sections.
153
325
  Each of following image's `id`s have an `outline_` prefix, followed by a number, which corresponds to one of the sections.
154
326
  Note that leading zeros in the first column above are not present in the `id`s below.
155
327
 
328
+ Headings that do not have corresponding pages are not displayed.
329
+
156
330
  If you want to provide images to embed at appropriate locations within the outline,
157
331
  wrap them within an invisible `div` so the web page does not jump around as the images are loaded.
158
332
 
@@ -3,8 +3,8 @@ require_relative 'lib/jekyll_outline/version'
3
3
  Gem::Specification.new do |spec|
4
4
  github = 'https://github.com/mslinn/jekyll_outline'
5
5
 
6
- spec.authors = ['Mike Slinn']
7
- spec.bindir = 'exe'
6
+ spec.authors = ['Mike Slinn']
7
+ spec.bindir = 'exe'
8
8
  spec.description = <<~END_OF_DESC
9
9
  Jekyll tag plugin that creates a clickable table of contents.
10
10
  END_OF_DESC
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  'demo/assets/js/jekyll_outline.js'
15
15
  ]
16
16
  spec.homepage = 'https://www.mslinn.com/jekyll_plugins/jekyll_outline.html'
17
- spec.license = 'MIT'
17
+ spec.license = 'MIT'
18
18
  spec.metadata = {
19
19
  'allowed_push_host' => 'https://rubygems.org',
20
20
  'bug_tracker_uri' => "#{github}/issues",
@@ -22,19 +22,20 @@ Gem::Specification.new do |spec|
22
22
  'homepage_uri' => spec.homepage,
23
23
  'source_code_uri' => github,
24
24
  }
25
- spec.name = 'jekyll_outline'
25
+ spec.name = 'jekyll_outline'
26
+ spec.platform = Gem::Platform::RUBY
26
27
  spec.post_install_message = <<~END_MESSAGE
27
28
 
28
29
  Thanks for installing #{spec.name}!
29
30
 
30
31
  END_MESSAGE
31
- spec.require_paths = ['lib']
32
+ spec.require_paths = ['lib']
32
33
  spec.required_ruby_version = '>= 2.6.0'
33
- spec.summary = 'Jekyll tag plugin that creates a clickable table of contents.'
34
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
35
- spec.version = JekyllOutlineVersion::VERSION
34
+ spec.summary = 'Jekyll tag plugin that creates a clickable table of contents.'
35
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
36
+ spec.version = JekyllOutlineVersion::VERSION
36
37
 
37
38
  spec.add_dependency 'jekyll', '>= 3.5.0'
38
39
  spec.add_dependency 'jekyll_draft', '>= 2.0.2'
39
- spec.add_dependency 'jekyll_plugin_support', '>= 1.0.0'
40
+ spec.add_dependency 'jekyll_plugin_support', '>= 1.0.2'
40
41
  end
@@ -1,3 +1,3 @@
1
1
  module JekyllOutlineVersion
2
- VERSION = '1.2.4'.freeze
2
+ VERSION = '1.2.6'.freeze
3
3
  end
data/lib/outline_tag.rb CHANGED
@@ -62,6 +62,10 @@ module JekyllSupport
62
62
  headers = make_headers(super) # Process the block content.
63
63
 
64
64
  @helper.gem_file __FILE__
65
+
66
+ @die_on_outline_error = @tag_config['die_on_outline_error'] == true if @tag_config
67
+ @pry_on_outline_error = @tag_config['pry_on_outline_error'] == true if @tag_config
68
+
65
69
  @fields = @helper.parameter_specified?('fields')&.split || ['title']
66
70
  @sort_by = @helper.parameter_specified?('sort_by_title') ? 'title' : 'order'
67
71
  @collection_name = @helper.remaining_markup
@@ -70,6 +74,12 @@ module JekyllSupport
70
74
  @docs = obtain_docs(@collection_name)
71
75
  collection = headers + @docs
72
76
  render_outline collection
77
+ rescue OutlineError => e # jekyll_plugin_support handles StandardError
78
+ @logger.error { JekyllPluginHelper.remove_html_tags e.logger_message }
79
+ binding.pry if @pry_on_outline_error # rubocop:disable Lint/Debugger
80
+ exit! 1 if @die_on_outline_error
81
+
82
+ e.html_message
73
83
  end
74
84
 
75
85
  # Overload this for a subclass
@@ -95,11 +105,18 @@ module JekyllSupport
95
105
  yaml = YAML.safe_load content
96
106
  yaml.map { |entry| Header.new entry }
97
107
  rescue NoMethodError => e
98
- raise OutlineError, "Invalid YAML within {% outline %} tag;<br>\nNoMethodError #{e.message}"
108
+ raise OutlineError, <<~END_MSG
109
+ Invalid YAML within {% outline %} tag. The offending content was:
110
+
111
+ <pre>#{content}</pre>
112
+ END_MSG
99
113
  rescue Psych::SyntaxError => e
100
- raise OutlineError, "Invalid YAML within {% outline %} tag;<br>\nPsych::SyntaxError #{e.message}"
101
- rescue StandardError => e
102
- raise OutlineError, e.message
114
+ msg = <<~END_MSG
115
+ Invalid YAML found within {% outline %} tag:<br>
116
+ <pre>#{e.message}</pre>
117
+ END_MSG
118
+ @logger.error { e.message }
119
+ raise OutlineError, msg
103
120
  end
104
121
 
105
122
  # @section_state can have values: :head, :in_body
@@ -169,16 +186,18 @@ module JekyllSupport
169
186
  @site
170
187
  .collections[@collection_name]
171
188
  .docs
172
- .find { |doc| doc.path.end_with? "#{doc_name}.html" }
189
+ .reject { |doc| doc.data['exclude_from_outline'] }
190
+ .find { |doc| doc.url.match(/#{doc_name}(.\w*)?$/) }
173
191
  end
174
192
 
175
- # Ignores files called index.html
193
+ # Ignores files whose name starts with `index`, and those with the following in their front matter:
194
+ # exclude_from_outline: true
176
195
  def obtain_docs(collection_name)
177
196
  abort "#{@collection_name} is not a valid collection." unless @site.collections.key? @collection_name
178
197
  @site
179
198
  .collections[collection_name]
180
199
  .docs
181
- .reject { |doc| doc.path.end_with? 'index.html' }
200
+ .reject { |doc| doc.url.match(/index(.\w*)?$/) || doc.data['exclude_from_outline'] }
182
201
  end
183
202
 
184
203
  # Sort entries within the outline tag which do not have the property specified by @sort_by at the end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_outline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Slinn
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-07-27 00:00:00.000000000 Z
10
+ date: 2025-02-07 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll
@@ -44,14 +43,14 @@ dependencies:
44
43
  requirements:
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 1.0.0
46
+ version: 1.0.2
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - ">="
53
52
  - !ruby/object:Gem::Version
54
- version: 1.0.0
53
+ version: 1.0.2
55
54
  description: 'Jekyll tag plugin that creates a clickable table of contents.
56
55
 
57
56
  '
@@ -102,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
101
  - !ruby/object:Gem::Version
103
102
  version: '0'
104
103
  requirements: []
105
- rubygems_version: 3.5.16
106
- signing_key:
104
+ rubygems_version: 3.6.3
107
105
  specification_version: 4
108
106
  summary: Jekyll tag plugin that creates a clickable table of contents.
109
107
  test_files: