[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-23 Thread Lex Trotman via Users
On Sat, 24 Dec 2022 at 02:17, Virgil Arrington Jr. via Users wrote: > > On 12/23/2022 3:53 AM, Lucas Vieites via Users wrote: > > Thank you, Lex. > I have signed up and written a small howto with the successful > instructions: https://wiki.geany.org/howtos/win32/build-command > > Kind

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-23 Thread Virgil Arrington Jr. via Users
On 12/23/2022 3:53 AM, Lucas Vieites via Users wrote:   Thank you, Lex.   I have signed up and written a small howto with the successful instructions: https://wiki.geany.org/howtos/win32/build-command   Kind regards, -- *Lucas Vieites * Blog @ codexion.com

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-23 Thread Lex Trotman via Users
On Fri, 23 Dec 2022 at 18:54, Lucas Vieites via Users wrote: > > Thank you, Lex. > I have signed up and written a small howto with the successful > instructions: https://wiki.geany.org/howtos/win32/build-command Thank you for contributing. Cheers Lex > > Kind regards, > -- > Lucas

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-23 Thread Lucas Vieites via Users
Thank you, Lex. I have signed up and written a small howto with the successful instructions: https://wiki.geany.org/howtos/win32/build-command Kind regards, -- *Lucas Vieites * Blog @ codexion.com LinkedIn

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-22 Thread Lex Trotman via Users
On Thu, 22 Dec 2022 at 23:32, Lucas Vieites via Users wrote: > > Hi there, > Is there a knowledge base, or wiki, or similar where we can centralize this > kind of question/answer? https://wiki.geany.org/start > > Thank you, > -- > Lucas Vieites > lucasviei...@gmail.com > > On Thu, Dec

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-22 Thread o1bigtenor via Users
On Thu, Dec 22, 2022 at 7:32 AM Lucas Vieites via Users wrote: > > Hi there, > Is there a knowledge base, or wiki, or similar where we can centralize this > kind of question/answer? > Hmm - - - - and here I thought that's what this list is for - - - yes? (grin) (That's one reason I

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-22 Thread Lucas Vieites via Users
Hi there, Is there a knowledge base, or wiki, or similar where we can centralize this kind of question/answer? Thank you, -- Lucas Vieites lucasviei...@gmail.com On Thu, Dec 22, 2022, 14:12 Virgil Arrington via Users < users@lists.geany.org> wrote: > > 2) If that doesn't exist, try

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-22 Thread Virgil Arrington via Users
> 2) If that doesn't exist, try wrapping in a shell: >cmd.exe /c "my command" That works perfectly. Thanks for the suggestion. Thanks to others who responded with other suggestions. This one was the easiest to implement and it worked. Virgil

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-21 Thread Lex Trotman via Users
Yes, as Doug says, if the purpose is to convert markdown to html rather than work on the Python module its best to use one of the many programs that convert markdown rather than trying to run a Python module, there are lots, many with extensions that are generally considered essential these days

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-21 Thread Doug Henderson via Users
Vigil, Try > py -m pip install -U Markdown > Markdown -version Markdown: discount (master)2.2.7 Then in geany, use Markdown -o %e.html %f If this doesn't work, then create a command file e.g. "mkdn.cmd" with: @echo off markdown %1 %2 and put it in a folder in your path. Add any Markdown

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-21 Thread Lex Trotman via Users
On Thu, 22 Dec 2022 at 08:06, Geany User via Users wrote: > > > On 2022-12-21 11:25, Virgil Arrington via Users wrote: > > Hi all, > > > > I am using Geany 1.37 with Windows 11. I wish to build an html file from a > > markdown source file. In the Build > Set Build Commands dialog, I typed in > >

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-21 Thread Geany User via Users
On 2022-12-21 11:25, Virgil Arrington via Users wrote: Hi all, I am using Geany 1.37 with Windows 11. I wish to build an html file from a markdown source file. In the Build > Set Build Commands dialog, I typed in the following command: python -m markdown %f > %e.html I'd guess that the

[Geany-Users] Re: Geany build command doesn't output to a file

2022-12-21 Thread Frank Lanitz via Users
On 21.12.22 20:25, Virgil Arrington via Users wrote: Hi all, I am using Geany 1.37 with Windows 11. I wish to build an html file from a markdown source file. In the Build > Set Build Commands dialog, I typed in the following command: python -m markdown %f > %e.html As a non-Windows-user