jektify 1.0.7 → 1.0.8
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/.bundle/config +3 -0
- data/.github/workflows/ruby.yml +10 -21
- data/.gitignore +10 -28
- data/CHANGELOG.md +10 -1
- data/Gemfile.lock +198 -0
- data/LICENSE +1 -1
- data/README.md +2 -32
- data/_config.yml +315 -0
- data/assets/vendor/jektify/js/jektify.min.js +1 -1
- data/assets/vendor/jektify/sass/_jektify.scss +5 -19
- data/bin/setup +3 -0
- data/bin/tests +9 -79
- data/example/.bundle/config +3 -0
- data/example/.gitignore +5 -0
- data/example/Gemfile +11 -0
- data/example/Gemfile.lock +181 -0
- data/example/_config.yml +43 -0
- data/example/_includes/head.html +6 -0
- data/example/_layouts/default.html +22 -0
- data/example/_layouts/home.html +36 -0
- data/example/_layouts/post.html +27 -0
- data/example/_posts/2025-09-19-welcome-to-jektify.markdown +12 -0
- data/example/_sass/_reset.scss +24 -0
- data/example/_sass/main.scss +2 -0
- data/example/assets/jquery.min.js +2 -0
- data/example/assets/style.scss +4 -0
- data/example/index.markdown +3 -0
- data/gulpfile.js +11 -17
- data/jektify.gemspec +6 -6
- data/lib/jektify/engine.rb +24 -26
- data/lib/jektify/main.rb +61 -86
- data/lib/jektify/render.rb +50 -76
- data/lib/jektify/version.rb +1 -1
- data/package-lock.json +2057 -0
- data/src/js/jektify.js +30 -6
- metadata +37 -36
- data/.travis.yml +0 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ec1d515592e3aecef4d6615e0a1e7bcbd8d6fbc68e1e0cb74bd5a8a7b9b93e4
|
|
4
|
+
data.tar.gz: 7adacb722b68235e0b060f94e30b778e124a1085ca1d1907d11df299f8b750ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea04608ee70e7a8a75c506fd1d946ae9663be5075ab2a5b66e8d61620d79fd2b68d6428d4fe81c16a8f3b2c8a374af155a54912bd837561570107ae0ee00ae08
|
|
7
|
+
data.tar.gz: 30f41fa371f3cb287a59693487f9f28e5465c9bc78cd12b079c3a3ad9d8d9e589b11db09d9b922edf9c8cf90a8512c2296a3e3a79733150218355d4eb9f8eeba
|
data/.bundle/config
ADDED
data/.github/workflows/ruby.yml
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
-
# They are provided by a third-party and are governed by
|
|
3
|
-
# separate terms of service, privacy policy, and support
|
|
4
|
-
# documentation.
|
|
5
|
-
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
-
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
-
|
|
8
1
|
name: Ruby
|
|
9
2
|
|
|
10
3
|
on:
|
|
@@ -15,26 +8,22 @@ on:
|
|
|
15
8
|
|
|
16
9
|
jobs:
|
|
17
10
|
test:
|
|
18
|
-
|
|
19
11
|
runs-on: ubuntu-latest
|
|
20
12
|
strategy:
|
|
21
13
|
matrix:
|
|
22
|
-
ruby-version: ['3.
|
|
14
|
+
ruby-version: ['3.3']
|
|
23
15
|
|
|
24
16
|
steps:
|
|
25
|
-
- uses: actions/checkout@
|
|
17
|
+
- uses: actions/checkout@v3
|
|
18
|
+
|
|
26
19
|
- name: Set up Ruby
|
|
27
|
-
|
|
28
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
29
|
-
# uses: ruby/setup-ruby@v1
|
|
30
|
-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
20
|
+
uses: ruby/setup-ruby@v1
|
|
31
21
|
with:
|
|
32
22
|
ruby-version: ${{ matrix.ruby-version }}
|
|
33
|
-
bundler-cache: true #
|
|
23
|
+
bundler-cache: true # instala e cacheia gems automaticamente
|
|
24
|
+
|
|
25
|
+
- name: Install dependencies and build Gem
|
|
26
|
+
run: bin/setup
|
|
27
|
+
|
|
34
28
|
- name: Run tests
|
|
35
|
-
run:
|
|
36
|
-
gem update --system
|
|
37
|
-
gem install bundler -v 2.2.17
|
|
38
|
-
bundle install
|
|
39
|
-
bin/setup
|
|
40
|
-
bin/tests
|
|
29
|
+
run: bin/tests
|
data/.gitignore
CHANGED
|
@@ -1,28 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
/
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
/
|
|
7
|
-
/
|
|
8
|
-
/
|
|
9
|
-
/
|
|
10
|
-
/
|
|
11
|
-
/tmp/
|
|
12
|
-
/gems/
|
|
13
|
-
/_gems/
|
|
14
|
-
**/*/_gems
|
|
15
|
-
/vendor/
|
|
16
|
-
/_vendor/
|
|
17
|
-
**/*/_vendor/
|
|
18
|
-
**/*/_site
|
|
19
|
-
/temp/
|
|
20
|
-
/.temp/
|
|
21
|
-
/.sass-cache/
|
|
22
|
-
**/*/.sass-cache
|
|
23
|
-
/test/travis/project
|
|
24
|
-
/package-lock.json
|
|
25
|
-
/Gemfile.lock
|
|
26
|
-
**/*/Gemfile.lock
|
|
27
|
-
tests/travis/
|
|
28
|
-
tests/vm
|
|
1
|
+
.bundle-cache/
|
|
2
|
+
.sass-cache/
|
|
3
|
+
node_modules/
|
|
4
|
+
.jekyll-cache/
|
|
5
|
+
coverage/
|
|
6
|
+
tmp/
|
|
7
|
+
temp/
|
|
8
|
+
pkg/
|
|
9
|
+
spec/reports/
|
|
10
|
+
gems/
|
data/CHANGELOG.md
CHANGED
|
@@ -32,4 +32,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
32
32
|
|
|
33
33
|
## [1.0.6] -
|
|
34
34
|
### Change
|
|
35
|
-
- Nothing interesting, just updating dependencies and maintaining compatibility Jekyll
|
|
35
|
+
- Nothing interesting, just updating dependencies and maintaining compatibility Jekyll = v4.2.0
|
|
36
|
+
|
|
37
|
+
## [1.0.7] -
|
|
38
|
+
### Change
|
|
39
|
+
- Bug fix. There was a bug when refreshing the page with the toggle open.
|
|
40
|
+
|
|
41
|
+
## [1.0.8] -
|
|
42
|
+
### Change
|
|
43
|
+
- Removing "sassc" dependency and using "sass". Updating compatibility for Jekyll >= 4.4
|
|
44
|
+
- Adding "example" project Jekyll.
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
jektify (1.0.8)
|
|
5
|
+
jekyll (>= 4.4)
|
|
6
|
+
sass (>= 3.7.4)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
addressable (2.8.7)
|
|
12
|
+
public_suffix (>= 2.0.2, < 7.0)
|
|
13
|
+
base64 (0.3.0)
|
|
14
|
+
bigdecimal (3.0.2)
|
|
15
|
+
coderay (1.1.3)
|
|
16
|
+
colorator (1.1.0)
|
|
17
|
+
concurrent-ruby (1.3.5)
|
|
18
|
+
csv (3.3.5)
|
|
19
|
+
diff-lcs (1.6.2)
|
|
20
|
+
em-websocket (0.5.3)
|
|
21
|
+
eventmachine (>= 0.12.9)
|
|
22
|
+
http_parser.rb (~> 0)
|
|
23
|
+
eventmachine (1.2.7)
|
|
24
|
+
ffi (1.17.2)
|
|
25
|
+
ffi (1.17.2-aarch64-linux-gnu)
|
|
26
|
+
ffi (1.17.2-aarch64-linux-musl)
|
|
27
|
+
ffi (1.17.2-arm-linux-gnu)
|
|
28
|
+
ffi (1.17.2-arm-linux-musl)
|
|
29
|
+
ffi (1.17.2-arm64-darwin)
|
|
30
|
+
ffi (1.17.2-x86-linux-gnu)
|
|
31
|
+
ffi (1.17.2-x86-linux-musl)
|
|
32
|
+
ffi (1.17.2-x86_64-darwin)
|
|
33
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
|
34
|
+
ffi (1.17.2-x86_64-linux-musl)
|
|
35
|
+
forwardable-extended (2.6.0)
|
|
36
|
+
google-protobuf (4.32.1)
|
|
37
|
+
bigdecimal
|
|
38
|
+
rake (>= 13)
|
|
39
|
+
google-protobuf (4.32.1-aarch64-linux-gnu)
|
|
40
|
+
bigdecimal
|
|
41
|
+
rake (>= 13)
|
|
42
|
+
google-protobuf (4.32.1-aarch64-linux-musl)
|
|
43
|
+
bigdecimal
|
|
44
|
+
rake (>= 13)
|
|
45
|
+
google-protobuf (4.32.1-arm64-darwin)
|
|
46
|
+
bigdecimal
|
|
47
|
+
rake (>= 13)
|
|
48
|
+
google-protobuf (4.32.1-x86-linux-gnu)
|
|
49
|
+
bigdecimal
|
|
50
|
+
rake (>= 13)
|
|
51
|
+
google-protobuf (4.32.1-x86-linux-musl)
|
|
52
|
+
bigdecimal
|
|
53
|
+
rake (>= 13)
|
|
54
|
+
google-protobuf (4.32.1-x86_64-darwin)
|
|
55
|
+
bigdecimal
|
|
56
|
+
rake (>= 13)
|
|
57
|
+
google-protobuf (4.32.1-x86_64-linux-gnu)
|
|
58
|
+
bigdecimal
|
|
59
|
+
rake (>= 13)
|
|
60
|
+
google-protobuf (4.32.1-x86_64-linux-musl)
|
|
61
|
+
bigdecimal
|
|
62
|
+
rake (>= 13)
|
|
63
|
+
http_parser.rb (0.8.0)
|
|
64
|
+
i18n (1.14.7)
|
|
65
|
+
concurrent-ruby (~> 1.0)
|
|
66
|
+
jekyll (4.4.1)
|
|
67
|
+
addressable (~> 2.4)
|
|
68
|
+
base64 (~> 0.2)
|
|
69
|
+
colorator (~> 1.0)
|
|
70
|
+
csv (~> 3.0)
|
|
71
|
+
em-websocket (~> 0.5)
|
|
72
|
+
i18n (~> 1.0)
|
|
73
|
+
jekyll-sass-converter (>= 2.0, < 4.0)
|
|
74
|
+
jekyll-watch (~> 2.0)
|
|
75
|
+
json (~> 2.6)
|
|
76
|
+
kramdown (~> 2.3, >= 2.3.1)
|
|
77
|
+
kramdown-parser-gfm (~> 1.0)
|
|
78
|
+
liquid (~> 4.0)
|
|
79
|
+
mercenary (~> 0.3, >= 0.3.6)
|
|
80
|
+
pathutil (~> 0.9)
|
|
81
|
+
rouge (>= 3.0, < 5.0)
|
|
82
|
+
safe_yaml (~> 1.0)
|
|
83
|
+
terminal-table (>= 1.8, < 4.0)
|
|
84
|
+
webrick (~> 1.7)
|
|
85
|
+
jekyll-sass-converter (3.1.0)
|
|
86
|
+
sass-embedded (~> 1.75)
|
|
87
|
+
jekyll-watch (2.2.1)
|
|
88
|
+
listen (~> 3.0)
|
|
89
|
+
json (2.14.1)
|
|
90
|
+
kramdown (2.5.1)
|
|
91
|
+
rexml (>= 3.3.9)
|
|
92
|
+
kramdown-parser-gfm (1.1.0)
|
|
93
|
+
kramdown (~> 2.0)
|
|
94
|
+
liquid (4.0.4)
|
|
95
|
+
listen (3.9.0)
|
|
96
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
97
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
98
|
+
mercenary (0.4.0)
|
|
99
|
+
method_source (1.1.0)
|
|
100
|
+
minitest (5.25.5)
|
|
101
|
+
pathutil (0.16.2)
|
|
102
|
+
forwardable-extended (~> 2.6)
|
|
103
|
+
pry (0.15.2)
|
|
104
|
+
coderay (~> 1.1)
|
|
105
|
+
method_source (~> 1.0)
|
|
106
|
+
public_suffix (6.0.2)
|
|
107
|
+
rake (13.3.0)
|
|
108
|
+
rb-fsevent (0.11.2)
|
|
109
|
+
rb-inotify (0.11.1)
|
|
110
|
+
ffi (~> 1.0)
|
|
111
|
+
rexml (3.4.4)
|
|
112
|
+
rouge (4.6.0)
|
|
113
|
+
rspec (3.13.1)
|
|
114
|
+
rspec-core (~> 3.13.0)
|
|
115
|
+
rspec-expectations (~> 3.13.0)
|
|
116
|
+
rspec-mocks (~> 3.13.0)
|
|
117
|
+
rspec-core (3.13.5)
|
|
118
|
+
rspec-support (~> 3.13.0)
|
|
119
|
+
rspec-expectations (3.13.5)
|
|
120
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
121
|
+
rspec-support (~> 3.13.0)
|
|
122
|
+
rspec-mocks (3.13.5)
|
|
123
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
124
|
+
rspec-support (~> 3.13.0)
|
|
125
|
+
rspec-support (3.13.6)
|
|
126
|
+
safe_yaml (1.0.5)
|
|
127
|
+
sass (3.7.4)
|
|
128
|
+
sass-listen (~> 4.0.0)
|
|
129
|
+
sass-embedded (1.92.1)
|
|
130
|
+
google-protobuf (~> 4.31)
|
|
131
|
+
rake (>= 13)
|
|
132
|
+
sass-embedded (1.92.1-aarch64-linux-android)
|
|
133
|
+
google-protobuf (~> 4.31)
|
|
134
|
+
sass-embedded (1.92.1-aarch64-linux-gnu)
|
|
135
|
+
google-protobuf (~> 4.31)
|
|
136
|
+
sass-embedded (1.92.1-aarch64-linux-musl)
|
|
137
|
+
google-protobuf (~> 4.31)
|
|
138
|
+
sass-embedded (1.92.1-arm-linux-androideabi)
|
|
139
|
+
google-protobuf (~> 4.31)
|
|
140
|
+
sass-embedded (1.92.1-arm-linux-gnueabihf)
|
|
141
|
+
google-protobuf (~> 4.31)
|
|
142
|
+
sass-embedded (1.92.1-arm-linux-musleabihf)
|
|
143
|
+
google-protobuf (~> 4.31)
|
|
144
|
+
sass-embedded (1.92.1-arm64-darwin)
|
|
145
|
+
google-protobuf (~> 4.31)
|
|
146
|
+
sass-embedded (1.92.1-riscv64-linux-android)
|
|
147
|
+
google-protobuf (~> 4.31)
|
|
148
|
+
sass-embedded (1.92.1-riscv64-linux-gnu)
|
|
149
|
+
google-protobuf (~> 4.31)
|
|
150
|
+
sass-embedded (1.92.1-riscv64-linux-musl)
|
|
151
|
+
google-protobuf (~> 4.31)
|
|
152
|
+
sass-embedded (1.92.1-x86_64-darwin)
|
|
153
|
+
google-protobuf (~> 4.31)
|
|
154
|
+
sass-embedded (1.92.1-x86_64-linux-android)
|
|
155
|
+
google-protobuf (~> 4.31)
|
|
156
|
+
sass-embedded (1.92.1-x86_64-linux-gnu)
|
|
157
|
+
google-protobuf (~> 4.31)
|
|
158
|
+
sass-embedded (1.92.1-x86_64-linux-musl)
|
|
159
|
+
google-protobuf (~> 4.31)
|
|
160
|
+
sass-listen (4.0.0)
|
|
161
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
162
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
163
|
+
terminal-table (3.0.2)
|
|
164
|
+
unicode-display_width (>= 1.1.1, < 3)
|
|
165
|
+
unicode-display_width (2.6.0)
|
|
166
|
+
webrick (1.7.0)
|
|
167
|
+
|
|
168
|
+
PLATFORMS
|
|
169
|
+
aarch64-linux-android
|
|
170
|
+
aarch64-linux-gnu
|
|
171
|
+
aarch64-linux-musl
|
|
172
|
+
arm-linux-androideabi
|
|
173
|
+
arm-linux-gnu
|
|
174
|
+
arm-linux-gnueabihf
|
|
175
|
+
arm-linux-musl
|
|
176
|
+
arm-linux-musleabihf
|
|
177
|
+
arm64-darwin
|
|
178
|
+
riscv64-linux-android
|
|
179
|
+
riscv64-linux-gnu
|
|
180
|
+
riscv64-linux-musl
|
|
181
|
+
ruby
|
|
182
|
+
x86-linux-gnu
|
|
183
|
+
x86-linux-musl
|
|
184
|
+
x86_64-darwin
|
|
185
|
+
x86_64-linux-android
|
|
186
|
+
x86_64-linux-gnu
|
|
187
|
+
x86_64-linux-musl
|
|
188
|
+
|
|
189
|
+
DEPENDENCIES
|
|
190
|
+
bundler (>= 2.2.17)
|
|
191
|
+
jektify!
|
|
192
|
+
minitest (>= 5.14.3)
|
|
193
|
+
pry (~> 0.14)
|
|
194
|
+
rake (>= 13.0.3)
|
|
195
|
+
rspec (~> 3.10)
|
|
196
|
+
|
|
197
|
+
BUNDLED WITH
|
|
198
|
+
2.7.2
|
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2025 William C. Canin
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/jektify)
|
|
4
4
|
[](https://github.com/jektify/jektify/actions/workflows/ruby.yml)
|
|
5
|
-
[](https://travis-ci.org/jektify/jektify)
|
|
6
|
-
[](https://hakiri.io/github/jektify/jektify/master)
|
|
7
5
|
|
|
8
6
|
[Jektify](https://github.com/jektify/jektify) is beautiful and Customizable, much more appealing than a simple "iframe"!
|
|
9
7
|
|
|
@@ -54,19 +52,16 @@ The [Jektify](https://github.com/jektify/jektify) code is stored in the folder "
|
|
|
54
52
|
* lib/jektify/version.rb
|
|
55
53
|
* bin/tests
|
|
56
54
|
* package.json
|
|
57
|
-
* gulpfile.
|
|
58
|
-
* cdn/v[VERSION]
|
|
55
|
+
* gulpfile.js
|
|
59
56
|
|
|
60
57
|
*JavaScript*
|
|
61
58
|
|
|
62
59
|
[Jektify](https://github.com/jektify/jektify) uses javascript, where it is located in the folder "`src/dev/js/jektify.js`". All Javascript code must be written to it, regardless of whether it uses ES6 or not. Gem will use it in the folder "`assets/vendor/jektify/js`", and you need to minify it with [Gulp](https://gulpjs.com/) to play it there. To do this, run on the terminal in the root directory of Jektify:
|
|
63
60
|
|
|
64
61
|
```shell
|
|
65
|
-
$
|
|
62
|
+
$ npm run build
|
|
66
63
|
```
|
|
67
64
|
|
|
68
|
-
The `cdn` folder should contain the original and mined jektify javascript file. It will have a folder structure with the name of each version of [Jektify](https://github.com/jektify/jektify). The service that makes CDN available is [Jsdelivr](https://www.jsdelivr.com/).
|
|
69
|
-
|
|
70
65
|
*Sass*
|
|
71
66
|
|
|
72
67
|
The layout of [Jektify](https://github.com/jektify/jektify) is being attributed by the file "`assets/vendor/jektify/sass/_jektify.scss`", in this file you should write everything stylesheets [Jektify](https://github.com/jektify/jektify) using the methodology [BEM](getbem.com).
|
|
@@ -75,31 +70,6 @@ The layout of [Jektify](https://github.com/jektify/jektify) is being attributed
|
|
|
75
70
|
|
|
76
71
|
Now, you can generate the gem of Jektify with the `bundle exec rake build` command, it will be bundled in the directory "`pkg`". To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
77
72
|
|
|
78
|
-
*Webpage*
|
|
79
|
-
|
|
80
|
-
The development of the [Jektify](https://github.com/jektify/jektify) page is in the folder "`src/dev/page`", it is a Jekyll template. To develop, you need to update the [Jektify](https://github.com/jektify/jektify) version in the `Gemfile` file according to the version of the gem in development of [Jektify](https://github.com/jektify/jektify).
|
|
81
|
-
|
|
82
|
-
```yaml
|
|
83
|
-
group :jekyll_plugins do
|
|
84
|
-
gem "jektify", "~> [VERSION_DEVELOPMENT]"
|
|
85
|
-
end
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
After that execute:
|
|
89
|
-
|
|
90
|
-
```shell
|
|
91
|
-
$ bundle install
|
|
92
|
-
$ ./serve
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
If Jektify adds new features and options, you should configure the file "` _config.yml`" in the Jektify block.
|
|
96
|
-
|
|
97
|
-
*Travis*
|
|
98
|
-
|
|
99
|
-
The [Jektify](https://github.com/jektify/jektify) uses [Travis](travis-ci.org) to do the gem tests, you should configure the Ruby version in `.travis.yml` (hidden) if necessary.
|
|
100
|
-
|
|
101
|
-
The "`bin/travis`" file will be the file that [Travis](travis-ci.org) will use to perform the script tests, in this file you must change the Jektify version in the variable "`APP__VERSION`" to the version that the Jekyll test project will use [Jektify](https://github.com/jektify/jektify).
|
|
102
|
-
|
|
103
73
|
## Contributing
|
|
104
74
|
|
|
105
75
|
Bug reports and pull requests are welcome on GitHub at https://github.com/jektify/jektify. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/_config.yml
CHANGED
|
@@ -19,3 +19,318 @@ jektify:
|
|
|
19
19
|
text: |
|
|
20
20
|
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
21
21
|
To listen to the full song, open your Spotify and start these musics.
|
|
22
|
+
|
|
23
|
+
jektify:
|
|
24
|
+
enable: true
|
|
25
|
+
open: true
|
|
26
|
+
toggle:
|
|
27
|
+
enable: true
|
|
28
|
+
spotify:
|
|
29
|
+
user: # "you_user_spotify"
|
|
30
|
+
text: "See me no Spotify"
|
|
31
|
+
sass:
|
|
32
|
+
jekyll: true
|
|
33
|
+
other:
|
|
34
|
+
dir: "way/to/your/SASS"
|
|
35
|
+
title:
|
|
36
|
+
enable: false
|
|
37
|
+
text: "Music name"
|
|
38
|
+
description:
|
|
39
|
+
enable: false
|
|
40
|
+
text: |
|
|
41
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
42
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
43
|
+
|
|
44
|
+
jektify:
|
|
45
|
+
enable: true
|
|
46
|
+
open: true
|
|
47
|
+
toggle:
|
|
48
|
+
enable: true
|
|
49
|
+
spotify:
|
|
50
|
+
user: # "you_user_spotify"
|
|
51
|
+
text: "See me no Spotify"
|
|
52
|
+
sass:
|
|
53
|
+
jekyll: true
|
|
54
|
+
other:
|
|
55
|
+
dir: "way/to/your/SASS"
|
|
56
|
+
title:
|
|
57
|
+
enable: false
|
|
58
|
+
text: "Music name"
|
|
59
|
+
description:
|
|
60
|
+
enable: false
|
|
61
|
+
text: |
|
|
62
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
63
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
64
|
+
|
|
65
|
+
jektify:
|
|
66
|
+
enable: true
|
|
67
|
+
open: true
|
|
68
|
+
toggle:
|
|
69
|
+
enable: true
|
|
70
|
+
spotify:
|
|
71
|
+
user: # "you_user_spotify"
|
|
72
|
+
text: "See me no Spotify"
|
|
73
|
+
sass:
|
|
74
|
+
jekyll: true
|
|
75
|
+
other:
|
|
76
|
+
dir: "way/to/your/SASS"
|
|
77
|
+
title:
|
|
78
|
+
enable: false
|
|
79
|
+
text: "Music name"
|
|
80
|
+
description:
|
|
81
|
+
enable: false
|
|
82
|
+
text: |
|
|
83
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
84
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
85
|
+
|
|
86
|
+
jektify:
|
|
87
|
+
enable: true
|
|
88
|
+
open: true
|
|
89
|
+
toggle:
|
|
90
|
+
enable: true
|
|
91
|
+
spotify:
|
|
92
|
+
user: # "you_user_spotify"
|
|
93
|
+
text: "See me no Spotify"
|
|
94
|
+
sass:
|
|
95
|
+
jekyll: true
|
|
96
|
+
other:
|
|
97
|
+
dir: "way/to/your/SASS"
|
|
98
|
+
title:
|
|
99
|
+
enable: false
|
|
100
|
+
text: "Music name"
|
|
101
|
+
description:
|
|
102
|
+
enable: false
|
|
103
|
+
text: |
|
|
104
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
105
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
106
|
+
|
|
107
|
+
jektify:
|
|
108
|
+
enable: true
|
|
109
|
+
open: true
|
|
110
|
+
toggle:
|
|
111
|
+
enable: true
|
|
112
|
+
spotify:
|
|
113
|
+
user: # "you_user_spotify"
|
|
114
|
+
text: "See me no Spotify"
|
|
115
|
+
sass:
|
|
116
|
+
jekyll: true
|
|
117
|
+
other:
|
|
118
|
+
dir: "way/to/your/SASS"
|
|
119
|
+
title:
|
|
120
|
+
enable: false
|
|
121
|
+
text: "Music name"
|
|
122
|
+
description:
|
|
123
|
+
enable: false
|
|
124
|
+
text: |
|
|
125
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
126
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
127
|
+
|
|
128
|
+
jektify:
|
|
129
|
+
enable: true
|
|
130
|
+
open: true
|
|
131
|
+
toggle:
|
|
132
|
+
enable: true
|
|
133
|
+
spotify:
|
|
134
|
+
user: # "you_user_spotify"
|
|
135
|
+
text: "See me no Spotify"
|
|
136
|
+
sass:
|
|
137
|
+
jekyll: true
|
|
138
|
+
other:
|
|
139
|
+
dir: "way/to/your/SASS"
|
|
140
|
+
title:
|
|
141
|
+
enable: false
|
|
142
|
+
text: "Music name"
|
|
143
|
+
description:
|
|
144
|
+
enable: false
|
|
145
|
+
text: |
|
|
146
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
147
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
148
|
+
|
|
149
|
+
jektify:
|
|
150
|
+
enable: true
|
|
151
|
+
open: true
|
|
152
|
+
toggle:
|
|
153
|
+
enable: true
|
|
154
|
+
spotify:
|
|
155
|
+
user: # "you_user_spotify"
|
|
156
|
+
text: "See me no Spotify"
|
|
157
|
+
sass:
|
|
158
|
+
jekyll: true
|
|
159
|
+
other:
|
|
160
|
+
dir: "way/to/your/SASS"
|
|
161
|
+
title:
|
|
162
|
+
enable: false
|
|
163
|
+
text: "Music name"
|
|
164
|
+
description:
|
|
165
|
+
enable: false
|
|
166
|
+
text: |
|
|
167
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
168
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
169
|
+
|
|
170
|
+
jektify:
|
|
171
|
+
enable: true
|
|
172
|
+
open: true
|
|
173
|
+
toggle:
|
|
174
|
+
enable: true
|
|
175
|
+
spotify:
|
|
176
|
+
user: # "you_user_spotify"
|
|
177
|
+
text: "See me no Spotify"
|
|
178
|
+
sass:
|
|
179
|
+
jekyll: true
|
|
180
|
+
other:
|
|
181
|
+
dir: "way/to/your/SASS"
|
|
182
|
+
title:
|
|
183
|
+
enable: false
|
|
184
|
+
text: "Music name"
|
|
185
|
+
description:
|
|
186
|
+
enable: false
|
|
187
|
+
text: |
|
|
188
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
189
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
190
|
+
|
|
191
|
+
jektify:
|
|
192
|
+
enable: true
|
|
193
|
+
open: true
|
|
194
|
+
toggle:
|
|
195
|
+
enable: true
|
|
196
|
+
spotify:
|
|
197
|
+
user: # "you_user_spotify"
|
|
198
|
+
text: "See me no Spotify"
|
|
199
|
+
sass:
|
|
200
|
+
jekyll: true
|
|
201
|
+
other:
|
|
202
|
+
dir: "way/to/your/SASS"
|
|
203
|
+
title:
|
|
204
|
+
enable: false
|
|
205
|
+
text: "Music name"
|
|
206
|
+
description:
|
|
207
|
+
enable: false
|
|
208
|
+
text: |
|
|
209
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
210
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
211
|
+
|
|
212
|
+
jektify:
|
|
213
|
+
enable: true
|
|
214
|
+
open: true
|
|
215
|
+
toggle:
|
|
216
|
+
enable: true
|
|
217
|
+
spotify:
|
|
218
|
+
user: # "you_user_spotify"
|
|
219
|
+
text: "See me no Spotify"
|
|
220
|
+
sass:
|
|
221
|
+
jekyll: true
|
|
222
|
+
other:
|
|
223
|
+
dir: "way/to/your/SASS"
|
|
224
|
+
title:
|
|
225
|
+
enable: false
|
|
226
|
+
text: "Music name"
|
|
227
|
+
description:
|
|
228
|
+
enable: false
|
|
229
|
+
text: |
|
|
230
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
231
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
232
|
+
|
|
233
|
+
jektify:
|
|
234
|
+
enable: true
|
|
235
|
+
open: true
|
|
236
|
+
toggle:
|
|
237
|
+
enable: true
|
|
238
|
+
spotify:
|
|
239
|
+
user: # "you_user_spotify"
|
|
240
|
+
text: "See me no Spotify"
|
|
241
|
+
sass:
|
|
242
|
+
jekyll: true
|
|
243
|
+
other:
|
|
244
|
+
dir: "way/to/your/SASS"
|
|
245
|
+
title:
|
|
246
|
+
enable: false
|
|
247
|
+
text: "Music name"
|
|
248
|
+
description:
|
|
249
|
+
enable: false
|
|
250
|
+
text: |
|
|
251
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
252
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
253
|
+
|
|
254
|
+
jektify:
|
|
255
|
+
enable: true
|
|
256
|
+
open: true
|
|
257
|
+
toggle:
|
|
258
|
+
enable: true
|
|
259
|
+
spotify:
|
|
260
|
+
user: # "you_user_spotify"
|
|
261
|
+
text: "See me no Spotify"
|
|
262
|
+
sass:
|
|
263
|
+
jekyll: true
|
|
264
|
+
other:
|
|
265
|
+
dir: "way/to/your/SASS"
|
|
266
|
+
title:
|
|
267
|
+
enable: false
|
|
268
|
+
text: "Music name"
|
|
269
|
+
description:
|
|
270
|
+
enable: false
|
|
271
|
+
text: |
|
|
272
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
273
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
274
|
+
|
|
275
|
+
jektify:
|
|
276
|
+
enable: true
|
|
277
|
+
open: true
|
|
278
|
+
toggle:
|
|
279
|
+
enable: true
|
|
280
|
+
spotify:
|
|
281
|
+
user: # "you_user_spotify"
|
|
282
|
+
text: "See me no Spotify"
|
|
283
|
+
sass:
|
|
284
|
+
jekyll: true
|
|
285
|
+
other:
|
|
286
|
+
dir: "way/to/your/SASS"
|
|
287
|
+
title:
|
|
288
|
+
enable: false
|
|
289
|
+
text: "Music name"
|
|
290
|
+
description:
|
|
291
|
+
enable: false
|
|
292
|
+
text: |
|
|
293
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
294
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
295
|
+
|
|
296
|
+
jektify:
|
|
297
|
+
enable: true
|
|
298
|
+
open: true
|
|
299
|
+
toggle:
|
|
300
|
+
enable: true
|
|
301
|
+
spotify:
|
|
302
|
+
user: # "you_user_spotify"
|
|
303
|
+
text: "See me no Spotify"
|
|
304
|
+
sass:
|
|
305
|
+
jekyll: true
|
|
306
|
+
other:
|
|
307
|
+
dir: "way/to/your/SASS"
|
|
308
|
+
title:
|
|
309
|
+
enable: false
|
|
310
|
+
text: "Music name"
|
|
311
|
+
description:
|
|
312
|
+
enable: false
|
|
313
|
+
text: |
|
|
314
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
315
|
+
To listen to the full song, open your Spotify and start these musics.
|
|
316
|
+
|
|
317
|
+
jektify:
|
|
318
|
+
enable: true
|
|
319
|
+
open: true
|
|
320
|
+
toggle:
|
|
321
|
+
enable: true
|
|
322
|
+
spotify:
|
|
323
|
+
user: # "you_user_spotify"
|
|
324
|
+
text: "See me no Spotify"
|
|
325
|
+
sass:
|
|
326
|
+
jekyll: true
|
|
327
|
+
other:
|
|
328
|
+
dir: "way/to/your/SASS"
|
|
329
|
+
title:
|
|
330
|
+
enable: false
|
|
331
|
+
text: "Music name"
|
|
332
|
+
description:
|
|
333
|
+
enable: false
|
|
334
|
+
text: |
|
|
335
|
+
Jekyll plugin to generate html snippets for embedding Spotify Musics.
|
|
336
|
+
To listen to the full song, open your Spotify and start these musics.
|