File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pipenv shell
42
42
Install Python dependencies:
43
43
44
44
```
45
- pip install Sphinx==2.4.4
45
+ pipenv install Sphinx==2.4.4
46
46
```
47
47
48
48
### Checking out the repository
@@ -80,7 +80,7 @@ To build the [single-page W3C version](https://webassembly.github.io/spec/core/b
80
80
```
81
81
# cd back to root of git directory
82
82
git clone https://github.com/tabatkins/bikeshed.git
83
- pip install --editable bikeshed
83
+ pipenv install -e bikeshed
84
84
bikeshed update
85
85
```
86
86
Original file line number Diff line number Diff line change 186
186
# Add any paths that contain custom static files (such as style sheets) here,
187
187
# relative to this directory. They are copied after the builtin static files,
188
188
# so a file named "default.css" will overwrite the builtin "default.css".
189
- html_static_path = ['_static' , ' static/custom.css' ]
189
+ html_static_path = ['static/custom.css' ]
190
190
191
191
# Add any extra paths that contain custom files (such as robots.txt or
192
192
# .htaccess) here, relative to this directory. These files are copied
Original file line number Diff line number Diff line change 130
130
# a list of builtin themes.
131
131
#
132
132
html_theme = 'classic'
133
- html_add_permalinks = None
133
+ html_add_permalinks = ''
134
134
135
135
# Theme options are theme-specific and customize the look and feel of a theme
136
136
# further. For a list of options available for each theme, see the
176
176
# Add any paths that contain custom static files (such as style sheets) here,
177
177
# relative to this directory. They are copied after the builtin static files,
178
178
# so a file named "default.css" will overwrite the builtin "default.css".
179
- html_static_path = ['_static' , 'static/custom.css' ]
179
+ # html_static_path = ['_static', 'static/custom.css']
180
180
181
181
# Add any extra paths that contain custom files (such as robots.txt or
182
182
# .htaccess) here, relative to this directory. These files are copied
Original file line number Diff line number Diff line change 1
1
from sphinx .ext .mathbase import math
2
- from sphinx .ext . mathbase import MathDirective
2
+ from sphinx .directives . patches import MathDirective
3
3
from sphinx .util .texescape import tex_replace_map
4
4
from sphinx .writers .html5 import HTML5Translator
5
5
from sphinx .writers .latex import LaTeXTranslator
Original file line number Diff line number Diff line change 4
4
# mathdef.py controlled by buildername.
5
5
6
6
from sphinx .ext .mathbase import math
7
- from sphinx .ext . mathbase import MathDirective
7
+ from sphinx .directives . patches import MathDirective
8
8
from sphinx .ext .mathjax import html_visit_math
9
9
from sphinx .ext .mathjax import html_visit_displaymath
10
10
from sphinx .writers .html5 import HTML5Translator
You can’t perform that action at this time.
0 commit comments