Skip to content

Commit 1cdca2d

Browse files
committed
COMP: Fix html build
1 parent f98c22d commit 1cdca2d

File tree

7 files changed

+10
-20
lines changed

7 files changed

+10
-20
lines changed

docs/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Insight Journal using MyST Markdown:
1212
This template demonstrates how to create reproducible, open science articles using:
1313

1414
- **MyST Markdown** for rich scientific document authoring
15-
- **Pixi** for dependency management and build automation
15+
- **Pixi** for dependency management and build automation
1616
- **Source code** organization in `src/`
1717
- **Data** organization in `data/`
1818
- **Multi-format exports** (PDF, HTML, DOCX, MECA, etc.)
@@ -30,8 +30,7 @@ This template demonstrates how to create reproducible, open science articles usi
3030
├── data/ # Data files and images
3131
│ └── img1.png # Sample test image
3232
├── myst.yml # MyST configuration
33-
├── pixi.toml # Pixi dependency management
34-
└── requirements.txt # Python requirements
33+
└── pixi.toml # Pixi dependency management
3534
```
3635

3736
## Quick Start
@@ -106,7 +105,7 @@ This template demonstrates:
106105
The template is configured to export to:
107106

108107
- **HTML**: Interactive web version
109-
- **PDF**:
108+
- **PDF**:
110109
- arXiv two-column format
111110
- Plain LaTeX book format
112111
- **DOCX**: Microsoft Word format

docs/assets/favicon.ico

15 KB
Binary file not shown.
880 KB
Loading
725 KB
Loading

docs/index.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ venue:
3939
url: https://insight-journal.org
4040
github: InsightSoftwareConsortium/InsightJournalTemplate
4141
doi: 10.5281/zenodo.1234567
42-
handle: 1338
4342
abstract: |
4443
This document describes a new algorithm implemented using the Insight Toolkit
4544
ITK (www.itk.org). The code of the algorithm is written following the
@@ -49,10 +48,6 @@ abstract: |
4948
output data that the authors used for validating the algorithm described in
5049
this paper. This adheres to the fundamental principle that scientific
5150
publications must facilitate reproducibility of the reported results.
52-
math:
53-
"\\psi": "\\psi"
54-
"\\mathbf": "\\mathbf"
55-
"\\xi": "\\xi"
5651
exports:
5752
- format: pdf
5853
template: arxiv_two_column

myst.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ project:
4949

5050
# Bibliography
5151
bibliography:
52-
- doc/references.bib
52+
- docs/references.bib
5353

5454
# Export configurations
5555
exports:
@@ -83,8 +83,7 @@ project:
8383
# Website configuration
8484
site:
8585
title: Insight Journal Template
86-
logo: logo.png
87-
favicon: favicon.ico
86+
favicon: docs/assets/favicon.ico
8887
nav:
8988
- title: Article
9089
url: /index.html
@@ -93,10 +92,7 @@ site:
9392

9493
# Site options
9594
options:
95+
logo: docs/assets/logo-insight-journal-square-light.png
96+
logo_dark: docs/assets/logo-insight-journal-square-dark.png
9697
logo_text: Insight Journal Template
97-
hide_title_on_index: true
98-
99-
# Social media and external links
100-
domains:
101-
- https://insight-journal.org
102-
- https://github.com/InsightSoftwareConsortium/InsightJournalTemplate
98+
hide_title_on_index: true

pixi.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
1111

1212
[dependencies]
1313
# MyST ecosystem
14-
mystmd = "*"
14+
mystmd = ">=1.6.0,<2"
1515
jupyter-book = "*"
1616

1717
# Python scientific stack
18-
python = ">=3.9"
18+
python = ">=3.11"
1919
numpy = "*"
2020
matplotlib = "*"
2121
scipy = "*"

0 commit comments

Comments
 (0)