Skip to content

Commit 8e961a1

Browse files
committed
Merge branch 'al-folio-main'
2 parents 4896e3a + c5d0e92 commit 8e961a1

File tree

4 files changed

+39
-18
lines changed

4 files changed

+39
-18
lines changed

Gemfile.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ GEM
3939
fast-stemmer (~> 1.0)
4040
matrix (~> 0.4)
4141
colorator (1.1.0)
42-
concurrent-ruby (1.3.4)
42+
concurrent-ruby (1.3.5)
4343
connection_pool (2.5.0)
4444
crass (1.0.6)
4545
csl (1.6.0)
@@ -59,7 +59,7 @@ GEM
5959
eventmachine (1.2.7)
6060
execjs (2.10.0)
6161
fast-stemmer (1.0.2)
62-
feedjira (3.2.3)
62+
feedjira (3.2.4)
6363
loofah (>= 2.3.1, < 3)
6464
sax-machine (>= 1.0, < 2)
6565
ffi (1.17.1-aarch64-linux-gnu)
@@ -72,19 +72,19 @@ GEM
7272
ffi (1.17.1-x86_64-linux-musl)
7373
forwardable-extended (2.6.0)
7474
gemoji (4.1.0)
75-
google-protobuf (4.29.2)
75+
google-protobuf (4.29.3)
7676
bigdecimal
7777
rake (>= 13)
78-
google-protobuf (4.29.2-aarch64-linux)
78+
google-protobuf (4.29.3-aarch64-linux)
7979
bigdecimal
8080
rake (>= 13)
81-
google-protobuf (4.29.2-arm64-darwin)
81+
google-protobuf (4.29.3-arm64-darwin)
8282
bigdecimal
8383
rake (>= 13)
84-
google-protobuf (4.29.2-x86_64-darwin)
84+
google-protobuf (4.29.3-x86_64-darwin)
8585
bigdecimal
8686
rake (>= 13)
87-
google-protobuf (4.29.2-x86_64-linux)
87+
google-protobuf (4.29.3-x86_64-linux)
8888
bigdecimal
8989
rake (>= 13)
9090
html-pipeline (2.14.3)
@@ -171,7 +171,7 @@ GEM
171171
listen (3.9.0)
172172
rb-fsevent (~> 0.10, >= 0.10.3)
173173
rb-inotify (~> 0.9, >= 0.9.10)
174-
logger (1.6.4)
174+
logger (1.6.5)
175175
loofah (2.24.0)
176176
crass (~> 1.0.2)
177177
nokogiri (>= 1.12.0)
@@ -212,21 +212,21 @@ GEM
212212
rexml (3.4.0)
213213
rouge (4.5.1)
214214
safe_yaml (1.0.5)
215-
sass-embedded (1.83.1-aarch64-linux-gnu)
215+
sass-embedded (1.83.4-aarch64-linux-gnu)
216216
google-protobuf (~> 4.29)
217-
sass-embedded (1.83.1-aarch64-linux-musl)
217+
sass-embedded (1.83.4-aarch64-linux-musl)
218218
google-protobuf (~> 4.29)
219-
sass-embedded (1.83.1-arm-linux-gnueabihf)
219+
sass-embedded (1.83.4-arm-linux-gnueabihf)
220220
google-protobuf (~> 4.29)
221-
sass-embedded (1.83.1-arm-linux-musleabihf)
221+
sass-embedded (1.83.4-arm-linux-musleabihf)
222222
google-protobuf (~> 4.29)
223-
sass-embedded (1.83.1-arm64-darwin)
223+
sass-embedded (1.83.4-arm64-darwin)
224224
google-protobuf (~> 4.29)
225-
sass-embedded (1.83.1-x86_64-darwin)
225+
sass-embedded (1.83.4-x86_64-darwin)
226226
google-protobuf (~> 4.29)
227-
sass-embedded (1.83.1-x86_64-linux-gnu)
227+
sass-embedded (1.83.4-x86_64-linux-gnu)
228228
google-protobuf (~> 4.29)
229-
sass-embedded (1.83.1-x86_64-linux-musl)
229+
sass-embedded (1.83.4-x86_64-linux-musl)
230230
google-protobuf (~> 4.29)
231231
sax-machine (1.3.2)
232232
securerandom (0.4.1)

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ If you installed **multi-language-al-folio** as described above, you can manuall
211211
# Assuming the current directory is <your-repo-name>
212212
$ git remote add upstream https://github.com/george-gca/multi-language-al-folio.git
213213
$ git fetch upstream
214-
$ git rebase v1.13.2
214+
$ git rebase v1.13.4
215215
```
216216

217217
If you have extensively customized a previous version, it might be trickier to upgrade.

assets/js/mathjax-setup.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
window.MathJax = {
22
tex: {
33
tags: "ams",
4+
inlineMath: [
5+
["$", "$"],
6+
["\\(", "\\)"],
7+
],
8+
},
9+
options: {
10+
renderActions: {
11+
addCss: [
12+
200,
13+
function (doc) {
14+
const style = document.createElement("style");
15+
style.innerHTML = `
16+
.mjx-container {
17+
color: inherit;
18+
}
19+
`;
20+
document.head.appendChild(style);
21+
},
22+
"",
23+
],
24+
},
425
},
526
};

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this file uses prebuilt image in dockerhub
22
services:
33
jekyll:
4-
image: georgegca/multi-language-al-folio:v1.13.3
4+
image: georgegca/multi-language-al-folio:v1.13.4
55
build: .
66
# uncomment these if you are having this issue with the build:
77
# /usr/local/bundle/gems/jekyll-4.3.4/lib/jekyll/site.rb:509:in `initialize': Permission denied @ rb_sysopen - /srv/jekyll/.jekyll-cache/.gitignore (Errno::EACCES)

0 commit comments

Comments
 (0)