Skip to content

Commit 35fa969

Browse files
authored
Merge pull request #6 from AnyBody/fix-links
Fix failing link-checks
2 parents b7cd903 + 3e04455 commit 35fa969

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

A_Getting_started_modeling/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The following elements of the AnyScript language make such templating easier:
1111
- Include files - Which aid templating and sharing model components across different applications
1212
- Body model parameters - For customizing the default AMMR body models
1313

14-
The AMMR installation folder also contains a library of [demo applications](https://anyscript.org/ammr/auto_examples/index.html)
14+
The AMMR installation folder also contains a library of [demo applications](https://anyscript.org/ammr/Applications/index.html)
1515
such as MoCap gait, cycling, leg-press exercises etc. If any of these applications are similar to your end goal, you can copy the
1616
application's model files and then modify them as required.
1717

pixi.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@ channels = ["conda-forge"]
77
platforms = ["win-64","linux-64"]
88

99
[tasks]
10-
linkcheck = "sphinx-build -M linkcheck . _build"
10+
clean = "rm -rf _build"
11+
linkcheck = {cmd="sphinx-build -M linkcheck . _build", depends_on = ["clean"]}
1112
build-pdf = "sphinx-build -M simplepdf . _build"
1213
build-html = "sphinx-build -M html . _build"
1314
build-html-all = "sphinx-build -M html . _build -a"
14-
html = {cmd= 'explorer .\Docs\_build\html\index.html', depends_on = ["build-html-all"]}
15-
pdf = {cmd= 'explorer .\Docs\_build\simplepdf\Agada-Documentation.pdf', depends_on = ["build-pdf"]}
15+
html = {cmd= 'explorer .\_build\html\index.html', depends_on = ["build-html-all"]}
16+
pdf = {cmd= 'explorer .\_build\simplepdf\Agada-Documentation.pdf', depends_on = ["build-pdf"]}
1617
livehtml = "sphinx-autobuild . _build --port=0 --open-browser -j=4"
1718

1819

1920
[dependencies]
20-
sphinx = "<7"
21+
sphinx = ">=6.2,<7"
2122
python = ">=3.11.6,<3.12"
2223
sphinxext-opengraph = ">=0.9.0,<0.10"
2324
sphinx-copybutton = ">=0.5.2,<0.6"

0 commit comments

Comments
 (0)