public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* ANN: pandoc 3.1.1
@ 2023-03-05 23:21 John MacFarlane
       [not found] ` <E94CAFF6-7A7A-416B-8391-814ACD294FA2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: John MacFarlane @ 2023-03-05 23:21 UTC (permalink / raw)
  To: pandoc-announce-/JYPxA39Uh5TLH3MbocFFw,
	pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

I'm pleased to announce the release of pandoc 3.1.1,
available in the usual places:

Binary packages & changelog:
https://github.com/jgm/pandoc/releases/tag/3.1.1

Source & API documentation:
http://hackage.haskell.org/package/pandoc-3.1.1

Mostly this is a bugfix release.  There are two changes to the
Lua API:

- New function pandoc.system.cputime
- New module pandoc.json for JSON conversion

Thanks to all who contributed, especially new contributors
Mikołaj Machowski, Morgan Willcock, Pavol Otto, and arcnmx.


-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/E94CAFF6-7A7A-416B-8391-814ACD294FA2%40gmail.com.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ANN: pandoc 3.1.1
       [not found] ` <E94CAFF6-7A7A-416B-8391-814ACD294FA2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2023-03-06  8:54   ` BPJ
       [not found]     ` <CADAJKhDLCDsuwa6ckLRU8iY7qDJMLV1BH0bSyzsOPqnZMyduzA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: BPJ @ 2023-03-06  8:54 UTC (permalink / raw)
  To: pandoc-discuss; +Cc: pandoc-announce-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 1068 bytes --]

- New module pandoc.json for JSON conversion
>

Thanks for this one!



> Thanks to all who contributed, especially new contributors
> Mikołaj Machowski, Morgan Willcock, Pavol Otto, and arcnmx.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/E94CAFF6-7A7A-416B-8391-814ACD294FA2%40gmail.com
> .
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDLCDsuwa6ckLRU8iY7qDJMLV1BH0bSyzsOPqnZMyduzA%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 2190 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ANN: pandoc 3.1.1
       [not found]     ` <CADAJKhDLCDsuwa6ckLRU8iY7qDJMLV1BH0bSyzsOPqnZMyduzA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2023-03-06 12:47       ` Albert Krewinkel
       [not found]         ` <877cvudoov.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Albert Krewinkel @ 2023-03-06 12:47 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> writes:

>>    - New module pandoc.json for JSON conversion
>
> Thanks for this one!

Minor heads up: nested AST elements can lead to problems. E.g., this
fails:

    pandoc.json.encode{x = pandoc.Str'a'}

I've fixed this upstream, but there are a few more issues in other hslua
packages that I want to improve before we can include the fixes in
pandoc.

-- 
Albert Krewinkel
GPG: 8eed e3e2 e8c5 6f18 81fe  e836 388d c0b2 1f63 1124


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ANN: pandoc 3.1.1
       [not found]         ` <877cvudoov.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
@ 2023-03-07  8:49           ` BPJ
  0 siblings, 0 replies; 4+ messages in thread
From: BPJ @ 2023-03-07  8:49 UTC (permalink / raw)
  To: pandoc-discuss

[-- Attachment #1: Type: text/plain, Size: 1624 bytes --]

Den mån 6 mars 2023 13:56Albert Krewinkel <albert+pandoc-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
skrev:

>
> BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> writes:
>
> >>    - New module pandoc.json for JSON conversion
> >
> > Thanks for this one!
>
> Minor heads up: nested AST elements can lead to problems.


No problem right now: I'm mainly interested in being able to load plain
data from files — filter configuration and the like.


E.g., this
> fails:
>
>     pandoc.json.encode{x = pandoc.Str'a'}
>
> I've fixed this upstream, but there are a few more issues in other hslua
> packages that I want to improve before we can include the fixes in
> pandoc.
>
> --
> Albert Krewinkel
> GPG: 8eed e3e2 e8c5 6f18 81fe  e836 388d c0b2 1f63 1124
>
> --
> You received this message because you are subscribed to the Google Groups
> "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/877cvudoov.fsf%40zeitkraut.de
> .
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBB3y%3DHPQOaNo_UCpZu_MQRzAoxrroOWqBA4-dkc0cfdA%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 2900 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-07  8:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-05 23:21 ANN: pandoc 3.1.1 John MacFarlane
     [not found] ` <E94CAFF6-7A7A-416B-8391-814ACD294FA2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2023-03-06  8:54   ` BPJ
     [not found]     ` <CADAJKhDLCDsuwa6ckLRU8iY7qDJMLV1BH0bSyzsOPqnZMyduzA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-06 12:47       ` Albert Krewinkel
     [not found]         ` <877cvudoov.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
2023-03-07  8:49           ` BPJ

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).