An open API service indexing awesome lists of open source software.

https://github.com/simplearyan/notebook

Notebook
https://github.com/simplearyan/notebook

astro docs notebook

Last synced: 5 days ago
JSON representation

Notebook

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
```