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>

+2 -1
+1
src/dune
··· 25 25 x_protocol) 26 26 (modes js) 27 27 (js_of_ocaml 28 + (javascript_files oxcaml_stubs.js) 28 29 (sourcemap no)) 29 30 (preprocess 30 31 (pps ppx_blob))
+1 -1
src/widget_render.ml
··· 122 122 let ev_type = Ev.Type.create (Jstr.v ev_name) in 123 123 let _listener = Ev.listen ev_type (fun _ev -> 124 124 let is_input = 125 - let tn = Jstr.to_string (El.tag_name el) in 125 + let tn = String.lowercase_ascii (Jstr.to_string (El.tag_name el)) in 126 126 tn = "input" || tn = "select" || tn = "textarea" 127 127 in 128 128 let value =