asciidoctor-html 2.0.2 → 2.1.0

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: 693a549eaa81cb33e98e952e70409001eba7dc0873306a98add4d283b1180c47
4
- data.tar.gz: 59b879bb5e63a9d7ee025d71ebeb937ef2b8c3d5d2a23fbdb64df678dcdb8889
3
+ metadata.gz: 76c462b54f4e7805c46849c2e788a566d6ea824896d86bd5f1328cea011fa2ec
4
+ data.tar.gz: 3310844a25ccf208a5635a23c6571fc79e9d2db1fcd74cc1c0aec9840d867ac7
5
5
  SHA512:
6
- metadata.gz: f69e15462538890ead34fa4d38f93a6682c3abff180a481941aa9f42299a146d3dec074ed21cbcddac637af4de710927e30bd2c80da569ce561f2ccda7559638
7
- data.tar.gz: e8103c37a0ec71fdeffa21f903a7d73a451354aea6a5ad74b4079bc8cc09c0564463946df6d71cf6325ad3ecde481ad7c97d9bd4446b5c0490194d5394243526
6
+ metadata.gz: 23a330c6a57260d836a9880b212efec49770dbbaa9a07ecf9f30e580f1bec80b32329deefc5db4763e47310b1fe359784b0f9013583cbd7fb18dae3853db23ba
7
+ data.tar.gz: 26d535c70ece0e65b6a2467ac4fc886d258dcc714fe24c95fdb060d375b012406c30c670af240a68f01399da162194f95a29b198b85102b3a855210cfca22353
data/.rubocop.yml CHANGED
@@ -3,19 +3,19 @@ AllCops:
3
3
  NewCops: enable
4
4
 
5
5
  Metrics/AbcSize:
6
- Max: 50
6
+ Max: 60
7
7
 
8
8
  Metrics/CyclomaticComplexity:
9
- Max: 25
9
+ Max: 35
10
10
 
11
11
  Metrics/PerceivedComplexity:
12
- Max: 25
12
+ Max: 35
13
13
 
14
14
  Metrics/BlockNesting:
15
15
  Max: 5
16
16
 
17
17
  Metrics/MethodLength:
18
- Max: 35
18
+ Max: 50
19
19
 
20
20
  Metrics/ClassLength:
21
21
  Max: 300
@@ -26,6 +26,9 @@ Metrics/ModuleLength:
26
26
  Layout/LineLength:
27
27
  Max: 125
28
28
 
29
+ Lint/UselessAssignment:
30
+ Enabled: false
31
+
29
32
  Style/StringLiterals:
30
33
  EnforcedStyle: double_quotes
31
34
 
data/CHANGELOG.md CHANGED
@@ -227,3 +227,11 @@
227
227
  ## [2.0.2] - 2026-07-15
228
228
 
229
229
  - Added target parameter to subnav macro.
230
+
231
+ ## [2.0.3] - 2026-07-15
232
+
233
+ - Always scroll to top of slide on flip.
234
+
235
+ ## [2.1.0] - 2026-07-25
236
+
237
+ - Add live attribute for dynamic presentations.