mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
fix: build full ToC for web version
This commit is contained in:
parent
7dd4bd24ea
commit
d13c7057ab
2 changed files with 23 additions and 15 deletions
16
.github/workflows/build-and-deploy.yml
vendored
16
.github/workflows/build-and-deploy.yml
vendored
|
|
@ -3,8 +3,8 @@ name: Build and Deploy
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- feat/router # or master, depending on your default branch
|
||||
workflow_dispatch: # allows manual trigger
|
||||
- feat/router
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
@ -27,22 +27,16 @@ jobs:
|
|||
sudo apt-get update
|
||||
sudo apt-get install -y emacs-nox elpa-htmlize
|
||||
|
||||
- name: Tangle Org files
|
||||
run: |
|
||||
emacs --batch \
|
||||
--eval "(require 'org)" \
|
||||
--eval "(setq org-confirm-babel-evaluate nil)" \
|
||||
--visit=SwarselSystems.org \
|
||||
--funcall org-babel-tangle
|
||||
|
||||
- name: Export Org to HTML
|
||||
- name: Tangle files & export to HTML
|
||||
run: |
|
||||
emacs --batch \
|
||||
--eval "(require 'org)" \
|
||||
--eval "(setq org-confirm-babel-evaluate nil
|
||||
org-html-validation-link nil
|
||||
org-export-headline-levels 6
|
||||
org-export-with-broken-links 'mark)" \
|
||||
--visit=SwarselSystems.org \
|
||||
--funcall org-babel-tangle
|
||||
--funcall org-html-export-to-html
|
||||
|
||||
- name: Setup Pages
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@ I also add this javascript to add header pinning functionality to the site, usin
|
|||
attachPinBehavior(pinBtn, href, text);
|
||||
});
|
||||
|
||||
const headers = content.querySelectorAll('h2, h3, h4, h5');
|
||||
const headers = content.querySelectorAll('h2, h3, h4, h5, h6');
|
||||
headers.forEach(header => {
|
||||
const id = header.getAttribute('id');
|
||||
if (!id) return;
|
||||
|
|
@ -31433,7 +31433,7 @@ This is the stylesheet used by the [[#h:12880c64-229c-4063-9eea-387a97490676][HT
|
|||
width: calc(100vw - 300px);
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #70e1e8;
|
||||
font-weight: 500;
|
||||
margin-top: 2.2rem;
|
||||
|
|
@ -31451,6 +31451,18 @@ This is the stylesheet used by the [[#h:12880c64-229c-4063-9eea-387a97490676][HT
|
|||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1.0rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #5ec4ff;
|
||||
}
|
||||
|
|
@ -31754,7 +31766,8 @@ This is the stylesheet used by the [[#h:12880c64-229c-4063-9eea-387a97490676][HT
|
|||
h2 .toc-pin-btn,
|
||||
h3 .toc-pin-btn,
|
||||
h4 .toc-pin-btn,
|
||||
h5 .toc-pin-btn {
|
||||
h5 .toc-pin-btn,
|
||||
h6 .toc-pin-btn {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: opacity 0.2s, visibility 0.2s;
|
||||
|
|
@ -31764,7 +31777,8 @@ This is the stylesheet used by the [[#h:12880c64-229c-4063-9eea-387a97490676][HT
|
|||
h2:hover .toc-pin-btn,
|
||||
h3:hover .toc-pin-btn,
|
||||
h4:hover .toc-pin-btn,
|
||||
h5:hover .toc-pin-btn {
|
||||
h5:hover .toc-pin-btn,
|
||||
h6:hover .toc-pin-btn {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue