Files
cs249r_book/newsletter/_quarto.yml
Vijay Janapa Reddi aa0c690a6f feat: add newsletter system with Buttondown integration and CLI commands
Adds newsletter infrastructure: CLI commands (new, list, preview, publish,
fetch, status) integrated into binder, Quarto archive site config for
mlsysbook.ai/newsletter/, and 12-month editorial content plan. Drafts
are gitignored for private local writing; sent newsletters are committed
as the public archive.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 17:22:52 -05:00

101 lines
3.5 KiB
YAML

# =============================================================================
# NEWSLETTER ARCHIVE (mlsysbook.ai/newsletter/)
# =============================================================================
# Renders sent newsletters as a browsable listing page.
# Build from book/quarto:
# quarto render ../../newsletter/index.qmd
# Deploy _build/html-newsletter/ to https://mlsysbook.ai/newsletter/
# =============================================================================
project:
type: website
output-dir: ../book/quarto/_build/html-newsletter
resources: ..
website:
title: "Newsletter - Machine Learning Systems"
description: "Updates, insights, and progress from the Machine Learning Systems textbook project."
site-url: https://mlsysbook.ai/newsletter/
page-navigation: false
back-to-top-navigation: true
navbar:
background: light
logo: https://mlsysbook.ai/vol1/assets/images/icons/favicon.png
pinned: true
collapse: true
collapse-below: "lg"
title: "Machine Learning Systems"
left:
- text: "Textbook"
menu:
- icon: house
text: "Home"
href: https://mlsysbook.ai/
- text: "---"
- icon: journal
text: "Volume I: Foundations"
href: https://mlsysbook.ai/vol1/
- icon: journal
text: "Volume II: At Scale"
href: https://mlsysbook.ai/vol2/
- text: "---"
- icon: fire
text: "TinyTorch"
href: https://mlsysbook.ai/tinytorch/
- icon: cpu
text: "Hardware Kits"
href: https://mlsysbook.ai/kits/
- text: "---"
- icon: lightbulb
text: "Labs (Coming 2026)"
href: https://mlsysbook.ai/labs/
- text: "Newsletter"
href: ./
right:
- icon: envelope
text: "Subscribe"
href: https://mlsysbook.ai/vol1/#subscribe
id: "navbar-subscribe-btn"
- icon: github
text: "GitHub"
href: https://github.com/harvard-edge/cs249r_book
target: _blank
sidebar: []
page-footer:
left: |
&copy; 2024-2026 Harvard University. Licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC-BY-NC-SA 4.0</a>
center: |
<a href="https://mlsysbook.ai/vol1/">Volume I</a> &middot; <a href="https://mlsysbook.ai/vol2/">Volume II</a> &middot; <a href="https://mlsysbook.ai/newsletter/">Newsletter</a>
right:
- icon: github
href: https://github.com/harvard-edge/cs249r_book
aria-label: "View source on GitHub"
background: light
border: true
format:
html:
toc: false
theme:
light:
- default
- ../book/quarto/assets/styles/style-vol1.scss
dark:
- default
- ../book/quarto/assets/styles/style-vol1.scss
- ../book/quarto/assets/styles/dark-mode-vol1.scss
respect-user-color-scheme: true
css: newsletter.css
include-in-header:
text: |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<meta name="theme-color" content="#A51C30">
<link rel="icon" href="https://mlsysbook.ai/vol1/assets/images/icons/favicon.png" type="image/png">