scholarmarkdown 3.5.0 → 3.6.0
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/.ai/mcp/mcp.json +0 -0
- data/.github/workflows/build.yml +23 -0
- data/.github/workflows/integration.yml +47 -0
- data/Gemfile.lock +66 -57
- data/VERSION +1 -1
- data/bin/template/.github/workflows/deploy-gh-pages.yml +29 -0
- data/bin/template/Gemfile +2 -1
- data/bin/template/Gemfile.lock +251 -0
- data/bin/template/Guardfile +7 -0
- data/bin/template/config.ru +1 -1
- data/bin/template/content/styles/lncs.scss +4 -1
- data/renovate.json +39 -0
- data/scholarmarkdown.gemspec +9 -3
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1871dcbd843a7d758a3ae00d06bf26915e7b967f8bca20e7c4c2c1b7983ae50
|
|
4
|
+
data.tar.gz: ec8af63c0256cad25c85a1afd71c30ef99cb1e97cf8c115f8d08131119b576c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31c4549f966231e426917deab5f4ed8bbee81e3a1bd8f6de1c7083701d7b60d660081867cb0114032c185a4ebf9609dacce4bddbec89b15dd073b40c7171fcb9
|
|
7
|
+
data.tar.gz: 53ba1f267214e64084a3df3329c5a8c5db6a289fafc135644f9117558951d524a288ab7356d68b93fdcdb219979196c7a5f181c62e1c21d23806ac60a5020bad
|
data/.ai/mcp/mcp.json
ADDED
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Build
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
concurrency:
|
|
6
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
7
|
+
cancel-in-progress: true
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
ruby-version: ['3.2', '3.3', '3.4', '4.0']
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
- uses: ruby/setup-ruby@v1
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
23
|
+
bundler-cache: true
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Integration
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
concurrency:
|
|
6
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
7
|
+
cancel-in-progress: true
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
integration:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
ruby-version: ['3.2', '3.3', '3.4', '4.0']
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
- uses: ruby/setup-ruby@v1
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
23
|
+
bundler-cache: true
|
|
24
|
+
- name: Build and install gem
|
|
25
|
+
run: |
|
|
26
|
+
gem build scholarmarkdown.gemspec
|
|
27
|
+
gem install scholarmarkdown-*.gem --no-document
|
|
28
|
+
- name: Initialize ScholarMarkdown article
|
|
29
|
+
run: generate-scholarmarkdown my-article
|
|
30
|
+
- name: Install article dependencies
|
|
31
|
+
run: bundle install
|
|
32
|
+
working-directory: my-article
|
|
33
|
+
- name: Build article
|
|
34
|
+
run: bundle exec nanoc compile
|
|
35
|
+
working-directory: my-article
|
|
36
|
+
- name: Test development mode
|
|
37
|
+
run: |
|
|
38
|
+
rm -f guard.log
|
|
39
|
+
bundle exec guard --no-interactions > guard.log 2>&1 &
|
|
40
|
+
GUARD_PID=$!
|
|
41
|
+
sleep 5
|
|
42
|
+
cat guard.log
|
|
43
|
+
if grep -q ' - ERROR - ' guard.log; then exit 1; fi
|
|
44
|
+
kill -0 $GUARD_PID
|
|
45
|
+
kill $GUARD_PID
|
|
46
|
+
wait $GUARD_PID || true
|
|
47
|
+
working-directory: my-article
|
data/Gemfile.lock
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
activesupport (8.
|
|
4
|
+
activesupport (8.1.2)
|
|
5
5
|
base64
|
|
6
|
-
benchmark (>= 0.3)
|
|
7
6
|
bigdecimal
|
|
8
7
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
9
8
|
connection_pool (>= 2.2.5)
|
|
10
9
|
drb
|
|
11
10
|
i18n (>= 1.6, < 2)
|
|
11
|
+
json
|
|
12
12
|
logger (>= 1.4.2)
|
|
13
13
|
minitest (>= 5.1)
|
|
14
14
|
securerandom (>= 0.3)
|
|
15
15
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
16
16
|
uri (>= 0.13.1)
|
|
17
|
-
addressable (2.8.
|
|
18
|
-
public_suffix (>= 2.0.2, <
|
|
19
|
-
base64 (0.
|
|
20
|
-
benchmark (0.4.0)
|
|
17
|
+
addressable (2.8.9)
|
|
18
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
19
|
+
base64 (0.3.0)
|
|
21
20
|
bibmarkdown (2.0.0)
|
|
22
21
|
citeproc-ruby
|
|
23
22
|
csl-styles
|
|
24
|
-
bibtex-ruby (6.
|
|
23
|
+
bibtex-ruby (6.2.0)
|
|
25
24
|
latex-decode (~> 0.0)
|
|
25
|
+
logger (~> 1.7)
|
|
26
26
|
racc (~> 1.7)
|
|
27
|
-
bigdecimal (
|
|
27
|
+
bigdecimal (4.0.1)
|
|
28
28
|
builder (3.3.0)
|
|
29
29
|
citeproc (1.1.0)
|
|
30
30
|
date
|
|
@@ -33,13 +33,13 @@ GEM
|
|
|
33
33
|
namae (~> 1.0)
|
|
34
34
|
observer (< 1.0)
|
|
35
35
|
open-uri (< 1.0)
|
|
36
|
-
citeproc-ruby (2.1.
|
|
36
|
+
citeproc-ruby (2.1.8)
|
|
37
37
|
citeproc (~> 1.0, >= 1.0.9)
|
|
38
38
|
csl (~> 2.0)
|
|
39
39
|
observer (< 1.0)
|
|
40
|
-
concurrent-ruby (1.3.
|
|
41
|
-
connection_pool (
|
|
42
|
-
csl (2.1
|
|
40
|
+
concurrent-ruby (1.3.6)
|
|
41
|
+
connection_pool (3.0.2)
|
|
42
|
+
csl (2.2.1)
|
|
43
43
|
forwardable (~> 1.3)
|
|
44
44
|
namae (~> 1.2)
|
|
45
45
|
open-uri (< 1.0)
|
|
@@ -47,14 +47,15 @@ GEM
|
|
|
47
47
|
set (~> 1.1)
|
|
48
48
|
singleton (< 1.0)
|
|
49
49
|
time (< 1.0)
|
|
50
|
-
csl-styles (2.0.
|
|
50
|
+
csl-styles (2.0.2)
|
|
51
51
|
csl (~> 2.0)
|
|
52
|
-
date (3.
|
|
52
|
+
date (3.5.1)
|
|
53
53
|
descendants_tracker (0.0.4)
|
|
54
54
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
55
|
-
drb (2.2.
|
|
55
|
+
drb (2.2.3)
|
|
56
|
+
erb (6.0.2)
|
|
56
57
|
execjs (2.10.0)
|
|
57
|
-
faraday (1.10.
|
|
58
|
+
faraday (1.10.5)
|
|
58
59
|
faraday-em_http (~> 1.0)
|
|
59
60
|
faraday-em_synchrony (~> 1.0)
|
|
60
61
|
faraday-excon (~> 1.1)
|
|
@@ -67,21 +68,21 @@ GEM
|
|
|
67
68
|
faraday-retry (~> 1.0)
|
|
68
69
|
ruby2_keywords (>= 0.0.4)
|
|
69
70
|
faraday-em_http (1.0.0)
|
|
70
|
-
faraday-em_synchrony (1.0.
|
|
71
|
+
faraday-em_synchrony (1.0.1)
|
|
71
72
|
faraday-excon (1.1.0)
|
|
72
73
|
faraday-httpclient (1.0.1)
|
|
73
|
-
faraday-multipart (1.
|
|
74
|
+
faraday-multipart (1.2.0)
|
|
74
75
|
multipart-post (~> 2.0)
|
|
75
76
|
faraday-net_http (1.0.2)
|
|
76
77
|
faraday-net_http_persistent (1.2.0)
|
|
77
78
|
faraday-patron (1.0.0)
|
|
78
79
|
faraday-rack (1.0.0)
|
|
79
|
-
faraday-retry (1.0.
|
|
80
|
-
forwardable (1.
|
|
81
|
-
git (3.
|
|
80
|
+
faraday-retry (1.0.4)
|
|
81
|
+
forwardable (1.4.0)
|
|
82
|
+
git (4.3.1)
|
|
82
83
|
activesupport (>= 5.0)
|
|
83
84
|
addressable (~> 2.8)
|
|
84
|
-
process_executer (~>
|
|
85
|
+
process_executer (~> 4.0)
|
|
85
86
|
rchardet (~> 1.9)
|
|
86
87
|
github_api (0.19.0)
|
|
87
88
|
addressable (~> 2.4)
|
|
@@ -92,10 +93,10 @@ GEM
|
|
|
92
93
|
hashie (3.6.0)
|
|
93
94
|
highline (3.1.2)
|
|
94
95
|
reline
|
|
95
|
-
i18n (1.14.
|
|
96
|
+
i18n (1.14.8)
|
|
96
97
|
concurrent-ruby (~> 1.0)
|
|
97
|
-
io-console (0.8.
|
|
98
|
-
json (2.
|
|
98
|
+
io-console (0.8.2)
|
|
99
|
+
json (2.19.2)
|
|
99
100
|
juwelier (2.4.9)
|
|
100
101
|
builder
|
|
101
102
|
bundler
|
|
@@ -108,18 +109,18 @@ GEM
|
|
|
108
109
|
rake
|
|
109
110
|
rdoc
|
|
110
111
|
semver2
|
|
111
|
-
jwt (2.10.
|
|
112
|
+
jwt (2.10.2)
|
|
112
113
|
base64
|
|
113
114
|
kamelcase (0.0.2)
|
|
114
115
|
semver2 (~> 3)
|
|
115
116
|
katex (0.10.0)
|
|
116
117
|
execjs (~> 2.8)
|
|
117
|
-
kramdown (2.5.
|
|
118
|
-
rexml (>= 3.
|
|
118
|
+
kramdown (2.5.2)
|
|
119
|
+
rexml (>= 3.4.4)
|
|
119
120
|
kramdown-math-sskatex (1.0.0)
|
|
120
121
|
kramdown (~> 2.0)
|
|
121
122
|
sskatex (>= 0.9.37)
|
|
122
|
-
latex-decode (0.4.
|
|
123
|
+
latex-decode (0.4.2)
|
|
123
124
|
libv8-node (16.10.0.0)
|
|
124
125
|
libv8-node (16.10.0.0-aarch64-linux)
|
|
125
126
|
libv8-node (16.10.0.0-arm64-darwin)
|
|
@@ -127,32 +128,34 @@ GEM
|
|
|
127
128
|
libv8-node (16.10.0.0-x86_64-darwin-19)
|
|
128
129
|
libv8-node (16.10.0.0-x86_64-linux)
|
|
129
130
|
libv8-node (16.10.0.0-x86_64-linux-musl)
|
|
130
|
-
logger (1.
|
|
131
|
+
logger (1.7.0)
|
|
131
132
|
mini_racer (0.6.3)
|
|
132
133
|
libv8-node (~> 16.10.0.0)
|
|
133
|
-
minitest (
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
minitest (6.0.2)
|
|
135
|
+
drb (~> 2.0)
|
|
136
|
+
prism (~> 1.5)
|
|
137
|
+
multi_json (1.19.1)
|
|
138
|
+
multi_xml (0.8.1)
|
|
139
|
+
bigdecimal (>= 3.1, < 5)
|
|
137
140
|
multipart-post (2.4.1)
|
|
138
141
|
namae (1.2.0)
|
|
139
142
|
racc (~> 1.7)
|
|
140
|
-
nio4r (2.7.
|
|
141
|
-
nokogiri (1.
|
|
143
|
+
nio4r (2.7.5)
|
|
144
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
142
145
|
racc (~> 1.4)
|
|
143
|
-
nokogiri (1.
|
|
146
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
144
147
|
racc (~> 1.4)
|
|
145
|
-
nokogiri (1.
|
|
148
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
146
149
|
racc (~> 1.4)
|
|
147
|
-
nokogiri (1.
|
|
150
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
148
151
|
racc (~> 1.4)
|
|
149
|
-
nokogiri (1.
|
|
152
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
150
153
|
racc (~> 1.4)
|
|
151
|
-
nokogiri (1.
|
|
154
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
152
155
|
racc (~> 1.4)
|
|
153
|
-
nokogiri (1.
|
|
156
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
154
157
|
racc (~> 1.4)
|
|
155
|
-
nokogiri (1.
|
|
158
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
156
159
|
racc (~> 1.4)
|
|
157
160
|
oauth2 (1.4.11)
|
|
158
161
|
faraday (>= 0.17.3, < 3.0)
|
|
@@ -165,36 +168,42 @@ GEM
|
|
|
165
168
|
stringio
|
|
166
169
|
time
|
|
167
170
|
uri
|
|
168
|
-
|
|
169
|
-
|
|
171
|
+
prism (1.9.0)
|
|
172
|
+
process_executer (4.0.2)
|
|
173
|
+
track_open_instances (~> 0.1)
|
|
174
|
+
psych (5.3.1)
|
|
170
175
|
date
|
|
171
176
|
stringio
|
|
172
|
-
public_suffix (
|
|
173
|
-
puma (
|
|
177
|
+
public_suffix (7.0.5)
|
|
178
|
+
puma (7.2.0)
|
|
174
179
|
nio4r (~> 2.0)
|
|
175
180
|
racc (1.8.1)
|
|
176
|
-
rack (3.
|
|
177
|
-
rake (13.
|
|
178
|
-
rchardet (1.
|
|
179
|
-
rdoc (
|
|
181
|
+
rack (3.2.5)
|
|
182
|
+
rake (13.3.1)
|
|
183
|
+
rchardet (1.10.0)
|
|
184
|
+
rdoc (7.2.0)
|
|
185
|
+
erb
|
|
180
186
|
psych (>= 4.0.0)
|
|
181
|
-
|
|
187
|
+
tsort
|
|
188
|
+
reline (0.6.3)
|
|
182
189
|
io-console (~> 0.5)
|
|
183
|
-
rexml (3.4.
|
|
190
|
+
rexml (3.4.4)
|
|
184
191
|
ruby2_keywords (0.0.5)
|
|
185
192
|
securerandom (0.4.1)
|
|
186
193
|
semver2 (3.4.2)
|
|
187
|
-
set (1.1.
|
|
194
|
+
set (1.1.2)
|
|
188
195
|
singleton (0.3.0)
|
|
189
196
|
sskatex (0.9.39)
|
|
190
197
|
execjs (~> 2.7)
|
|
191
|
-
stringio (3.
|
|
198
|
+
stringio (3.2.0)
|
|
192
199
|
thread_safe (0.3.6)
|
|
193
|
-
time (0.4.
|
|
200
|
+
time (0.4.2)
|
|
194
201
|
date
|
|
202
|
+
track_open_instances (0.1.15)
|
|
203
|
+
tsort (0.2.0)
|
|
195
204
|
tzinfo (2.0.6)
|
|
196
205
|
concurrent-ruby (~> 1.0)
|
|
197
|
-
uri (1.
|
|
206
|
+
uri (1.1.1)
|
|
198
207
|
|
|
199
208
|
PLATFORMS
|
|
200
209
|
aarch64-linux
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.6.0
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Build and Deploy
|
|
2
|
+
on: [push]
|
|
3
|
+
jobs:
|
|
4
|
+
build-and-deploy:
|
|
5
|
+
runs-on: ubuntu-latest
|
|
6
|
+
steps:
|
|
7
|
+
- name: Checkout 🛎️
|
|
8
|
+
uses: actions/checkout@v2.3.1
|
|
9
|
+
with:
|
|
10
|
+
persist-credentials: false
|
|
11
|
+
|
|
12
|
+
- name: Setup Ruby ✨
|
|
13
|
+
uses: ruby/setup-ruby@v1
|
|
14
|
+
with:
|
|
15
|
+
ruby-version: '3.3'
|
|
16
|
+
bundler-cache: true
|
|
17
|
+
|
|
18
|
+
- name: Install and Build 🔧
|
|
19
|
+
run: |
|
|
20
|
+
bundle exec nanoc compile
|
|
21
|
+
bundle exec nanoc check internal_links mixed_content stale
|
|
22
|
+
|
|
23
|
+
- name: Deploy 🚀
|
|
24
|
+
uses: JamesIves/github-pages-deploy-action@3.6.2
|
|
25
|
+
with:
|
|
26
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
27
|
+
BRANCH: gh-pages
|
|
28
|
+
FOLDER: output
|
|
29
|
+
CLEAN: true
|
data/bin/template/Gemfile
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
3
|
gem 'nanoc', '~> 4.7'
|
|
4
|
+
gem "csv", "~> 3.3"
|
|
4
5
|
|
|
5
6
|
gem 'scholarmarkdown'
|
|
6
7
|
|
|
@@ -23,7 +24,7 @@ group :development do
|
|
|
23
24
|
gem 'guard-nanoc', '~> 2.1.2'
|
|
24
25
|
gem 'guard-rack'
|
|
25
26
|
gem 'guard-livereload'
|
|
26
|
-
gem 'rack', '
|
|
27
|
+
gem 'rack', '>= 3.1.20'
|
|
27
28
|
gem 'rackup'
|
|
28
29
|
gem 'rack-livereload'
|
|
29
30
|
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
addressable (2.8.9)
|
|
5
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
6
|
+
base64 (0.3.0)
|
|
7
|
+
bibmarkdown (2.0.0)
|
|
8
|
+
citeproc-ruby
|
|
9
|
+
csl-styles
|
|
10
|
+
bibtex-ruby (6.2.0)
|
|
11
|
+
latex-decode (~> 0.0)
|
|
12
|
+
logger (~> 1.7)
|
|
13
|
+
racc (~> 1.7)
|
|
14
|
+
citeproc (1.1.0)
|
|
15
|
+
date
|
|
16
|
+
forwardable
|
|
17
|
+
json
|
|
18
|
+
namae (~> 1.0)
|
|
19
|
+
observer (< 1.0)
|
|
20
|
+
open-uri (< 1.0)
|
|
21
|
+
citeproc-ruby (2.1.8)
|
|
22
|
+
citeproc (~> 1.0, >= 1.0.9)
|
|
23
|
+
csl (~> 2.0)
|
|
24
|
+
observer (< 1.0)
|
|
25
|
+
coderay (1.1.3)
|
|
26
|
+
concurrent-ruby (1.3.6)
|
|
27
|
+
cri (2.15.12)
|
|
28
|
+
csl (2.2.1)
|
|
29
|
+
forwardable (~> 1.3)
|
|
30
|
+
namae (~> 1.2)
|
|
31
|
+
open-uri (< 1.0)
|
|
32
|
+
rexml (~> 3.0)
|
|
33
|
+
set (~> 1.1)
|
|
34
|
+
singleton (< 1.0)
|
|
35
|
+
time (< 1.0)
|
|
36
|
+
csl-styles (2.0.2)
|
|
37
|
+
csl (~> 2.0)
|
|
38
|
+
csv (3.3.5)
|
|
39
|
+
date (3.5.1)
|
|
40
|
+
ddmetrics (1.1.0)
|
|
41
|
+
ddplugin (1.0.3)
|
|
42
|
+
diff-lcs (1.6.2)
|
|
43
|
+
em-websocket (0.5.3)
|
|
44
|
+
eventmachine (>= 0.12.9)
|
|
45
|
+
http_parser.rb (~> 0)
|
|
46
|
+
eventmachine (1.2.7)
|
|
47
|
+
execjs (2.10.0)
|
|
48
|
+
ffi (1.17.3-x86_64-linux-gnu)
|
|
49
|
+
formatador (1.2.3)
|
|
50
|
+
reline
|
|
51
|
+
forwardable (1.4.0)
|
|
52
|
+
guard (2.20.1)
|
|
53
|
+
formatador (>= 0.2.4)
|
|
54
|
+
listen (>= 2.7, < 4.0)
|
|
55
|
+
logger (~> 1.6)
|
|
56
|
+
lumberjack (>= 1.0.12, < 2.0)
|
|
57
|
+
nenv (~> 0.1)
|
|
58
|
+
notiffany (~> 0.0)
|
|
59
|
+
pry (>= 0.13.0)
|
|
60
|
+
shellany (~> 0.0)
|
|
61
|
+
thor (>= 0.18.1)
|
|
62
|
+
guard-compat (1.2.1)
|
|
63
|
+
guard-livereload (2.5.2)
|
|
64
|
+
em-websocket (~> 0.5)
|
|
65
|
+
guard (~> 2.8)
|
|
66
|
+
guard-compat (~> 1.0)
|
|
67
|
+
multi_json (~> 1.8)
|
|
68
|
+
guard-nanoc (2.1.10)
|
|
69
|
+
guard (~> 2.8)
|
|
70
|
+
guard-compat (~> 1.0)
|
|
71
|
+
nanoc-cli (~> 4.11, >= 4.11.14)
|
|
72
|
+
nanoc-core (~> 4.11, >= 4.11.14)
|
|
73
|
+
guard-rack (2.2.1)
|
|
74
|
+
ffi
|
|
75
|
+
guard (~> 2.3)
|
|
76
|
+
spoon
|
|
77
|
+
http_parser.rb (0.8.1)
|
|
78
|
+
i18n (1.0.1)
|
|
79
|
+
concurrent-ruby (~> 1.0)
|
|
80
|
+
immutable-ruby (0.2.0)
|
|
81
|
+
concurrent-ruby (~> 1.1)
|
|
82
|
+
sorted_set (~> 1.0)
|
|
83
|
+
io-console (0.8.2)
|
|
84
|
+
json (2.19.2)
|
|
85
|
+
json_schema (0.21.0)
|
|
86
|
+
katex (0.10.0)
|
|
87
|
+
execjs (~> 2.8)
|
|
88
|
+
kramdown (2.5.2)
|
|
89
|
+
rexml (>= 3.4.4)
|
|
90
|
+
kramdown-math-sskatex (1.0.0)
|
|
91
|
+
kramdown (~> 2.0)
|
|
92
|
+
sskatex (>= 0.9.37)
|
|
93
|
+
latex-decode (0.4.2)
|
|
94
|
+
libv8-node (16.10.0.0-x86_64-linux)
|
|
95
|
+
listen (3.10.0)
|
|
96
|
+
logger
|
|
97
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
98
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
99
|
+
logger (1.7.0)
|
|
100
|
+
lumberjack (1.4.2)
|
|
101
|
+
memo_wise (1.13.0)
|
|
102
|
+
method_source (1.1.0)
|
|
103
|
+
mini_racer (0.6.3)
|
|
104
|
+
libv8-node (~> 16.10.0.0)
|
|
105
|
+
multi_json (1.19.1)
|
|
106
|
+
namae (1.2.0)
|
|
107
|
+
racc (~> 1.7)
|
|
108
|
+
nanoc (4.14.7)
|
|
109
|
+
addressable (~> 2.5)
|
|
110
|
+
nanoc-checking (~> 1.0, >= 1.0.2)
|
|
111
|
+
nanoc-cli (= 4.14.7)
|
|
112
|
+
nanoc-core (= 4.14.7)
|
|
113
|
+
nanoc-deploying (~> 1.0)
|
|
114
|
+
parallel (~> 1.12)
|
|
115
|
+
tty-command (~> 0.8)
|
|
116
|
+
tty-which (~> 0.4)
|
|
117
|
+
nanoc-checking (1.0.6)
|
|
118
|
+
nanoc-cli (~> 4.12, >= 4.12.5)
|
|
119
|
+
nanoc-core (~> 4.12, >= 4.12.5)
|
|
120
|
+
nanoc-cli (4.14.7)
|
|
121
|
+
cri (~> 2.15)
|
|
122
|
+
diff-lcs (~> 1.3)
|
|
123
|
+
logger (~> 1.6)
|
|
124
|
+
nanoc-core (= 4.14.7)
|
|
125
|
+
pry
|
|
126
|
+
zeitwerk (~> 2.1)
|
|
127
|
+
nanoc-core (4.14.7)
|
|
128
|
+
base64 (~> 0.2)
|
|
129
|
+
concurrent-ruby (~> 1.1)
|
|
130
|
+
ddmetrics (~> 1.0)
|
|
131
|
+
ddplugin (~> 1.0)
|
|
132
|
+
immutable-ruby (~> 0.1)
|
|
133
|
+
json_schema (~> 0.19)
|
|
134
|
+
memo_wise (~> 1.5)
|
|
135
|
+
slow_enumerator_tools (~> 1.0)
|
|
136
|
+
tty-platform (~> 0.2)
|
|
137
|
+
zeitwerk (~> 2.1)
|
|
138
|
+
nanoc-deploying (1.0.3)
|
|
139
|
+
nanoc-checking (~> 1.0)
|
|
140
|
+
nanoc-cli (~> 4.11, >= 4.11.15)
|
|
141
|
+
nanoc-core (~> 4.11, >= 4.11.15)
|
|
142
|
+
nenv (0.3.0)
|
|
143
|
+
nio4r (2.7.5)
|
|
144
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
145
|
+
racc (~> 1.4)
|
|
146
|
+
notiffany (0.1.3)
|
|
147
|
+
nenv (~> 0.1)
|
|
148
|
+
shellany (~> 0.0)
|
|
149
|
+
observer (0.1.2)
|
|
150
|
+
open-uri (0.5.0)
|
|
151
|
+
stringio
|
|
152
|
+
time
|
|
153
|
+
uri
|
|
154
|
+
parallel (1.27.0)
|
|
155
|
+
pastel (0.8.0)
|
|
156
|
+
tty-color (~> 0.5)
|
|
157
|
+
pry (0.16.0)
|
|
158
|
+
coderay (~> 1.1)
|
|
159
|
+
method_source (~> 1.0)
|
|
160
|
+
reline (>= 0.6.0)
|
|
161
|
+
public_suffix (7.0.5)
|
|
162
|
+
puma (7.2.0)
|
|
163
|
+
nio4r (~> 2.0)
|
|
164
|
+
racc (1.8.1)
|
|
165
|
+
rack (3.1.20)
|
|
166
|
+
rack-livereload (0.6.1)
|
|
167
|
+
rack (>= 3.0, < 3.2)
|
|
168
|
+
rackup (2.3.1)
|
|
169
|
+
rack (>= 3)
|
|
170
|
+
rb-fsevent (0.11.2)
|
|
171
|
+
rb-inotify (0.11.1)
|
|
172
|
+
ffi (~> 1.0)
|
|
173
|
+
rb-readline (0.5.5)
|
|
174
|
+
rbtree (0.4.6)
|
|
175
|
+
reline (0.6.3)
|
|
176
|
+
io-console (~> 0.5)
|
|
177
|
+
rexml (3.4.4)
|
|
178
|
+
rubypants (0.7.1)
|
|
179
|
+
sass (3.7.4)
|
|
180
|
+
sass-listen (~> 4.0.0)
|
|
181
|
+
sass-listen (4.0.0)
|
|
182
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
183
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
184
|
+
scholarmarkdown (3.5.0)
|
|
185
|
+
bibmarkdown (~> 2.0.0)
|
|
186
|
+
bibtex-ruby
|
|
187
|
+
citeproc-ruby (>= 1.1.6)
|
|
188
|
+
csl-styles
|
|
189
|
+
execjs
|
|
190
|
+
i18n
|
|
191
|
+
katex
|
|
192
|
+
kramdown-math-sskatex
|
|
193
|
+
latex-decode
|
|
194
|
+
libv8-node (= 16.10.0.0)
|
|
195
|
+
mini_racer
|
|
196
|
+
puma
|
|
197
|
+
sskatex
|
|
198
|
+
set (1.1.2)
|
|
199
|
+
shellany (0.0.1)
|
|
200
|
+
singleton (0.3.0)
|
|
201
|
+
slow_enumerator_tools (1.1.0)
|
|
202
|
+
sorted_set (1.1.0)
|
|
203
|
+
rbtree
|
|
204
|
+
spoon (0.0.6)
|
|
205
|
+
ffi
|
|
206
|
+
sskatex (0.9.39)
|
|
207
|
+
execjs (~> 2.7)
|
|
208
|
+
stringio (3.2.0)
|
|
209
|
+
thor (1.5.0)
|
|
210
|
+
time (0.4.2)
|
|
211
|
+
date
|
|
212
|
+
tty-color (0.6.0)
|
|
213
|
+
tty-command (0.10.1)
|
|
214
|
+
pastel (~> 0.8)
|
|
215
|
+
tty-platform (0.3.0)
|
|
216
|
+
tty-which (0.5.0)
|
|
217
|
+
unicode_utils (1.4.0)
|
|
218
|
+
uri (1.1.1)
|
|
219
|
+
w3c_validators (1.3.7)
|
|
220
|
+
json (>= 1.8)
|
|
221
|
+
nokogiri (~> 1.6)
|
|
222
|
+
rexml (~> 3.2)
|
|
223
|
+
zeitwerk (2.7.5)
|
|
224
|
+
|
|
225
|
+
PLATFORMS
|
|
226
|
+
x86_64-linux
|
|
227
|
+
x86_64-linux-gnu
|
|
228
|
+
|
|
229
|
+
DEPENDENCIES
|
|
230
|
+
citeproc-ruby (>= 1.1.6)
|
|
231
|
+
csl-styles
|
|
232
|
+
csv (~> 3.3)
|
|
233
|
+
guard-livereload
|
|
234
|
+
guard-nanoc (~> 2.1.2)
|
|
235
|
+
guard-rack
|
|
236
|
+
i18n (< 1.1)
|
|
237
|
+
kramdown
|
|
238
|
+
latex-decode
|
|
239
|
+
nanoc (~> 4.7)
|
|
240
|
+
rack (>= 3.1.20)
|
|
241
|
+
rack-livereload
|
|
242
|
+
rackup
|
|
243
|
+
rb-readline
|
|
244
|
+
rubypants
|
|
245
|
+
sass
|
|
246
|
+
scholarmarkdown
|
|
247
|
+
unicode_utils
|
|
248
|
+
w3c_validators (~> 1.3.1)
|
|
249
|
+
|
|
250
|
+
BUNDLED WITH
|
|
251
|
+
4.0.7
|
data/bin/template/Guardfile
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# guard-nanoc 2.1.x passes `reps: []` to FileActionPrinter.new, but
|
|
2
|
+
# nanoc-cli >= 4.14.7 removed that parameter. Absorb the stale kwarg.
|
|
3
|
+
require 'nanoc/cli'
|
|
4
|
+
::Nanoc::CLI::CompileListeners::FileActionPrinter.prepend(Module.new do
|
|
5
|
+
def initialize(**); super(); end
|
|
6
|
+
end)
|
|
7
|
+
|
|
1
8
|
guard 'rack', :port => 3000 do
|
|
2
9
|
watch 'Gemfile.lock'
|
|
3
10
|
end
|
data/bin/template/config.ru
CHANGED
|
@@ -386,9 +386,12 @@ header {
|
|
|
386
386
|
|
|
387
387
|
#affiliations {
|
|
388
388
|
list-style: none;
|
|
389
|
-
margin: 1em
|
|
389
|
+
margin: 1em auto;
|
|
390
390
|
padding: 0;
|
|
391
391
|
letter-spacing: -.1px;
|
|
392
|
+
font-size: 0.8em;
|
|
393
|
+
text-align: center;
|
|
394
|
+
width: 375px;
|
|
392
395
|
|
|
393
396
|
sup {
|
|
394
397
|
margin-right: .1em;
|
data/renovate.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": [
|
|
3
|
+
"config:base"
|
|
4
|
+
],
|
|
5
|
+
"description": "Renovate config for ScholarMarkdown. Major updates go via a PR; minor/patch updates are auto-merged when tests pass. Dependencies are checked every morning.",
|
|
6
|
+
|
|
7
|
+
"prCreation": "not-pending",
|
|
8
|
+
"stabilityDays": 1,
|
|
9
|
+
"statusCheckVerify": true,
|
|
10
|
+
"schedule": "before 7am every weekday",
|
|
11
|
+
"timezone": "Europe/Brussels",
|
|
12
|
+
"unicodeEmoji": true,
|
|
13
|
+
"vulnerabilityAlerts": {
|
|
14
|
+
"enabled": true
|
|
15
|
+
},
|
|
16
|
+
"rangeStrategy": "bump",
|
|
17
|
+
|
|
18
|
+
"packageRules": [
|
|
19
|
+
{
|
|
20
|
+
"matchManagers": ["bundler"],
|
|
21
|
+
"matchDepTypes": ["dependencies"],
|
|
22
|
+
"matchUpdateTypes": ["minor", "patch"],
|
|
23
|
+
"matchCurrentVersion": "!/^0/",
|
|
24
|
+
"automerge": true,
|
|
25
|
+
"automergeType": "branch"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"matchManagers": ["bundler"],
|
|
29
|
+
"matchDepTypes": ["devDependencies"],
|
|
30
|
+
"automerge": true,
|
|
31
|
+
"automergeType": "branch"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"matchManagers": ["github-actions"],
|
|
35
|
+
"automerge": true,
|
|
36
|
+
"automergeType": "branch"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
data/scholarmarkdown.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: scholarmarkdown 3.
|
|
5
|
+
# stub: scholarmarkdown 3.6.0 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "scholarmarkdown".freeze
|
|
9
|
-
s.version = "3.
|
|
9
|
+
s.version = "3.6.0".freeze
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Ruben Taelman".freeze]
|
|
14
|
-
s.date = "
|
|
14
|
+
s.date = "2026-03-26"
|
|
15
15
|
s.email = "rubensworks@gmail.com".freeze
|
|
16
16
|
s.executables = ["generate-scholarmarkdown".freeze]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -19,6 +19,9 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
"README.md"
|
|
20
20
|
]
|
|
21
21
|
s.files = [
|
|
22
|
+
".ai/mcp/mcp.json",
|
|
23
|
+
".github/workflows/build.yml",
|
|
24
|
+
".github/workflows/integration.yml",
|
|
22
25
|
"Gemfile",
|
|
23
26
|
"Gemfile.lock",
|
|
24
27
|
"LICENSE.txt",
|
|
@@ -26,8 +29,10 @@ Gem::Specification.new do |s|
|
|
|
26
29
|
"Rakefile",
|
|
27
30
|
"VERSION",
|
|
28
31
|
"bin/generate-scholarmarkdown",
|
|
32
|
+
"bin/template/.github/workflows/deploy-gh-pages.yml",
|
|
29
33
|
"bin/template/.gitignore",
|
|
30
34
|
"bin/template/Gemfile",
|
|
35
|
+
"bin/template/Gemfile.lock",
|
|
31
36
|
"bin/template/Guardfile",
|
|
32
37
|
"bin/template/README.md",
|
|
33
38
|
"bin/template/Rules",
|
|
@@ -75,6 +80,7 @@ Gem::Specification.new do |s|
|
|
|
75
80
|
"lib/scholarmarkdown/filter/references_to_footer.rb",
|
|
76
81
|
"lib/scholarmarkdown/preprocess/katex.rb",
|
|
77
82
|
"lib/scholarmarkdown/snippets.rb",
|
|
83
|
+
"renovate.json",
|
|
78
84
|
"scholarmarkdown.gemspec"
|
|
79
85
|
]
|
|
80
86
|
s.homepage = "http://github.com/rubensworks/ScholarMarkdown".freeze
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scholarmarkdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ruben Taelman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: puma
|
|
@@ -229,6 +229,9 @@ extra_rdoc_files:
|
|
|
229
229
|
- LICENSE.txt
|
|
230
230
|
- README.md
|
|
231
231
|
files:
|
|
232
|
+
- ".ai/mcp/mcp.json"
|
|
233
|
+
- ".github/workflows/build.yml"
|
|
234
|
+
- ".github/workflows/integration.yml"
|
|
232
235
|
- Gemfile
|
|
233
236
|
- Gemfile.lock
|
|
234
237
|
- LICENSE.txt
|
|
@@ -236,8 +239,10 @@ files:
|
|
|
236
239
|
- Rakefile
|
|
237
240
|
- VERSION
|
|
238
241
|
- bin/generate-scholarmarkdown
|
|
242
|
+
- bin/template/.github/workflows/deploy-gh-pages.yml
|
|
239
243
|
- bin/template/.gitignore
|
|
240
244
|
- bin/template/Gemfile
|
|
245
|
+
- bin/template/Gemfile.lock
|
|
241
246
|
- bin/template/Guardfile
|
|
242
247
|
- bin/template/README.md
|
|
243
248
|
- bin/template/Rules
|
|
@@ -285,6 +290,7 @@ files:
|
|
|
285
290
|
- lib/scholarmarkdown/filter/references_to_footer.rb
|
|
286
291
|
- lib/scholarmarkdown/preprocess/katex.rb
|
|
287
292
|
- lib/scholarmarkdown/snippets.rb
|
|
293
|
+
- renovate.json
|
|
288
294
|
- scholarmarkdown.gemspec
|
|
289
295
|
homepage: http://github.com/rubensworks/ScholarMarkdown
|
|
290
296
|
licenses:
|