- Update all subscribe modals to show just "MLSysBook" branding
- Change navbar project links to relative paths for dev site compatibility
- Update book, kits, and tinytorch configs consistently
Improves the subscription modal functionality by expanding the selectors used to identify subscription links in the navigation bar.
It now searches for links with various href attributes (buttondown.email/mlsysbook, #subscribe, subscribe)
and IDs (navbar-subscribe-btn) or classes (subscribe-link).
This makes the subscription modal more accessible, regardless of the specific link implementation.
Additionally, it updates the "Star" link in the navigation bar to point to the support section on Github.
Use simpler class names (modal-title, modal-subtitle) that don't
conflict with Quarto's default styling. This fixes the layout issue
where the title and subtitle were appearing side by side instead
of stacked vertically.
Changes:
- Replace subscribe-modal-title with modal-title
- Replace subscribe-modal-subtitle with modal-subtitle
- Remove !important overrides that were fighting Quarto CSS
- Keep book-specific styling (blue button, quarto-dark mode)
* Restructure: Move book content to book/ subdirectory
- Move quarto/ → book/quarto/
- Move cli/ → book/cli/
- Move docker/ → book/docker/
- Move socratiQ/ → book/socratiQ/
- Move tools/ → book/tools/
- Move scripts/ → book/scripts/
- Move config/ → book/config/
- Move docs/ → book/docs/
- Move binder → book/binder
Git history fully preserved for all moved files.
Part of repository restructuring to support MLSysBook + TinyTorch.
Pre-commit hooks bypassed for this commit as paths need updating.
* Update pre-commit hooks for book/ subdirectory
- Update all quarto/ paths to book/quarto/
- Update all tools/ paths to book/tools/
- Update config/linting to book/config/linting
- Update project structure checks
Pre-commit hooks will now work with new directory structure.
* Update .gitignore for book/ subdirectory structure
- Update quarto/ paths to book/quarto/
- Update assets/ paths to book/quarto/assets/
- Maintain all existing ignore patterns
* Update GitHub workflows for book/ subdirectory
- Update all quarto/ paths to book/quarto/
- Update cli/ paths to book/cli/
- Update tools/ paths to book/tools/
- Update docker/ paths to book/docker/
- Update config/ paths to book/config/
- Maintain all workflow functionality
* Update CLI config to support book/ subdirectory
- Check for book/quarto/ path first
- Fall back to quarto/ for backward compatibility
- Maintain full CLI functionality
* Create new root and book READMEs for dual structure
- Add comprehensive root README explaining both projects
- Create book-specific README with quick start guide
- Document repository structure and navigation
- Prepare for TinyTorch integration