jekyll-theme-endless 0.14.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d27d233219c7a772a86ff82b83d7b7bf33b49da821037e7567ef55a6601d669f
4
- data.tar.gz: 185bbe4b4b9576520ad7efcd4c188016d16252f7b2800fe9d3c43ac0f5e6b5b8
3
+ metadata.gz: 3affa436a6ef829a6b365277fc4bc8edfe2642304e1a2707a80c95980132d99e
4
+ data.tar.gz: 72d46c7972912ca6ddf3797ddbb2e36fe800c9cae9b3f4d79af3ebe9aeadfded
5
5
  SHA512:
6
- metadata.gz: 851322bc67d541b746674de44a31f28d6edf782f671870da127253d43d0aae7d02746625bd77b54fe5642ae4baf9c2123c51607e9b4672d6b7f6642ab2d3584b
7
- data.tar.gz: e00b97d79adde47ab35f96904cb4771855f9d3f81a34b5ef9d434a1c427132ecd28956345c613be1cba4427f3ff7a27536ee44692961ed4c8e755664b3282652
6
+ metadata.gz: 6f30ef2f112cbef73f2ead8984f9572ed02a1ed3dc76189302d739cde00e65bedeb0ca5d4e5a886ed013d6855195b6b2ef3430d4478690378c652af50ded513c
7
+ data.tar.gz: d8e7dbe09a5aee6c893ee7b12c4a14ed74298e0f00ac97bb10479d7c482f28395f4e2605f0123e6895680af1ed46b64d47735d2f74039d09533f3f7065508bbf
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
  #
@@ -3,6 +3,7 @@
3
3
  */
4
4
  div.imageblock {
5
5
  text-align: center;
6
+ margin: 2em;
6
7
 
7
8
  img {
8
9
  /* See also `img-fluid` class from Bootstrap. */
@@ -18,3 +18,11 @@ li {
18
18
  }
19
19
  }
20
20
 
21
+ ul, ol {
22
+ padding-left: 1.5em;
23
+
24
+ ul, ol {
25
+ padding-left: 1em;
26
+ }
27
+ }
28
+
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
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.14.0'
3
+ VERSION = '0.15.0'
4
4
  end
5
5
  end
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.14.0
4
+ version: 0.15.0
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-05 00:00:00.000000000 Z
11
+ date: 2024-11-10 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