This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove handling of broken option SAGE_DOC_MATHJAX=no
- Loading branch information
Matthias Koeppe
committed
Nov 29, 2021
1 parent
cc60cfe
commit ef2b25b
Showing
7 changed files
with
20 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
#! /usr/bin/env bash | ||
|
||
# When building documentation, use MathJax by default. To turn it off, | ||
# set SAGE_DOC_MATHJAX to be "no" or "False". | ||
if [ -z "$SAGE_DOC_MATHJAX" ]; then | ||
# For backwards compatibility, we use the value of SAGE_DOC_JSMATH | ||
# if it is set. | ||
if [ -n "$SAGE_DOC_JSMATH" ]; then | ||
SAGE_DOC_MATHJAX="$SAGE_DOC_JSMATH" | ||
else | ||
SAGE_DOC_MATHJAX="True" | ||
fi | ||
export SAGE_DOC_MATHJAX | ||
fi | ||
|
||
cd $SAGE_ROOT/src/doc | ||
$MAKE doc-html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
#! /usr/bin/env bash | ||
# This must be set; otherwise, sage.docs.conf uses sphinx.ext.imgmath, | ||
# which leads to errors. | ||
export SAGE_DOC_MATHJAX=yes | ||
|
||
cd $SAGE_ROOT/src/doc | ||
$MAKE doc-pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters