asciidoctor-reducer 1.0.6 → 1.1.1

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: '0315811ef24fa88a755aa6973e86aca45929a43416020d2f82afa7ef1e664fd9'
4
- data.tar.gz: 745ee8bc00aba042843abb05bb22a8ad93a50dc9de7090bd946c82b3333b19d3
3
+ metadata.gz: 5a1fcd2f167e66e18a7876694575d92c1d4cda20b0f1191d6f029d32c888c03d
4
+ data.tar.gz: 9dd7507a5fe67295f51590f890196cc3b98cb32dbf5cdb61e1d15396caf34143
5
5
  SHA512:
6
- metadata.gz: a0eca70526db73201588d3b9154207b7ec1bdf30f41c8799ee6a88a36091e4906b4ce00ef183939be46c3ed8cd78778119e206585e01648fa20eff48c16cd6e9
7
- data.tar.gz: 3c97e30588293c5e599cf26d6dff4b142936582bf8544f9d6f577a5ae6a000e1b4e1a835fd33dbaa22f044c863f51e827aa42f56ab6d758a1acf3b5485bc938d
6
+ metadata.gz: efd6d82a88c4d6b1fdb4abd2f5b72b3a03df186a3cac990736ad5e199d9eb4a2e42360caff8cd40c3d71c5ad24bf2b44ae4a64187e38e837298380656fb8128b
7
+ data.tar.gz: 7a365765f4685d936f2f7b06aaf015261a25a7910a5a6f3773cb01a6c2a90210a79586aa39546578dfd4971cd66b27c01e7016af6aa7cd264e88282069cc5421
data/CHANGELOG.adoc CHANGED
@@ -4,6 +4,27 @@
4
4
  This document provides a curated view of the changes to Asciidoctor Reducer in each release.
5
5
  For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.
6
6
 
7
+ == 1.1.1 (2025-03-27) - @mojavelinux
8
+
9
+ === Fixed
10
+
11
+ * Fall back to iteration-based strategy in compiled JavaScript if built-in Array#flatten method throws RangeError (#63)
12
+
13
+ === Details
14
+
15
+ {url-repo}/releases/tag/v1.1.1[git tag] | {url-repo}/compare/v1.1.0\...v1.1.1[full diff]
16
+
17
+ == 1.1.0 (2024-11-24) - @mojavelinux
18
+
19
+ === Added
20
+
21
+ * Track header attributes in source document and assign to `source_header_attributes` attr reader on Document instance (#59)
22
+ * Add JavaScript build that publishes the `@antora/reducer` an npm package (#57)
23
+
24
+ === Details
25
+
26
+ {url-repo}/releases/tag/v1.1.0[git tag] | {url-repo}/compare/v1.0.6\...v1.1.0[full diff]
27
+
7
28
  == 1.0.6 (2024-02-12) - @mojavelinux
8
29
 
9
30
  === Fixed
data/README.adoc CHANGED
@@ -1,6 +1,6 @@
1
1
  = {project-name}
2
2
  Dan Allen <https://github.com/mojavelinux[@mojavelinux]>
3
- v1.0.6, 2024-02-12
3
+ v1.1.1, 2025-03-27
4
4
  :idprefix:
5
5
  :idseparator: -
6
6
  ifndef::env-github[:icons: font]
@@ -20,6 +20,9 @@ endif::[]
20
20
  Additionally, the tool evaluates preprocessor conditionals (unless the option to preserve them is enabled), only keeping those lines from conditions which are true.
21
21
  If the document does not contain any preprocessor directives, the tool returns the unmodified source.
22
22
 
23
+ TIP: This extension is also published as an npm package named `@asciidoctor/reducer` for use with Asciidoctor.js, and hence, with Antora.
24
+ See the xref:js/README.adoc[README] to find instructions on how to use this package.
25
+
23
26
  == Prerequisites
24
27
 
25
28
  {project-name} is a Ruby application that you install using Ruby packaging.
@@ -112,21 +115,37 @@ require 'asciidoctor/reducer/api'
112
115
  ----
113
116
 
114
117
  Next, reduce a parent document that contains includes.
115
- This works without having to specify the safe mode since the default safe mode when using the API is `:safe`.
116
118
 
117
119
  [,ruby]
118
120
  ----
119
121
  doc = Asciidoctor::Reducer.reduce_file 'sample.adoc'
120
122
  ----
121
123
 
122
- Finally, you can retrieve the reduced source from the returned document.
124
+ NOTE: The previous call works without having to specify the safe mode since the default safe mode when using this API is `:safe`.
125
+ However, if any include target points to a file in an ancestor directory of `docdir`, you'll need to set the safe mode to `:unsafe` by passing the option `safe: :unsafe`.
126
+ The options that the `reduce_file` method accepts are a superset of the Asciidoctor API options.
127
+
128
+ The benefit of this return value is that you can access the reduced source as well as the parsed document that corresponds to it.
129
+ Use the following call to retrieve the reduced source from the returned document.
123
130
 
124
131
  [,ruby]
125
132
  ----
126
133
  puts doc.source
127
134
  ----
128
135
 
129
- The benefit of this approach is that you can access the reduced source and the parsed document that corresponds to it.
136
+ If you want to retrieve the source split into an array of lines, use the following call instead.
137
+
138
+ [,ruby]
139
+ ----
140
+ puts doc.source_lines
141
+ ----
142
+
143
+ If you only want AsciiDoctor Reducer to process include directives, leaving preprocessor conditional directives untouched, set the `:preserve_conditionals` option:
144
+
145
+ [,ruby]
146
+ ----
147
+ doc = Asciidoctor::Reducer.reduce_file 'sample.adoc', preserve_conditionals: true
148
+ ----
130
149
 
131
150
  If you don't need the parsed document, you can retrieve the reduced source directly by passing the `String` type to the `:to` option:
132
151
 
@@ -142,7 +161,37 @@ You can write the reduced source directly to a file by passing a file path to th
142
161
  Asciidoctor::Reducer.reduce_file 'sample.adoc', to: 'sample-reduced.adoc'
143
162
  ----
144
163
 
145
- == Extension
164
+ === In Preprocessor
165
+
166
+ It's generally not safe to read the lines from the reader in an Asciidoctor preprocessor extension because it introduces side effects.
167
+ However, Asciidoctor Reducer offers a workaround for that problem.
168
+ You can use Asciidoctor Reducer to safely retrieve the source lines of the document (with or without resolving preprocessor directives) in order to analyze them or even modify and replace the lines on the reader.
169
+
170
+ Let's look at how we can retrieve the source lines in an Asciidoctor preprocessor.
171
+ What you do with those lines is then up to you.
172
+
173
+ [,ruby]
174
+ ----
175
+ require 'asciidoctor/reducer/api'
176
+
177
+ Asciidoctor::Extensions.register do
178
+ preprocessor do
179
+ process do |doc, reader|
180
+ unless doc.options[:extension_registry]&.groups&.include? :reducer
181
+ reducer_opts = { safe: doc.options[:safe], attributes: doc.options[:attributes].dup }
182
+ reduced_doc = Asciidoctor::Reducer.reduce_file reader.file, reducer_opts
183
+ reduced_source_lines = reduced_doc.source_lines
184
+ ...
185
+ end
186
+ reader
187
+ end
188
+ end
189
+ end
190
+ ----
191
+
192
+ Since the extension is registered globally, it's necessary to short-circuit it when called by reducer.
193
+
194
+ === Extension
146
195
 
147
196
  Instead of using the API for this library, you can use the load API provided by Asciidoctor.
148
197
  If you want to register the extension globally, require the library as follows:
@@ -190,8 +239,10 @@ The reducer then uses a tree processor extension to fold the include stack into
190
239
  It does so by working from the end of the stack and inserting the lines into the parent until the stack has been flattened.
191
240
  As it goes, it also removes lines that have been excluded by the preprocessor conditionals as well as the directive lines themselves (unless the option to preserve conditionals has been specified).
192
241
 
193
- Finally, it loads the document again and returns it.
194
- The reduced source is available on the reconstructed document (via `Document#source` or `Document#source_lines`).
242
+ If the sourcemap is enabled, it loads the document again.
243
+ Finally, it returns the document.
244
+ The reduced source is available on the reconstructed document via `Document#source` or `Document#source_lines`.
245
+ The source header attributes (those defined in the header of the document) are available via `Document#source_header_attributes`.
195
246
 
196
247
  === Impact on Extensions
197
248
 
@@ -395,6 +446,10 @@ When running the `asciidoctor-reducer` command from source, you must prefix the
395
446
 
396
447
  To avoid having to do this, or to make the `asciidoctor-reducer` command available from anywhere, you need to build the development gem and install it.
397
448
 
449
+ == Authors
450
+
451
+ Asciidoctor Reducer was written by Dan Allen of OpenDevise Inc. and contributed to the Asciidoctor project.
452
+
398
453
  == Copyright and License
399
454
 
400
455
  Copyright (C) 2021-present Dan Allen.
@@ -1,8 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'asciidoctor' unless defined? Asciidoctor.load
4
- require_relative 'preprocessor'
5
- require_relative 'tree_processor'
3
+ unless RUBY_ENGINE == 'opal'
4
+ require 'asciidoctor' unless defined? Asciidoctor.load
5
+ require_relative 'header_attribute_tracker'
6
+ require_relative 'preprocessor'
7
+ require_relative 'tree_processor'
8
+ end
6
9
 
7
10
  module Asciidoctor::Reducer
8
11
  module Extensions
@@ -10,9 +13,11 @@ module Asciidoctor::Reducer
10
13
 
11
14
  def group
12
15
  proc do
13
- next if document.options[:reduced]
16
+ document.extend HeaderAttributeTracker
17
+ next if document.options[:reduced] # group invoked again if includes are found and sourcemap option is true
14
18
  preprocessor Preprocessor
15
19
  tree_processor TreeProcessor
20
+ nil
16
21
  end
17
22
  end
18
23
 
@@ -31,12 +36,13 @@ module Asciidoctor::Reducer
31
36
  end
32
37
  end
33
38
 
34
- def register
35
- ::Asciidoctor::Extensions.register key, &group
39
+ def register registry = nil
40
+ (registry || ::Asciidoctor::Extensions).groups[key] ||= group
36
41
  end
37
42
 
38
- def unregister
39
- ::Asciidoctor::Extensions.groups.delete key # NOTE `Extensions.unregister key` fails if groups is not initialized
43
+ def unregister registry = nil
44
+ (registry || ::Asciidoctor::Extensions).groups.delete key
45
+ nil
40
46
  end
41
47
  end
42
48
  end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Asciidoctor::Reducer
4
+ module HeaderAttributeTracker
5
+ def self.extended instance
6
+ instance.singleton_class.send :attr_reader, :source_header_attributes
7
+ end
8
+
9
+ def finalize_header(*) # rubocop:disable Style/MethodDefParentheses
10
+ @source_header_attributes = @attributes_modified.each_with_object({}) do |name, accum|
11
+ accum[name] = @attributes[name]
12
+ end
13
+ super
14
+ end
15
+ end
16
+ end
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'include_directive_tracker'
4
- require_relative 'conditional_directive_tracker'
3
+ unless RUBY_ENGINE == 'opal'
4
+ require_relative 'include_directive_tracker'
5
+ require_relative 'conditional_directive_tracker'
6
+ end
5
7
 
6
8
  module Asciidoctor::Reducer
7
9
  class Preprocessor < ::Asciidoctor::Extensions::Preprocessor
@@ -23,7 +23,11 @@ module Asciidoctor::Reducer
23
23
  end
24
24
  target_lines[idx] = lines if target_lines
25
25
  end
26
- reduced_source_lines = inc_replacements[0][:lines].flatten
26
+ if RUBY_ENGINE == 'opal'
27
+ reduced_source_lines = flatten inc_replacements[0][:lines]
28
+ else
29
+ reduced_source_lines = inc_replacements[0][:lines].flatten
30
+ end
27
31
  if doc.sourcemap
28
32
  logger = doc.logger
29
33
  opts = doc.options.merge logger: nil, parse: false, reduced: true
@@ -42,5 +46,31 @@ module Asciidoctor::Reducer
42
46
  end
43
47
  doc
44
48
  end
49
+
50
+ private
51
+
52
+ def flatten input_list
53
+ input_list.flatten
54
+ rescue ::Exception => e # rubocop:disable Lint/RescueException,Lint/UselessAssignment
55
+ raise unless %x(e.name) == 'RangeError'
56
+ result = []
57
+ stack = [[0, input_list, input_list.length]]
58
+ until stack.empty?
59
+ idx, list, len = stack.pop
60
+ while idx < len
61
+ if Array === (item = list[idx])
62
+ if (next_idx = idx + 1) < len
63
+ stack << [next_idx, list, len]
64
+ end
65
+ idx = 0
66
+ len = (list = item).length
67
+ else
68
+ result << item
69
+ idx += 1
70
+ end
71
+ end
72
+ end
73
+ result
74
+ end
45
75
  end
46
76
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Asciidoctor
4
4
  module Reducer
5
- VERSION = '1.0.6'
5
+ VERSION = '1.1.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-reducer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Allen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-12 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor
@@ -72,6 +72,7 @@ files:
72
72
  - lib/asciidoctor/reducer/cli.rb
73
73
  - lib/asciidoctor/reducer/conditional_directive_tracker.rb
74
74
  - lib/asciidoctor/reducer/extensions.rb
75
+ - lib/asciidoctor/reducer/header_attribute_tracker.rb
75
76
  - lib/asciidoctor/reducer/include_directive_tracker.rb
76
77
  - lib/asciidoctor/reducer/include_mapper.rb
77
78
  - lib/asciidoctor/reducer/include_mapper/extension.rb
@@ -86,7 +87,7 @@ metadata:
86
87
  changelog_uri: https://github.com/asciidoctor/asciidoctor-reducer/blob/main/CHANGELOG.adoc
87
88
  mailing_list_uri: https://chat.asciidoctor.org
88
89
  source_code_uri: https://github.com/asciidoctor/asciidoctor-reducer
89
- post_install_message:
90
+ post_install_message:
90
91
  rdoc_options: []
91
92
  require_paths:
92
93
  - lib
@@ -101,8 +102,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
102
  - !ruby/object:Gem::Version
102
103
  version: '0'
103
104
  requirements: []
104
- rubygems_version: 3.3.26
105
- signing_key:
105
+ rubygems_version: 3.5.22
106
+ signing_key:
106
107
  specification_version: 4
107
108
  summary: Reduces an AsciiDoc document containing includes and conditionals to a single
108
109
  AsciiDoc document.