https://github.com/simplearyan/notebook
Notebook
https://github.com/simplearyan/notebook
astro docs notebook
Last synced: 5 days ago
JSON representation
Notebook
- Host: GitHub
- URL: https://github.com/simplearyan/notebook
- Owner: simplearyan
- Created: 2026-02-20T09:00:12.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-20T09:36:30.000Z (5 months ago)
- Last Synced: 2026-02-20T13:10:46.207Z (5 months ago)
- Topics: astro, docs, notebook
- Language: Astro
- Homepage: https://simplearyan.github.io/notebook/
- Size: 684 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notebook
## Documentation Structure
The documentation is organized within `src/content/docs/` and follows a file-based routing system.
```text
src/content/docs/
├── core-concepts.md # General documentation page
├── index.md # Documentation home page
└── stats-2/ # Course: Statistics for Data Science II
├── index.md # Course overview
├── week-1/ # Week 1 Content
│ ├── lesson-1.md
│ ├── quiz.md
│ └── assignment.md
├── week-2/ # Week 2 Content
│ ├── lesson-1.md
│ ├── quiz.md
│ └── assignment.md
└── week-3/ # Week 3 Content
├── lesson-1.md
├── quiz.md
└── assignment.md
```