this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Site redesign, new content, blog gen, E2E tests, and build improvements

New blog posts (monopam-madness, open-source-and-ai, weeknotes-2026-10),
notebook showcase with card layout and screenshots, Atom feed generator,
foundations notebook fixes, ONNX test improvements, widget interaction
tests, deploy script updates for oxcaml switch, and .gitignore for
build artifacts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -38
-27
src/scrollycode_css.ml
··· 13 13 14 14 let structural_css = 15 15 {| 16 - /* === Override odoc page chrome for scrollycode pages === */ 17 - .odoc-nav, .odoc-tocs, .odoc-search { display: none !important; } 18 - .odoc-preamble > h1, .odoc-preamble > h2, .odoc-preamble > h3 { display: none !important; } 19 - .at-tags > li > .at-tag { display: none !important; } 20 - .odoc-preamble, .odoc-content { 21 - max-width: none !important; 22 - padding: 0 !important; 23 - margin: 0 !important; 24 - display: block !important; 25 - } 26 - .at-tags { 27 - list-style: none !important; 28 - padding: 0 !important; 29 - margin: 0 !important; 30 - } 31 - .at-tags > li { 32 - display: block !important; 33 - margin: 0 !important; 34 - padding: 0 !important; 35 - } 36 - body.odoc, .odoc { 37 - padding: 0 !important; 38 - margin: 0 !important; 39 - max-width: none !important; 40 - background: inherit; 41 - } 42 - 43 16 /* === Container === */ 44 17 .sc-container { 45 18 font-family: var(--sc-font-body);
+3 -11
src/scrollycode_themes.ml
··· 516 516 } 517 517 |} 518 518 519 - (** Register all theme CSS files as support files *) 520 - let () = 521 - let register name content = 522 - Odoc_extension_api.Registry.register_support_file ~prefix:"scrolly" { 523 - filename = "extensions/scrollycode-" ^ name ^ ".css"; 524 - content = Inline content; 525 - } 526 - in 527 - register "warm" warm_css; 528 - register "dark" dark_css; 529 - register "notebook" notebook_css 519 + (* Theme CSS strings are retained as documentation of the custom property 520 + contract. Registration as support files has been removed — theming is 521 + now the shell's responsibility. *)