jekyll-theme-endless 0.17.2 → 0.18.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 +4 -4
- data/LICENSE.txt +1 -1
- data/lib/jekyll-theme-endless/version.rb +1 -1
- data/pages_examples/showroom-asciidoc.adoc +30 -0
- metadata +30 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdc2e7fa0bbc121bd98c151ae080b61aa7d7d73859812642950e7e1d412732a6
|
4
|
+
data.tar.gz: 2efbe54fb9b326749e2c87868700e37cc58d989945a2f560dc7ccb348929d808
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a413c6f3fedbb0cb8280e83764c93d03a639e7aa08d4417625dcb9145e99127c7169b9348e276904935a468946a20ca4ed8d75544c8385f2d6ff7569778616a3
|
7
|
+
data.tar.gz: f921a4f43e58ed38eb89ea3c19071819870d41328043e6aaacf5ac10dc96c3525a67285c6aff1ceecbed01fd2fe14efbd61976baf2fd85a04fc2b08757e92133
|
data/LICENSE.txt
CHANGED
@@ -606,3 +606,33 @@ LilyPond is a music engraving program that enables users to create beautifully t
|
|
606
606
|
|
607
607
|
|
608
608
|
|
609
|
+
|
610
|
+
|
611
|
+
[[barcodes]]
|
612
|
+
== QR codes and Barcodes
|
613
|
+
|
614
|
+
For details on how to use the QR code and barcode features, see the https://docs.asciidoctor.org/diagram-extension/latest/diagram_types/barcode/[Asciidoctor Diagram documentation on Barcodes and QR Codes].
|
615
|
+
|
616
|
+
=== Block version of QR Codes (PNG and SVG)
|
617
|
+
|
618
|
+
// Barcode block
|
619
|
+
.QR code in SVG format using a code block and a specified x-dimension (value of `7`).
|
620
|
+
[qrcode, format="svg", xdim=7]
|
621
|
+
....
|
622
|
+
This QR code is generated with Asciidoctor Diagram and presented in SVG format using a barcode block.
|
623
|
+
....
|
624
|
+
|
625
|
+
// Barcode block macro
|
626
|
+
.QR code in PNG format using a block macro and a specified x-dimension (value of `5`).
|
627
|
+
qrcode::This QR code is generated with Asciidoctor Diagram and presented in PNG format using the barcode block macro.[format="png", xdim=5]
|
628
|
+
|
629
|
+
|
630
|
+
|
631
|
+
=== Inline version of Barcodes and QR codes (PNG)
|
632
|
+
|
633
|
+
* qrcode: qrcode:HelloWorld![png, xdim=4]
|
634
|
+
* code128: code128:HelloWorld![png, height=40]
|
635
|
+
|
636
|
+
* ean13: ean13:870123456789[png, height=40, xdim=2]
|
637
|
+
* upca: upca:00123456789[png, height=40, xdim=2]
|
638
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-endless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Boekhoff
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-06-13 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll-asciidoc
|
@@ -109,6 +109,34 @@ dependencies:
|
|
109
109
|
- - ">="
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: 2.3.1
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: barby
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - "~>"
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 0.6.8
|
119
|
+
type: :runtime
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - "~>"
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 0.6.8
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: rqrcode
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '2.0'
|
133
|
+
type: :runtime
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '2.0'
|
112
140
|
- !ruby/object:Gem::Dependency
|
113
141
|
name: logger
|
114
142
|
requirement: !ruby/object:Gem::Requirement
|