Re: Groovy Markdown 2.2.0 release
Paul King <[email protected]> Tue, 15 Apr 2025 20:37:35 +1000
| Newsgroups | gmane.comp.lang.groovy.user |
|---|---|
| Message-ID | <CAMbkE7Ret1omt+6toxgByxNpDu9g1iguWGKi4KbZnYGXeyBQHA@mail.gmail.com> |
Nice! On Fri, Apr 11, 2025 at 6:27 AM Per Nyfelt <[email protected]> wrote: > > Hi, > > Maybe this is of interest to people here. > > I just released a new version of gmd (Groovy Markdown) which is a way to write markdown with executable groovy code snippets very similar to the rmd package for R and an essential part reproducible research. > > This allows you to do things like this > > # Example > ```{groovy} > a = 23 > out.println('a calculation') > ``` > 12 + a = `= 12 + a` > > Which gmd will convert to the following markdown > > # Example > ```groovy > a = 23 > out.println('a calculation') > ``` > a calculation > 12 + a = 35 > > gmd can also convert it directly to html and pdf. It supports the matrix library out of the box so will render Matrix tables and Charts without any conversions needed. > > The project is located at https://github.com/Alipsa/gmd > > Best regards, > > Per