Re: How to include global HTML attributes in posts in Haunt Static Site Generator

2025-03-24 Thread Tomas Volf
Hi, Pon Arun Kumar R writes: > Objective: To include additional metadata in the post content file in > markdown. For example: lang : en-US translate="Yes" when added to the post > markdown content file, the expected rendering of the html of the blog post > content is .content of the blog > p

Re: How to include global HTML attributes in posts in Haunt Static Site Generator

2025-03-21 Thread Pon Arun Kumar R
(atom-feeds-by-tag))) 13. created the file hello.md under homesite/posts title: My first blog post date: 2025-03-18 18:53 lang: en-US author: Metadata Guile User --- # My First Blog Post ## lets learn to haunt using guile Haunt seems to be the best static site generator *SSG

Re: How to include global HTML attributes in posts in Haunt Static Site Generator

2025-03-21 Thread Thompson, David
(atom-feed) >(atom-feeds-by-tag))) > 13. created the file hello.md under homesite/posts > title: My first blog post > date: 2025-03-18 18:53 > lang: en-US > author: Metadata Guile User > --- > # My First Blog Post > ## lets learn to hau

Re: How to include global HTML attributes in posts in Haunt Static Site Generator

2025-03-21 Thread Thompson, David
On Thu, Mar 20, 2025 at 5:50 PM Tomas Volf <~@wolfsden.cz> wrote: > > Pon Arun Kumar R writes: > > > Questions: > > 1. Which module in haunt needs to be modified? is it the module where the > > metadata key value pairs are passed on to render the html? > > I do not think there is anything in haunt

How to include global HTML attributes in posts in Haunt Static Site Generator

2025-03-20 Thread Pon Arun Kumar R
Objective: To include additional metadata in the post content file in markdown. For example: lang : en-US translate="Yes" when added to the post markdown content file, the expected rendering of the html of the blog post content is .content of the blog post. Example: myfirstblogpost.md titl

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 "F

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 a

Re: Static site generator

2023-01-13 Thread david larsson
is is only 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

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 G

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 o

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.