asciidoctor-revealjs 5.0.1 → 5.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 +4 -4
- data/Gemfile +2 -2
- data/Rakefile +2 -0
- data/asciidoctor-revealjs.gemspec +1 -1
- data/examples/release-5.1.adoc +43 -0
- data/examples/release-5.1.css +7 -0
- data/lib/asciidoctor-revealjs/converter.rb +582 -585
- data/lib/asciidoctor-revealjs/version.rb +1 -1
- data/templates/section.html.slim +1 -0
- metadata +6 -4
data/templates/section.html.slim
CHANGED
@@ -49,6 +49,7 @@
|
|
49
49
|
- content_for :section
|
50
50
|
section(id=(titleless ? nil : id)
|
51
51
|
class=roles
|
52
|
+
data-background-gradient=(attr "background-gradient")
|
52
53
|
data-transition=(attr 'transition')
|
53
54
|
data-transition-speed=(attr 'transition-speed')
|
54
55
|
data-background-color=data_background_color
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asciidoctor-revealjs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0
|
4
|
+
version: 5.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olivier Bilodeau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciidoctor
|
@@ -134,14 +134,14 @@ dependencies:
|
|
134
134
|
requirements:
|
135
135
|
- - "~>"
|
136
136
|
- !ruby/object:Gem::Version
|
137
|
-
version: 0.
|
137
|
+
version: 0.7.0
|
138
138
|
type: :development
|
139
139
|
prerelease: false
|
140
140
|
version_requirements: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
142
|
- - "~>"
|
143
143
|
- !ruby/object:Gem::Version
|
144
|
-
version: 0.
|
144
|
+
version: 0.7.0
|
145
145
|
- !ruby/object:Gem::Dependency
|
146
146
|
name: slim
|
147
147
|
requirement: !ruby/object:Gem::Requirement
|
@@ -258,6 +258,8 @@ files:
|
|
258
258
|
- examples/release-4.0.css
|
259
259
|
- examples/release-4.1.adoc
|
260
260
|
- examples/release-4.1.css
|
261
|
+
- examples/release-5.1.adoc
|
262
|
+
- examples/release-5.1.css
|
261
263
|
- examples/revealjs-custom-theme.adoc
|
262
264
|
- examples/revealjs-plugin-activation.adoc
|
263
265
|
- examples/revealjs-plugins-docinfo-footer.html
|