Fix double images in notes lists
Finally, I’ve corrected the issue of images displaying twice in lists, such as in notes or changelogs. This was causing a large image to appear on the left and a small one on the right. Now, it’s much cleaner.
It’s as straightforward as replacing $item->text()->short(500)->kt()->handleLinks()
with $item->text()->kt()->excerpt(500)
.