jekyll-theme-endless 0.17.0 → 0.17.2

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: c270196e60860cd8e6b92a15178ad9cd69a1d19bb980239582504aa98e9355ee
4
- data.tar.gz: a33b37f9efec194b068552a69369e455f40037b937c6a4014cd0d1663eb86fd3
3
+ metadata.gz: 72bf42744215b1e4176e609dfd51055794b149072e2fe15f26551c2f90d262d7
4
+ data.tar.gz: f796f05a0cc99b8ec8a0d2eedb421cb40cb525400a8cbe673ec21199eee62ddf
5
5
  SHA512:
6
- metadata.gz: 87803e32517bda17f229ff27cf213233e8afa65d0b113eca6c0a2b9395262a9b30c492d2429b9fd0569bdffde9986cac73be5281c1f0cc283edf69e4a98a5a6a
7
- data.tar.gz: fe4d956f1fee55ea9be225b1bc037591311baf4582feda65c422e8aa3859159c0be0e3033fc5c6b1af0b2d22e23b559eefe1e0c127ad0f0324b50a01ecdcec7f
6
+ metadata.gz: 9c406a278b28177106053de5f499d5f6fe62f0fe7520d6e195ae45bcba4600a1c96fb219a89a12b847a5cbc08b157b2e14eb6a2f62d1381177af7e56d679b769
7
+ data.tar.gz: 58d11cce69de569d8101ff7ab8f832f489d0f4dff4113a2368951a0ea201a3afc97422546c3a135d84a36a64bd2b42bd0c5478d0772d9b6677ffc17692723d30
data/README.adoc CHANGED
@@ -29,7 +29,7 @@ The gem is published on https://rubygems.org/gems/jekyll-theme-endless.
29
29
  == Quicktstart for testing
30
30
 
31
31
  * Clone the repository
32
- * Run `bundle exec jekyll serve --config _config.yml,_data.yml`
32
+ * Run `bundle exec jekyll serve --config _config.yml,_configData.yml`
33
33
  * Open http://127.0.0.1:4000/ to view a page using this theme
34
34
 
35
35
 
@@ -810,17 +810,17 @@ To test the theme *with example-data*, run:
810
810
 
811
811
  [source, bash]
812
812
  ----
813
- bundle exec jekyll serve --config _config.yml,_data.yml
813
+ bundle exec jekyll serve --config _config.yml,_configData.yml
814
814
  ----
815
815
 
816
816
  If you want additional debug output, simply set the log-level to `debug`:
817
817
 
818
818
  [source, bash]
819
819
  ----
820
- 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
821
821
  ----
822
822
 
823
- 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`.
824
824
  Since the `_config.yml` is shipped with the gem,
825
825
  the users of your theme would otherwise have to unset the values in their own `config.yml`.
826
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.17.0'
3
+ VERSION = '0.17.2'
4
4
  end
5
5
  end
@@ -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
  ----
@@ -547,8 +569,13 @@ graph TD;
547
569
  D --> E;
548
570
  ----
549
571
 
550
- .Example of a pie chart in Mermaid, showing the popularity of different types of cuisine worldwide.
551
- [mermaid, format=svg]
572
+ .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.
573
+ // This example also demonstrates how to:
574
+ // - Use the general "format" attribute of Asciidoctor Diagram.
575
+ // See also: https://docs.asciidoctor.org/diagram-extension/latest/blocks/#diagram-block-structure
576
+ // - Use the specific "background" attribute of Mermaid.
577
+ // See also: https://docs.asciidoctor.org/diagram-extension/latest/diagram_types/mermaid/#attributes
578
+ [mermaid, format=png, background="FFEEDD"]
552
579
  ----
553
580
  pie title Popular Cuisines Around the World
554
581
  "Italian" : 350
@@ -563,6 +590,8 @@ pie title Popular Cuisines Around the World
563
590
 
564
591
 
565
592
 
593
+
594
+
566
595
  === Lilypond
567
596
 
568
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.
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.17.0
4
+ version: 0.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Boekhoff
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-06 00:00:00.000000000 Z
10
+ date: 2025-02-13 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: jekyll-asciidoc
@@ -198,7 +198,6 @@ files:
198
198
  - LICENSE.txt
199
199
  - README.adoc
200
200
  - _config.yml
201
- - _data.yml
202
201
  - _includes/aside_info.html
203
202
  - _includes/aside_more.html
204
203
  - _includes/aside_navigation.html
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
-