jekyll-theme-endless 0.14.1 → 0.15.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/_config.yml +13 -0
- data/_sass/adoc-admonition.scss +2 -0
- data/_sass/adoc-code.scss +4 -0
- data/_sass/adoc-images.scss +1 -0
- data/_sass/adoc-lists.scss +8 -0
- data/_sass/adoc-stem.scss +1 -1
- data/lib/jekyll-theme-endless/version.rb +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 232335a620d6e542099dd2c2cbeb88184152c656a899e049ec01b80215425df3
|
4
|
+
data.tar.gz: 8ee1212d877c99381758aa41bc6758f92370bba58ee3eea30199e12b5f35ebe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e50c2cdf8e32e0ec73f021410198645774e1427a5cfa542f3d8fce9e6eebed2c4ec630e53f88f090160c3cc16e605a56419d7f2ae4630c35c3a9ad4ac76bbce
|
7
|
+
data.tar.gz: 2452c5e1a536ed6e06fd5e483b8224c70fb4fc7551b3368783a4ddb1f5e0ca6db2b92762be9e6a70c74cffd098b1b58e7852303c8628fdc43e6e22c942265a0b
|
data/_config.yml
CHANGED
@@ -33,7 +33,13 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
|
33
33
|
# AsciiDoc settings
|
34
34
|
###############################################################################
|
35
35
|
asciidoctor:
|
36
|
+
# Settings for AsciiDoctor diagramm (https://docs.asciidoctor.org/diagram-extension/latest/)
|
37
|
+
# https://jekyllrb.com/docs/configuration/options/#global-configuration
|
38
|
+
# https://github.com/asciidoctor/jekyll-asciidoc?#generated-image-location
|
39
|
+
base_dir: :docdir
|
40
|
+
safe: unsafe
|
36
41
|
attributes:
|
42
|
+
imagesdir: /_diagrams/
|
37
43
|
# Highlighting source code using rouge
|
38
44
|
# https://github.com/asciidoctor/jekyll-asciidoc#stylesheet-for-code-highlighting
|
39
45
|
# https://github.com/asciidoctor/jekyll-asciidoc/issues/221#issuecomment-526857488
|
@@ -42,6 +48,12 @@ asciidoctor:
|
|
42
48
|
# https://github.com/asciidoctor/jekyll-asciidoc#font-based-admonition-and-inline-icons
|
43
49
|
icons: font
|
44
50
|
|
51
|
+
# Keep files generated by AsciiDoctor-diagram during the build process
|
52
|
+
# https://github.com/asciidoctor/jekyll-asciidoc#preserving-generated-images
|
53
|
+
# The paths in keep_files must not have a / at the beginning or end.
|
54
|
+
keep_files:
|
55
|
+
- _diagrams
|
56
|
+
|
45
57
|
|
46
58
|
|
47
59
|
|
@@ -65,6 +77,7 @@ plugins:
|
|
65
77
|
# Generate an RSS-file with the blog-content
|
66
78
|
# See https://github.com/jekyll/jekyll-feed for configuration
|
67
79
|
- jekyll-feed
|
80
|
+
- asciidoctor-diagram
|
68
81
|
|
69
82
|
# Exclude files from processing.
|
70
83
|
#
|
data/_sass/adoc-admonition.scss
CHANGED
data/_sass/adoc-code.scss
CHANGED
@@ -8,6 +8,8 @@
|
|
8
8
|
code {
|
9
9
|
position: relative;
|
10
10
|
display: block;
|
11
|
+
// Workaround to prevent the language label from overlapping the source code (see release notes 0.10.X).
|
12
|
+
z-index: 0;
|
11
13
|
}
|
12
14
|
|
13
15
|
code::before {
|
@@ -21,6 +23,8 @@
|
|
21
23
|
color: #333;
|
22
24
|
border-radius: 3px;
|
23
25
|
border: 1px solid #ccc;
|
26
|
+
// Workaround to prevent the language label from overlapping the source code (see release notes 0.10.X).
|
27
|
+
z-index: -10;
|
24
28
|
}
|
25
29
|
|
26
30
|
/* If data-lang is empty or not set, ::before will be hidden. */
|
data/_sass/adoc-images.scss
CHANGED
data/_sass/adoc-lists.scss
CHANGED
data/_sass/adoc-stem.scss
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
div.stemblock {
|
4
4
|
text-align: center;
|
5
|
+
margin: 1em 2em;
|
5
6
|
|
6
7
|
div.content {
|
7
8
|
/* See also `img-fluid` class from Bootstrap. */
|
@@ -13,7 +14,6 @@ div.stemblock {
|
|
13
14
|
border: 1px solid #aaa;
|
14
15
|
padding: 10px 10px;
|
15
16
|
border-radius: 5px;
|
16
|
-
margin-bottom: 2em;
|
17
17
|
}
|
18
18
|
}
|
19
19
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Boekhoff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll-asciidoc
|
@@ -66,6 +66,26 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.6'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: asciidoctor-diagram
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.3'
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 2.3.1
|
79
|
+
type: :runtime
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - "~>"
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '2.3'
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 2.3.1
|
69
89
|
description:
|
70
90
|
email:
|
71
91
|
- rubygems.org@boekhoff.net
|