MilesCranmer commited on
Commit
cb8f7b4
β€’
1 Parent(s): 281eb31

Add mkdocs minimal configuration

Browse files
{old_docs/docs/images β†’ docs/assets}/pysr_logo.svg RENAMED
File without changes
docs/index.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Welcome to MkDocs
2
+
3
+ For full documentation visit [mkdocs.org](https://www.mkdocs.org).
4
+
5
+ ## Commands
6
+
7
+ * `mkdocs new [dir-name]` - Create a new project.
8
+ * `mkdocs serve` - Start the live-reloading docs server.
9
+ * `mkdocs build` - Build the documentation site.
10
+ * `mkdocs -h` - Print help message and exit.
11
+
12
+ ## Project layout
13
+
14
+ mkdocs.yml # The configuration file.
15
+ docs/
16
+ index.md # The documentation homepage.
17
+ ... # Other markdown pages, images and other files.
docs/stylesheets/extra.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ [data-md-color-scheme="pysr"] {
2
+ --md-primary-fg-color: #C13245;
3
+ --md-primary-fg-color--light: #D35364;
4
+ --md-primary-fg-color--dark: #982736;
5
+ }
mkdocs.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ site_name: PySR
2
+ theme:
3
+ name: material
4
+ palette:
5
+ # Light mode:
6
+ - scheme: pysr
7
+ logo: assets/pysr_logo.svg
8
+ icon:
9
+ repo: fontawesome/brands/github-alt
10
+
11
+ extra:
12
+ homepage: https://astroautomata.com/PySR
13
+
14
+ extra_css:
15
+ - stylesheets/extra.css
16
+
17
+ repo_url: https://github.com/MilesCranmer/PySR