IRC channel logs

2024-11-26.log

back to list of logs

<lloda>daviid: will do...
<graywolf>Would there happen to be reStructuredText parses for guile?
<graywolf>parser&
<dsmith>sneek, guile-software?
<sneek>Its been said that guile-software is http://sph.mn/foreign/guile-software.html Send an email to tantalum, <sph at posteo dot eu> to make changes or post a new project.
<dsmith>graywolf, I don't see anything there ^^
<graywolf>Oh that is a useful link.
<graywolf>So I guess I will round-trip via markdown
<graywolf>Oh, even better, pandoc can convert it to texi and after light sed-ing I can just load it using (texinfo) module.
<graywolf>Is there a way to "namespace" patterns defined using (ice-9 peg)?
<ekaitz>graywolf: put them in a module?
<ekaitz>are you going for string-peg or only for peg?
<ekaitz>in the case you are going for string-peg, I made a full rewrite of it that and sent the patch to the ml
<ekaitz>as for PEG janneke sent a set of patches that add error reporting and some other stuff
<ekaitz>i suggest you to take a look into the error reporting one
<graywolf>Thanks, will check that out. Yeah this is a single script, to I do not really have a separate module to put it into. Wait, I can just use define-module multiple times, right?
<graywolf>But I guess geiser will get confused a bit
<graywolf>Is my understanding regarding PEG that it can produce just strings? So convertions to numbers I need to do later when going through the tree?
<graywolf>Interesing, it seems I am not able to call define-peg-pattern from a syntax case... https://paste.debian.net/1336976/ Any ideas? It works fine with define-macro
<mwette>graywolf: maybe you mean `(symbol->string (quote type))'
<graywolf>That does not seem to help
<graywolf>The error message contains the #<syntax:unknown file:804:41 quote>, but other than that the error is the same
<mwette>what is Default supposed to be
<mwette>I have something working but it chokes on Default. (I don't know peg syntaxx.) I converted to #`(define-peg-pattern type all (and (ignore #,(symbol->strings (syntax->datum #'type)))) (ignore " ") Default)
<graywolf> https://paste.debian.net/1336981/
<graywolf>^ Default
<graywolf>Ah thanks a lot, will give it a try :)
<cow_2001>dthompson: think it would be okay if we had a blog post reader for org-mode using emacs itself? maybe an optional dependency? i wrote an elisp script yesterday that first exports into markdown, then lets haunt do the reading, but maybe it could be a direct path from org to html using elisp?
<cow_2001>it is kind of.. uh.. mucking about with it until it finally worked https://codeberg.org/kakafarm/kaka.farm/src/branch/master/export-org-files.el