fix: remove HTML escaping from commit bodies
Commit messages are plaintext piped to 'git commit -F -' stdin,
so
HTML sanitization with bluemonday was unnecessary and harmful. It was
escaping characters like < and > that should remain literal in
commit
text.
Security is maintained through the stdin pipe preventing shell
injection.
Fixes: a6c077f
Assisted-by: Claude Sonnet 4.5 via Crush