System: macOS Sequoia 15.6
- Install official macOS release binary for Pandoc 3.9 from GitHub
- Start Pandoc server:
pandoc server
- Query:
curl -s http://127.0.0.1:3030/ \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"text": "Hello World",
"from": "markdown",
"to": "html5"
}'
- Result:
GHC.Internal.Event.Thread.getSystemTimerManager: the TimerManager requires linking against the threaded runtime
CallStack (from HasCallStack):
error, called at libraries/ghc-internal/src/GHC/Internal/Event/Thread.hs:290:13 in ghc-internal:GHC.Internal.Event.Thread
With version 3.8.3 I get correct output:
{"output":"<p>Hello World</p>","base64":false,"messages":[]}
System: macOS Sequoia 15.6
pandoc serverWith version 3.8.3 I get correct output: