Skip to content

Commit 43e6b6c

Browse files
committed
Fix MathJax/Doxygen clash in visualisation.md
1 parent f2667a5 commit 43e6b6c

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/doc.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,18 @@ jobs:
3030
git ls-remote "${{ secrets.DOC_PUSH_URL }}" -q
3131
code=$?
3232
if [ "$code" -ne "0" ]; then exit 0; fi
33-
git config --global user.name "MFC Action"
34-
git config --global user.email "MFC Action"
33+
git config --global user.name 'MFC Action'
34+
git config --global user.email '<>'
3535
git clone "${{ secrets.DOC_PUSH_URL }}"
3636
cd "$(find . -name '*.github.io')"
3737
mv .github ..
3838
rm -rf $(pwd)/*
3939
mv ../.github .
4040
mv ../install/doc/mfc/* .
4141
git add -A
42-
git commit -m "${GITHUB_SHA::7}: $(date +%d/%m/%Y-%H:%M:%S)" || true
42+
git commit -m "Docs @ ${GITHUB_SHA::7}" || true
4343
git push
4444
4545
# DOC_PUSH_URL should be of the format:
46-
# - "https://${{ github.repository_owner }}:${{ TOKEN }}@github.com/${{ github.repository_owner }}/${{ github.repository_owner }}.github.io"
46+
# --> https://<username>:<token>@github.com/<username>/<repository>
47+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Please contact the developers, like [Spencer](mailto:[email protected]), if you hav
3434
We have an active Slack channel to help ease in new MFC users and support development.
3535

3636
MFC has both API and high-level documentation.
37-
It is available on [the website](https://mflowcode.github.io/) and in markdown format at [doc/landing/readme.md](doc/landing/readme.md).
37+
It is available on [the website](https://mflowcode.github.io/) and in markdown format at [doc/documentation/readme.md](doc/documentation/readme.md).
3838

3939
If you use MFC, consider citing it:
4040
* <a href="https://doi.org/10.1016/j.cpc.2020.107396">

doc/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@ HTML_FOOTER = doxygen/footer.html
11881188
# obsolete.
11891189
# This tag requires that the tag GENERATE_HTML is set to YES.
11901190

1191-
HTML_STYLESHEET = style.css
1191+
HTML_STYLESHEET =
11921192

11931193
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
11941194
# cascading style sheets that are included after the standard style sheets

doc/documentation/visualisation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ If there are sub-grid bubbles `bubbles` $=$ `T`, then the bubble variables are a
4141
These depend on the bubble dynamics model used.
4242
If `polytropic` $=$ `T` then the conservative variables are appended by
4343

44-
$$ n_b R_1, n_b \dot{R_1}, \dots, n_b R_{N_b}, n_b \dot{R}_{N_b} $$
44+
$$ n_b R_1, n_b {\\dot R}_1, \dots, n_b R_{N_b}, n_b {\\dot R}_{N_b} $$
4545

4646
where $n_B$ is the bubble number density and $N_b$ are the number of bubble sizes (see matching variable in the input file, `Nb`).
4747
The primitive bubble variables do not include $n_B$:
4848

49-
$$ R_1, \dot{R_1}, \dots, R_{N_b}, \dot{R_{N_b}} $$
49+
$$ R_1, {\\dot R}_1, \dots, R_{N_b}, {\\dot R}_{N_b} $$

doc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<header class="w-full top-0 bg-slate-900 text-white flex flex-col items-center drop-shadow-2xl">
3333
<div class="px-4 md:px-0 container mx-auto py-8 flex flex-row items-center justify-between">
3434
<div class="flex flex-row items-center gap-x-2">
35-
<a href="https://github.com/MFlowCode/MFC" class="flex flex-row items-center gap-x-2">
35+
<a href="https://mflowcode.github.io/" class="flex flex-row items-center gap-x-2">
3636
<img class="h-8 md:h-12 rounded-full bg-white" src="res/logo.png" />
3737
<h1 class="font-bold text-3xl">MFC</h1>
3838
</a>

0 commit comments

Comments
 (0)