On 05/17/2023 07:51 PM, H wrote:
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...
Kind regards,
*Lucas Vieites https://namedrop.io/lucasvieites* Blog @ codexion.com https://blog.codexion.com/ LinkedIn https://www.linkedin.com/in/lucasvieites
On Sun, May 14, 2023 at 3:27 AM Lex Trotman via Users <users@lists.geany.org mailto: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 <mailto:users@lists.geany.org> > To unsubscribe send an email to users-leave@lists.geany.org <mailto:users-leave@lists.geany.org> _______________________________________________ Users mailing list -- users@lists.geany.org <mailto:users@lists.geany.org> To unsubscribe send an email to users-leave@lists.geany.org <mailto: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.
While the above works great, it saves the output to a new file. Is it possible to configure the build command so that the file I am viewing (and running the command on) gets updated in the view?