this repo has no description
1
fork

Configure Feed

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

fix: image rename also updates #image("images/name.ext") references

Previously only #img("stem") was rewritten; raw typst #image() calls
with full path+extension were left stale.

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

+4
+4
crates/tala/src/main.rs
··· 1463 1463 &format!("#img(\"{}\")", stem), 1464 1464 &format!("#img(\"{}\")", new_stem), 1465 1465 ); 1466 + src = src.replace( 1467 + &format!("#image(\"images/{}.{}\")", stem, ext), 1468 + &format!("#image(\"images/{}.{}\")", new_stem, ext), 1469 + ); 1466 1470 let _ = std::fs::write(cards_path(), &src); 1467 1471 } 1468 1472 on_renamed.call(());