File tree Expand file tree Collapse file tree 3 files changed +42
-4
lines changed Expand file tree Collapse file tree 3 files changed +42
-4
lines changed Original file line number Diff line number Diff line change 1
1
.hidden-warning {
2
2
display : none
3
3
}
4
+
5
+ /* The Read the Docs flyout is formatted with a font-size that is 90% of the
6
+ body's. Material for MkDocs has a body font-size that is 0.5rem. This body
7
+ font-size will result in the flyout having a font-size of 0.7rem, consistent
8
+ with the font-size of other elements in the theme.
9
+ */
10
+ body {
11
+ font-size : 0.777778rem ;
12
+ }
Original file line number Diff line number Diff line change
1
+ # pip requirements file for MkDocs, used by Read The Docs
2
+ #
3
+ # See:
4
+ #
5
+ # The Read The Docs recommendation to 'pin' the MkDocs version used to build
6
+ # documentation:
7
+ # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html#pinning-dependencies
8
+ #
9
+ # The pip guide to its requirements file format:
10
+ # https://pip.pypa.io/en/stable/reference/requirements-file-format/
11
+ #
12
+ # Current version as at 31 August 2022
13
+ mkdocs == 1.3.1
14
+ mkdocs-material
Original file line number Diff line number Diff line change @@ -6,13 +6,22 @@ edit_uri: tree/stable/doc/
6
6
copyright : Copyright (c) 2015-2022, Stack contributors
7
7
docs_dir : doc
8
8
site_dir : _site
9
- theme : readthedocs
9
+ theme :
10
+ name : material
11
+ palette :
12
+ primary : ' deep purple'
13
+ accent : ' deep purple'
14
+ icon :
15
+ logo : material/language-haskell
10
16
extra_css :
11
17
- css/extra.css
12
18
extra_javascript :
13
19
- js/searchhack.js
20
+ # Read the Docs requires JQuery for its JavaScript code to inject the flyout
21
+ # menu. Material for MkDocs does not come with JQuery.
22
+ - ' https://code.jquery.com/jquery-3.6.1.min.js'
14
23
15
- pages :
24
+ nav :
16
25
- Home : README.md
17
26
- Changelog : ChangeLog.md
18
27
- Tool documentation :
40
49
- Advanced documentation :
41
50
- Build overview : build_overview.md
42
51
- Project documentation :
43
- - Contributor's guide : CONTRIBUTING.md
44
- - Maintainer's guide :
52
+ - Contributors :
53
+ - Contributor's guide : CONTRIBUTING.md
54
+ - Maintainers :
45
55
- Releases : maintainers/releases.md
46
56
- Maintainer team process : maintainers/team_process.md
47
57
- Add GHC version : maintainers/ghc.md
54
64
markdown_extensions :
55
65
- toc :
56
66
permalink : true
67
+ - pymdownx.highlight :
68
+ anchor_linenums : true
69
+ - pymdownx.inlinehilite
70
+ - pymdownx.snippets
71
+ - pymdownx.superfences
You can’t perform that action at this time.
0 commit comments