jekyll-theme-endless 0.17.1 → 0.18.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/lib/jekyll-theme-endless/version.rb +1 -1
- data/pages_examples/showroom-asciidoc.adoc +54 -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: 4851bc744b9bff14c7d92f7350d147789b9ebe2d929edfaa171458038793934c
|
4
|
+
data.tar.gz: 1a2dc7ddc1d69c13cdffb98c354a18e89b4c8d4c07d15f9530965a2eb4a53569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bccf1370dd1b783539a70dba44ed3e3700d5774f144fcc73f44ca8e393b0dc9e03691207c79dfd41dd29000f421b5bcde1ce6c9999c5206b0a40e26bc31ae192
|
7
|
+
data.tar.gz: 7b548921eb21c1d48ac57dbb178b64c45a31eea572af4611d4241d8f8c472265e5424604fbfce5ebadeaf29d3637e27a61fb32c1baf50f659519c4e14be153a0
|
@@ -532,10 +532,32 @@ digraph g {
|
|
532
532
|
|
533
533
|
|
534
534
|
|
535
|
+
[[mermaid]]
|
535
536
|
=== Mermaid
|
536
537
|
|
537
538
|
https://mermaid.js.org/[mermaid.js] is ideal for creating flowcharts, sequence diagrams, Gantt charts, and more.
|
538
539
|
|
540
|
+
.Example of a Sankey diagram that shows the distribution of construction costs across different trades, as well as the material and labor costs.
|
541
|
+
[mermaid, format=svg, background="FFFF0000"]
|
542
|
+
----
|
543
|
+
sankey-beta
|
544
|
+
|
545
|
+
%% source,target,value
|
546
|
+
Loan A , Sanitary, 40000
|
547
|
+
Loan A , Masonry work, 10000
|
548
|
+
Loan B , Masonry work, 30000
|
549
|
+
Equity , Tiler, 20000
|
550
|
+
|
551
|
+
Sanitary, Material costs, 25000
|
552
|
+
Sanitary, Labor costs, 15000
|
553
|
+
|
554
|
+
Masonry work, Material costs, 25000
|
555
|
+
Masonry work, Labor costs, 15000
|
556
|
+
|
557
|
+
Tiler,Material costs,10000
|
558
|
+
Tiler,Labor costs,10000
|
559
|
+
----
|
560
|
+
|
539
561
|
.Example of a flowchart in Mermaid, demonstrating a simple decision tree with two options.
|
540
562
|
[mermaid, format=svg]
|
541
563
|
----
|
@@ -568,6 +590,8 @@ pie title Popular Cuisines Around the World
|
|
568
590
|
|
569
591
|
|
570
592
|
|
593
|
+
|
594
|
+
|
571
595
|
=== Lilypond
|
572
596
|
|
573
597
|
LilyPond is a music engraving program that enables users to create beautifully typeset sheet music through a text-based input system, focusing on producing high-quality, professional-looking scores suitable for publication.
|
@@ -582,3 +606,33 @@ LilyPond is a music engraving program that enables users to create beautifully t
|
|
582
606
|
|
583
607
|
|
584
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.0
|
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
|