On 05/17/2023 02:45 AM, Lucas Vieites via Users wrote:
  Hi there,
  have you tried using an external command via the "Build > Set Build Commands" feature?
  You could use recode or a similar perl command, as shown in https://stackoverflow.com/questions/5929492/bash-script-to-convert-from-html-entities-to-characters 

  Kind regards,


On Sun, May 14, 2023 at 3:27 AM Lex Trotman via Users <users@lists.geany.org> wrote:
 ...
> Aha, got it. Sadly no, it's been a long time since I wrote C code...
>
> I will check who the maintainer is of that plugin and see if he/she might be interested.

HTML chars is part of the Geany repository, so it doesn't have an
individual maintainer, unlike those in the Geany-plugins collection.

You can make an issue requesting the feature on the Geany repo and see
if you can interest "somebody".

Cheers
Lex

> _______________________________________________
> Users mailing list -- users@lists.geany.org
> To unsubscribe send an email to users-leave@lists.geany.org
_______________________________________________
Users mailing list -- users@lists.geany.org
To unsubscribe send an email to users-leave@lists.geany.org


_______________________________________________
Users mailing list -- users@lists.geany.org
To unsubscribe send an email to users-leave@lists.geany.org

Thank you, brilliant idea! I chose to add

perl -C -MHTML::Entities -pe 'decode_entities($_);' %f > %f.html

as a build command and it worked great on my (single) example.