Re: Static site generator

2023-01-13 Thread Dr. Arne Babenhauserheide
Sascha Ziemann writes: > All you need is quasiquote, unquote and a function which formats SXML as XML. > > (html > `("" I use something like this with Guile: https://hg.sr.ht/~arnebab/guile-freenet/browse/fetchpull-standalone.scm?rev=tip#L604 (define (website-content port) (define title

Re: Static site generator

2023-01-13 Thread Sascha Ziemann
Am Fr., 13. Jan. 2023 um 18:33 Uhr schrieb James Crake-Merani : > > I was wondering if you guys are aware of any static site generators > written in Guile. I'm looking for something that can be extended in > Guile so I can write my own code for it in Scheme. > All you need is quasiquote, unquote

Re: Static site generator

2023-01-13 Thread david larsson
for dynamic websites if I'm not mistaken. Thanks, James Crake-Merani Im not sure this fully qualifies as a static site generator, but there is also Tekuti: https://wingolog.org/projects/ I experimented with using it a bit, but couldn't stave off spam posters, so almost forgot about

Re: Static site generator

2023-01-13 Thread Massimiliano Gubinelli
not take much to set up and publish. Using TeXmacs allows to reduce the burden in the static site generator since the webpages are directly produced by the TeXmacs HTML converter (which is written in scheme like many of the converters) and there is a simple scheme script which automatically

Re: Static site generator

2023-01-13 Thread James Crake-Merani
On 13/01/2023 17:53, Jack Hill wrote: On Fri, 13 Jan 2023, James Crake-Merani wrote: Hi, I was wondering if you guys are aware of any static site generators written in Guile. I'm looking for something that can be extended in Guile so I can write my own code for it in Scheme. I'm aware of

Re: Static site generator

2023-01-13 Thread Jack Hill
On Fri, 13 Jan 2023, James Crake-Merani wrote: Hi, I was wondering if you guys are aware of any static site generators written in Guile. I'm looking for something that can be extended in Guile so I can write my own code for it in Scheme. I'm aware of GNU Artanis but to my knowledge this is

Re: Static site generator

2023-01-13 Thread Olivier Dion via General Guile related discussions
On Fri, 13 Jan 2023, James Crake-Merani wrote: > Hi, > > I was wondering if you guys are aware of any static site generators > written in Guile. I'm looking for something that can be extended in > Guile so I can write my own code for it in Scheme. I'm aware of GNU > Artanis but to my knowledge

Static site generator

2023-01-13 Thread James Crake-Merani
Hi, I was wondering if you guys are aware of any static site generators written in Guile. I'm looking for something that can be extended in Guile so I can write my own code for it in Scheme. I'm aware of GNU Artanis but to my knowledge this is only for dynamic websites if I'm not mistaken.