## What?
Added a check for `cellHeight == 0` in the `imageRows` function within
`view/html.go`. If the terminal height cannot be determined, it now
defaults to a standard `16px` fallback.
## Why?
When running in terminals that don't report cell size via `ioctl`,
`getTerminalCellSize()` returns `0`. This previously caused a "division
by zero" runtime panic during the row calculation for inline images: `(h
+ cellHeight - 1) / cellHeight`.
Closes #865