Skip to content

Commit 191004b

Browse files
committed
Add tabset functionality and tooltip styles
- Implemented grouped tabsets with persistent state management in tabsets.js. - Added CSS styles for tooltips in tippy.css. - Included minified UMD version of Tippy.js in tippy.umd.min.js for tooltip functionality.
1 parent 573cf8c commit 191004b

21 files changed

Lines changed: 4636 additions & 2 deletions

.github/workflows/publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish Quarto Output to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Adjust if your default branch is 'master'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
publish:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Prepare directory for deployment
19+
run: |
20+
mkdir _site
21+
# Copy the main HTML file to index.html so it loads automatically at the root URL
22+
cp PMD_Transformer_Tutorial.html _site/index.html
23+
# Also copy the original filename just in case
24+
cp PMD_Transformer_Tutorial.html _site/
25+
# Copy the supporting files folder (contains figures, libs, css)
26+
cp -r PMD_Transformer_Tutorial_files _site/
27+
28+
- name: Deploy to GitHub Pages
29+
uses: peaceiris/actions-gh-pages@v3
30+
with:
31+
github_token: ${{ secrets.GITHUB_TOKEN }}
32+
publish_dir: ./_site

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
Manifest.toml
22
*/Manifest.toml
3-
*.html
4-
PMD_Transformer_Tutorial_files/

PMD_Transformer_Tutorial.html

Lines changed: 1131 additions & 0 deletions
Large diffs are not rendered by default.
852 KB
Loading
1.42 MB
Loading
819 KB
Loading
469 KB
Loading
1.08 MB
Loading

PMD_Transformer_Tutorial_files/libs/bootstrap/bootstrap-9e3ffae467580fdb927a41352e75a2e0.min.css

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PMD_Transformer_Tutorial_files/libs/bootstrap/bootstrap-icons.css

Lines changed: 2106 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)