jekyll-theme-endless 0.17.0 → 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 +4 -4
- data/README.adoc +4 -4
- data/_config.yml +4 -4
- data/lib/jekyll-theme-endless/version.rb +1 -1
- data/pages_examples/showroom-asciidoc.adoc +7 -2
- metadata +2 -3
- data/_data.yml +0 -72
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1644de4c8801d224c122ded7a66a6fd9e666851b998913ce7261de586e4e0206
|
4
|
+
data.tar.gz: 595af7928ba69b2f00cb3d899e30d7bc4f8e5ee4360def16123328913fdc902c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9b26f9d812ab5ec2f9bac0f06ebd61ab1d619abc1ca42cca9d7cd2c82c18fe8550c53c06df70c299bfefbea49fa936fcca5e74bdd09c1dd6a802e0125e54b0a
|
7
|
+
data.tar.gz: d3ea74ca5e6c089b4ab491e3bf8d3b39186d54c7995867acb8f55a447d594573c73a3a972d01c9d100572063e841a1f1b05c0a18c749b35524d9052648d03ee5
|
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,
|
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,
|
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,
|
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 `
|
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 `
|
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 `
|
131
|
-
# You can find example data in the `
|
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,
|
133
|
+
# `bundle exec jekyll serve --config _config.yml,_configData.yml`
|
134
134
|
|
135
135
|
|
@@ -547,8 +547,13 @@ graph TD;
|
|
547
547
|
D --> E;
|
548
548
|
----
|
549
549
|
|
550
|
-
.Example of a pie chart in Mermaid, showing the popularity of different types of cuisine worldwide.
|
551
|
-
|
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"]
|
552
557
|
----
|
553
558
|
pie title Popular Cuisines Around the World
|
554
559
|
"Italian" : 350
|
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.
|
4
|
+
version: 0.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Boekhoff
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-02-
|
10
|
+
date: 2025-02-09 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
|
-
|