forked from ChicagoBoothML/MachineLearning_Fall2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
43 lines (37 loc) · 1.98 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
site_name: <b>BUS41204 Machine Learning</b>
site_author: Mladen Kolar, Robert E. McCulloch
include_nav: True
include_next_prev: False
pages:
- <i class="fa fa-home"></i>: 'index.md'
- Lectures: 'Syllabus.md'
- Project: 'Project.md'
- Data: 'DataSets.md'
- Applications: 'Applications.md'
- Computing: 'Computing.md'
- Installation:
- Computer Operating System Requirements: 'Installation/Computer Operating System Requirements.md'
- Git, GitHub & SourceTree: 'Installation/Git, GitHub & SourceTree.md'
- R, RStudio & CRAN Packages: 'Installation/R, RStudio & CRAN Packages.md'
- Python Anaconda, PyCharm IDE, and Conda & PyPI Packages: 'Installation/Python Anaconda, PyCharm IDE, and Conda & PyPI Packages.md'
- Python Theano package: 'Installation/Python Theano.md'
- TeX for rendering math: 'Installation/TeX.md'
- Java Development Kit (JDK): 'Installation/Java Development Kit (JDK).md'
- Cygwin (for Windows users only): 'Installation/Cygwin.md'
- Tutorials:
- R Markdown: 'Tutorials/R Markdown Tutorial.md'
- R data.table: 'Tutorials/R data.table Tutorial.md'
- Python iPython Notebook: 'Tutorials/Python iPython Notebook tutorial.md'
repo_url: 'http://github.com/ChicagoBoothML/MachineLearning_Fall2015'
theme: mkdocs
extra_css: ['https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css',
'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css',
'https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css',
'styles.css']
# math extension
# ref: https://github.com/mkdocs/mkdocs/issues/253
markdown_extensions: [math]
extra_javascript: ['https://code.jquery.com/jquery-2.1.3.min.js',
# 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js', # disabling this because it causes problems to the drop-downs
'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML',
'mathjaxhelper.js']