grav-plugin-admin icon indicating copy to clipboard operation
grav-plugin-admin copied to clipboard

Image title should not be url-encoded

Open u07 opened this issue 9 months ago • 0 comments

Hi! I believe, this issue must be here.

The problem is, when you edit a page and want to add an image from your HDD with unicode name, you get this .md code:

![%D0%A2%D0%B5%D1%81%D1%82](%D0%A2%D0%B5%D1%81%D1%82.jpg "%D0%A2%D0%B5%D1%81%D1%82")

image

https://user-images.githubusercontent.com/20968145/205467330-4d99019f-d663-4d51-b454-76a509e79265.png

That's wrong. The 1'st and the 3'rd params are actually img's Alt and Title (human-readable) and they should not be url-encoded. Like this:

![Тест](%D0%A2%D0%B5%D1%81%D1%82.jpg "Тест")

u07 avatar Nov 02 '23 03:11 u07