Skip to content

Commit 257789a

Browse files
committed
Add myst config.
Result of 💾 Updating .gitignore ✅ Project already initialized with config file: myst.yml ✅ Site already initialized with config file: myst.yml.
1 parent 7496e67 commit 257789a

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,3 +189,6 @@ cython_debug/
189189

190190
# PyPI configuration file
191191
.pypirc
192+
193+
# MyST build outputs
194+
_build

myst.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# See docs at: https://mystmd.org/guide/frontmatter
2+
version: 1
3+
project:
4+
id: 9db2473e-461d-4266-86fa-a2a0ea3eb2c9
5+
title: executable-tutorials
6+
description: Executable tutorials for Scientific Python
7+
keywords: []
8+
authors: [Scientific Python Developers]
9+
github: https://github.com/scientific-python/executable-tutorials
10+
# To autogenerate a Table of Contents, run "myst init --write-toc"
11+
toc:
12+
# Auto-generated by `myst init --write-toc`
13+
- file: index.md
14+
- title: Tutorials
15+
children:
16+
- title: Executable
17+
children:
18+
- file: tutorials/executable/basics.md
19+
- title: Matplotlib
20+
children:
21+
- file: tutorials/matplotlib/interactive_mpl.md
22+
- file: tutorials/matplotlib/static_mpl.md
23+
- title: Static
24+
children:
25+
- file: tutorials/static/static.md
26+
- file: contributing.md
27+
- file: maintainers.md
28+
29+
site:
30+
template: book-theme
31+
# options:
32+
# favicon: favicon.ico
33+
# logo: site_logo.png

0 commit comments

Comments
 (0)