Skip to content

Commit 628f66b

Browse files
authored
🔧 bring back changes (#19)
* 🔧 update master (#16) * Fix typo in README.md * 🐛 providing biomasses to make_parameters would crash * Fixed make_parameters.jl bug There was a bug where providing a biomass index would result in metabolic rates ( x ) being equal to inf. * Added test for make_parameters.jl bug Added a test to determine whether the metabolic rates are being correctly calculated from passed body masses. * Update make_parameters.jl * 📚 make doc (closes #13) * 📚 make doc * 🔧 typo * 🔧 update travis file * 📚 doc update * 🔧 fix travis indentation * Master (#17) * Fix typo in README.md * 🐛 providing biomasses to make_parameters would crash * Fixed make_parameters.jl bug There was a bug where providing a biomass index would result in metabolic rates ( x ) being equal to inf. * Added test for make_parameters.jl bug Added a test to determine whether the metabolic rates are being correctly calculated from passed body masses. * Update make_parameters.jl * 📚 make doc (closes #13) * 📚 make doc * 🔧 typo * 🔧 update travis file * 📚 doc update * 🔧 fix travis indentation * 📚 fix build version * 📚 identation * 🔧 update make docs
1 parent 8d3f0c0 commit 628f66b

File tree

2 files changed

+24
-26
lines changed

2 files changed

+24
-26
lines changed

docs/make.jl

+1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ makedocs(
88

99
deploydocs(
1010
deps = Deps.pip("pygments", "mkdocs", "mkdocs-material", "python-markdown-math"),
11+
julia = "0.5",
1112
repo = "github.com/PoisotLab/BioEnergeticFoodWebs.jl.git"
1213
)

docs/mkdocs.yml

+23-26
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,36 @@ site_author: the Poisot lab
66
theme: material
77

88
extra:
9-
logo: 'befw.png'
10-
palette:
11-
primary: 'green'
12-
accent: 'deep orange'
13-
font:
14-
text: 'Arimo'
15-
code: 'Cousine'
16-
author:
17-
twitter: 'poisotlab'
18-
github: 'poisotlab'
9+
logo: 'befw.png'
10+
palette:
11+
primary: 'green'
12+
accent: 'deep orange'
13+
author:
14+
twitter: 'poisotlab'
15+
github: 'poisotlab'
1916

2017
extra_css:
21-
- asssets/Documenter.css
18+
- asssets/Documenter.css
2219

2320
extra_javascript:
24-
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
25-
- assets/mathjaxhelper.js
21+
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
22+
- assets/mathjaxhelper.js
2623

2724
markdown_extensions:
28-
- fenced_code
29-
- extra
30-
- tables
31-
- mdx_math
25+
- fenced_code
26+
- extra
27+
- tables
28+
- mdx_math
3229

3330
docs_dir: 'build'
3431

3532
pages:
36-
- Home: index.md
37-
- Manual:
38-
- Installation: man/installation.md
39-
- Generating random networks: man/random.md
40-
- First simulation: man/first_simulation.md
41-
- Contributing: man/contributing.md
42-
- Library:
43-
- Public: lib/public.md
44-
- Internals: lib/internals.md
33+
- Home: index.md
34+
- Manual:
35+
- Installation: man/installation.md
36+
- Generating random networks: man/random.md
37+
- First simulation: man/first_simulation.md
38+
- Contributing: man/contributing.md
39+
- Library:
40+
- Public: lib/public.md
41+
- Internals: lib/internals.md

0 commit comments

Comments
 (0)