jekyll-theme-endless 0.16.5 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff67af3303b1a1ea41c8a3073f8699a159c5503052994cbd1a7131d812dd3787
4
- data.tar.gz: f3aac118880e61aa80a7dfd3be45ff9c75d182b32d608bd0b5020d98e1bacc92
3
+ metadata.gz: 1644de4c8801d224c122ded7a66a6fd9e666851b998913ce7261de586e4e0206
4
+ data.tar.gz: 595af7928ba69b2f00cb3d899e30d7bc4f8e5ee4360def16123328913fdc902c
5
5
  SHA512:
6
- metadata.gz: 255b7769df86cedf0a340fe3a4161635ff4093d7dda70dee9d24249beb0b153d579164c6e5a5accc2e4d745803df83c3fc69cb2f300741126ddcd69018a9c8dd
7
- data.tar.gz: 432304cfe413c5c630360108e0065e0ea0057af7aea6c99928e2394ba1b4d3929c575937d3b9ff217465a70d53d54ed47358213f92f09633a6c46afa8f6d6565
6
+ metadata.gz: b9b26f9d812ab5ec2f9bac0f06ebd61ab1d619abc1ca42cca9d7cd2c82c18fe8550c53c06df70c299bfefbea49fa936fcca5e74bdd09c1dd6a802e0125e54b0a
7
+ data.tar.gz: d3ea74ca5e6c089b4ab491e3bf8d3b39186d54c7995867acb8f55a447d594573c73a3a972d01c9d100572063e841a1f1b05c0a18c749b35524d9052648d03ee5
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.
@@ -27,7 +29,7 @@ The gem is published on https://rubygems.org/gems/jekyll-theme-endless.
27
29
  == Quicktstart for testing
28
30
 
29
31
  * Clone the repository
30
- * Run `bundle exec jekyll serve --config _config.yml,_data.yml`
32
+ * Run `bundle exec jekyll serve --config _config.yml,_configData.yml`
31
33
  * Open http://127.0.0.1:4000/ to view a page using this theme
32
34
 
33
35
 
@@ -808,17 +810,17 @@ To test the theme *with example-data*, run:
808
810
 
809
811
  [source, bash]
810
812
  ----
811
- bundle exec jekyll serve --config _config.yml,_data.yml
813
+ bundle exec jekyll serve --config _config.yml,_configData.yml
812
814
  ----
813
815
 
814
816
  If you want additional debug output, simply set the log-level to `debug`:
815
817
 
816
818
  [source, bash]
817
819
  ----
818
- JEKYLL_LOG_LEVEL=debug bundle exec jekyll serve --config _config.yml,_data.yml
820
+ JEKYLL_LOG_LEVEL=debug bundle exec jekyll serve --config _config.yml,_configData.yml
819
821
  ----
820
822
 
821
- Values for theme specific configurations are stored in `_data.yml` and not in the themes `_config.yml`.
823
+ Values for theme specific configurations are stored in `_configData.yml` and not in the themes `_config.yml`.
822
824
  Since the `_config.yml` is shipped with the gem,
823
825
  the users of your theme would otherwise have to unset the values in their own `config.yml`.
824
826
 
data/_config.yml CHANGED
@@ -66,7 +66,7 @@ plugins:
66
66
  # NOT required in the repository that provides the plugin.
67
67
  # Instead, the plugin can be loaded from the `./lib` directory.
68
68
  # Local plugins are configured via the `plugins_dir` setting,
69
- # which in this project has been outsourced to `_data.yml`.
69
+ # which in this project has been outsourced to `_configData.yml`.
70
70
  #- jekyll-theme-endless
71
71
  # Generate an RSS-file with the blog-content
72
72
  # See https://github.com/jekyll/jekyll-feed for configuration
@@ -127,9 +127,9 @@ sass:
127
127
 
128
128
  # Settings for: jekyll-theme-endless
129
129
  ###############################################################################
130
- # These settings have been outsourced into the file `_data.yml` in this project.
131
- # You can find example data in the `_data.yml` file of the theme repository.
130
+ # These settings have been outsourced into the file `_configData.yml` in this project.
131
+ # You can find example data in the `_configData.yml` file of the theme repository.
132
132
  # If you want to build the theme website, you need to start the Jekyll server with two configuration files:
133
- # `bundle exec jekyll serve --config _config.yml,_data.yml`
133
+ # `bundle exec jekyll serve --config _config.yml,_configData.yml`
134
134
 
135
135
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.16.5'
3
+ VERSION = '0.17.1'
4
4
  end
5
5
  end
@@ -521,17 +521,53 @@ 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. Additionally, the use of the background attribute in Mermaid is demonstrated, with the color set to FFEEDD.
551
+ // This example also demonstrates how to:
552
+ // - Use the general "format" attribute of Asciidoctor Diagram.
553
+ // See also: https://docs.asciidoctor.org/diagram-extension/latest/blocks/#diagram-block-structure
554
+ // - Use the specific "background" attribute of Mermaid.
555
+ // See also: https://docs.asciidoctor.org/diagram-extension/latest/diagram_types/mermaid/#attributes
556
+ [mermaid, format=png, background="FFEEDD"]
557
+ ----
558
+ pie title Popular Cuisines Around the World
559
+ "Italian" : 350
560
+ "Chinese" : 290
561
+ "Mexican" : 220
562
+ "Indian" : 180
563
+ "Japanese" : 160
564
+ "French" : 140
565
+ "Thai" : 120
566
+ "Spanish" : 100
567
+ ----
568
+
569
+
570
+
535
571
  === Lilypond
536
572
 
537
573
  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.1
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-09 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: []
@@ -200,7 +198,6 @@ files:
200
198
  - LICENSE.txt
201
199
  - README.adoc
202
200
  - _config.yml
203
- - _data.yml
204
201
  - _includes/aside_info.html
205
202
  - _includes/aside_more.html
206
203
  - _includes/aside_navigation.html
@@ -272,7 +269,6 @@ homepage: https://gitlab.com/jekyll-theme-endless/jekyll-theme-endless.gitlab.io
272
269
  licenses:
273
270
  - MIT
274
271
  metadata: {}
275
- post_install_message:
276
272
  rdoc_options: []
277
273
  require_paths:
278
274
  - lib
@@ -287,8 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
287
283
  - !ruby/object:Gem::Version
288
284
  version: '0'
289
285
  requirements: []
290
- rubygems_version: 3.3.27
291
- signing_key:
286
+ rubygems_version: 3.6.2
292
287
  specification_version: 4
293
288
  summary: A Jekyll theme with support for AsciiDoc, mathematical formulas (e.g., AsciiMath,
294
289
  LaTeX), text-based diagrams (e.g., Ditaa, Graphviz), and more. Explore its features
data/_data.yml DELETED
@@ -1,72 +0,0 @@
1
- # Theme-specific settings
2
- ################################################################################
3
- # All configuration options for the theme jekyll-theme-endless are listed here.
4
- # These settings are outsourced into a separate file because they contain the values for the theme's website.
5
- # This way, these values are not used as default settings when you integrate the theme into your own project.
6
-
7
- # Language. Is overriden by value of page.lang.
8
- lang: en
9
-
10
- # NOTE: The values of the variables 'brand', 'title' and 'subtitle'
11
- # are NOT escaped in the layout. This allows you to use HTML commands.
12
- # For the RSS feed title (format: "{title}: {subtitle} | {brand}"), HTML tags are removed.
13
- brand: '"<em>endless</em>"-Theme'
14
- title: "<code>jekyll-theme-endless</code>"
15
- subtitle: "A Jekyll Theme ready for <strong><em>AsciiDoc</em></strong>"
16
-
17
- author: Sven Boekhoff
18
- copydate: 2020-2025
19
- disclaimer: > # folded block - single newlines are replaced with spaces.
20
- I'm creating this Jekyll theme because I want to use it myself.
21
- Therefore, many things (e.g. the support of AsciiDoc) are based on personal requirements.
22
- You are welcome to use the theme (at your own risk) and contribute to the development.
23
-
24
- # eMail address
25
- email: your-email@example.com
26
- # Username on https://gitlab.com/
27
- username_gitlab: XXXX
28
- # Username on https://github.com/
29
- username_github: XXXX
30
- # Username on https://www.xing.com/
31
- username_xing: XXXX
32
- # Username on https://linkedin.com/
33
- username_linkedin: XXXX
34
-
35
- # Settings for tag cloud:
36
- # The name of the directory in which the files for each tag are created
37
- # default: `tags`
38
- tag_dir: posts-for-tag
39
- # Prefix to be used for the title of the tag-page
40
- # default: `Tag: `
41
- tag_title_prefix: "Posts tagged with: "
42
- # Should the tag descriptions be displayed as titles in the tag cloud?
43
- # This can make individual pages very large, especially with a high number of terms.
44
- # On the individual tag pages, the description will still be displayed regardless of this setting.
45
- tag_show_description_in_tagcloud: true
46
-
47
- # You can dynamically add import statements to assets/css/main.css
48
- # Just add the path (relative to the folder `_sass`) to this array
49
- # CAUTION: omit the ending ".scss"
50
- additional-stylesheets:
51
- - "../theme-specific/debug"
52
-
53
- # Use CDN for external JavaScript libraries (e.g., jQuery, Bootstrap).
54
- # Set to true to load scripts from a CDN for faster loading times.
55
- # If not specified, defaults to true.
56
- use-cdn: true
57
-
58
-
59
-
60
-
61
-
62
- # Specific settings for this project
63
- ################################################################################
64
- # In this project, the plugin for generating tag pages is loaded from the local directory `./lib`.
65
- # The folder where Jekyll looks for locally available plugins is configured via `plugins_dir`.
66
- # The default value for this is `_plugins`.
67
- # However, `_plugins` is also the directory that Jekyll uses for plugins managed by Bundler
68
- # (those plugins are specified using the `plugins` array in `_config.yml`).
69
- # Therefore, it is good practice to define a separate directory for locally available plugins.
70
- plugins_dir:
71
- - ./lib
72
-