jekyll-theme-endless 0.16.5 → 0.17.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: ff67af3303b1a1ea41c8a3073f8699a159c5503052994cbd1a7131d812dd3787
4
- data.tar.gz: f3aac118880e61aa80a7dfd3be45ff9c75d182b32d608bd0b5020d98e1bacc92
3
+ metadata.gz: c270196e60860cd8e6b92a15178ad9cd69a1d19bb980239582504aa98e9355ee
4
+ data.tar.gz: a33b37f9efec194b068552a69369e455f40037b937c6a4014cd0d1663eb86fd3
5
5
  SHA512:
6
- metadata.gz: 255b7769df86cedf0a340fe3a4161635ff4093d7dda70dee9d24249beb0b153d579164c6e5a5accc2e4d745803df83c3fc69cb2f300741126ddcd69018a9c8dd
7
- data.tar.gz: 432304cfe413c5c630360108e0065e0ea0057af7aea6c99928e2394ba1b4d3929c575937d3b9ff217465a70d53d54ed47358213f92f09633a6c46afa8f6d6565
6
+ metadata.gz: 87803e32517bda17f229ff27cf213233e8afa65d0b113eca6c0a2b9395262a9b30c492d2429b9fd0569bdffde9986cac73be5281c1f0cc283edf69e4a98a5a6a
7
+ data.tar.gz: fe4d956f1fee55ea9be225b1bc037591311baf4582feda65c422e8aa3859159c0be0e3033fc5c6b1af0b2d22e23b559eefe1e0c127ad0f0324b50a01ecdcec7f
data/README.adoc CHANGED
@@ -15,6 +15,8 @@ Moreover, it is shipped with a plugin that generates a *tag cloud* and a page fo
15
15
  The syntax of source code is highlighted using https://github.com/rouge-ruby/rouge/wiki/List-of-supported-languages-and-lexers[Rouge].
16
16
  Below you'll find a link:#features[list of the key features of this theme].
17
17
 
18
+ To easily set up a site using this theme, go to https://quickstart-blog.gitlab.io/ and follow the instructions.
19
+
18
20
  The repository of this Jekyll theme is located at:
19
21
  https://gitlab.com/jekyll-theme-endless/jekyll-theme-endless.gitlab.io.
20
22
  An example page using this theme can be viewed at: https://jekyll-theme-endless.gitlab.io.
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.16.5'
3
+ VERSION = '0.17.0'
4
4
  end
5
5
  end
@@ -521,17 +521,48 @@ Useful for directed and undirected graphs, including flowcharts, state diagrams,
521
521
  [graphviz,,svg]
522
522
  ....
523
523
  digraph g {
524
- a -> b
525
- b -> c
526
- b -> d
527
- b -> b
528
- c -> d
529
- d -> a
524
+ a -> b
525
+ b -> c
526
+ b -> d
527
+ b -> b
528
+ c -> d
529
+ d -> a
530
530
  }
531
531
  ....
532
532
 
533
533
 
534
534
 
535
+ === Mermaid
536
+
537
+ https://mermaid.js.org/[mermaid.js] is ideal for creating flowcharts, sequence diagrams, Gantt charts, and more.
538
+
539
+ .Example of a flowchart in Mermaid, demonstrating a simple decision tree with two options.
540
+ [mermaid, format=svg]
541
+ ----
542
+ graph TD;
543
+ A[Start] --> B{Decision};
544
+ B -->|Yes| C[Option 1];
545
+ B -->|No| D[Option 2];
546
+ C --> E[End];
547
+ D --> E;
548
+ ----
549
+
550
+ .Example of a pie chart in Mermaid, showing the popularity of different types of cuisine worldwide.
551
+ [mermaid, format=svg]
552
+ ----
553
+ pie title Popular Cuisines Around the World
554
+ "Italian" : 350
555
+ "Chinese" : 290
556
+ "Mexican" : 220
557
+ "Indian" : 180
558
+ "Japanese" : 160
559
+ "French" : 140
560
+ "Thai" : 120
561
+ "Spanish" : 100
562
+ ----
563
+
564
+
565
+
535
566
  === Lilypond
536
567
 
537
568
  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.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-endless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.5
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Boekhoff
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-02 00:00:00.000000000 Z
10
+ date: 2025-02-06 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll-asciidoc
@@ -190,7 +189,6 @@ dependencies:
190
189
  - - ">="
191
190
  - !ruby/object:Gem::Version
192
191
  version: 0.2.0
193
- description:
194
192
  email:
195
193
  - rubygems.org@boekhoff.net
196
194
  executables: []
@@ -272,7 +270,6 @@ homepage: https://gitlab.com/jekyll-theme-endless/jekyll-theme-endless.gitlab.io
272
270
  licenses:
273
271
  - MIT
274
272
  metadata: {}
275
- post_install_message:
276
273
  rdoc_options: []
277
274
  require_paths:
278
275
  - lib
@@ -287,8 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
287
284
  - !ruby/object:Gem::Version
288
285
  version: '0'
289
286
  requirements: []
290
- rubygems_version: 3.3.27
291
- signing_key:
287
+ rubygems_version: 3.6.2
292
288
  specification_version: 4
293
289
  summary: A Jekyll theme with support for AsciiDoc, mathematical formulas (e.g., AsciiMath,
294
290
  LaTeX), text-based diagrams (e.g., Ditaa, Graphviz), and more. Explore its features