Toots for pandoc@fosstodon.org account

Written by pandoc on 2025-02-04 at 13:35

Evan Silberman wrote an interesting post that describes the process which led to the contribution of the mdoc reader.

https://duckrabbit.tech/articles/mdoc.html

[#]pandoc #haskell #blogpost

=> More informations about this toot | View the thread

Written by pandoc on 2025-02-04 at 08:42

Massimiliano Farinella wrote #pundok, a visual #editor for #pandoc. The editor is based on pandoc's internal format, so no information is lost when transferring the documents to pandoc for further processing.

The editor is written using #ProseMirror and #Tiptap; it can be included in web pages or be run standalone (via Electron).

https://github.com/massifrg/pundok-editor

=> More informations about this toot | View the thread

Written by pandoc on 2025-01-27 at 14:06

Use locally installed fonts in the LaTeX Docker container by mounting your fonts directory to /usr/local/share/fonts, e.g.

docker --volume=/usr/share/fonts:/usr/local/share/fonts pandoc/latex …

Should work with XeLaTeX and LuaLaTeX PDF engines as well as with the "typst" container.

[#]pandoc #TeXLaTeX #typst #fonts #docker

=> More informations about this toot | View the thread

Written by pandoc on 2025-01-22 at 10:35

Apologies for the prolonged break. We're back with the announcement of fresh #Docker images for #pandoc 3.6.2.

https://hub.docker.com/u/pandoc

=> More informations about this toot | View the thread

Written by pandoc on 2024-12-09 at 13:58

The respective Docker images are now available via Docker Hub or the GitHub Container Registry.

Changes:

• Alpine-based images now use Alpine Linux 3.21

• Typst was bumped to version 0.12.0

https://hub.docker.com/u/pandoc

https://github.com/orgs/pandoc/packages?repo_name=dockerfiles

[#]pandoc #docker #alpine #typst

=> More informations about this toot | View the thread

Written by pandoc on 2024-12-09 at 09:20

🆕 #pandoc 3.6 has been released:

• Support for #mdoc as input format

• Improved parsing of #reStructuredText

• #Typst 0.12 support

• Safe handling of --embed-resources when combined with --sandbox

The default templates for LaTeX, ConTeXt, and Typst have been updated.

https://github.com/jgm/pandoc/releases/tag/3.6

=> More informations about this toot | View the thread

Written by pandoc on 2024-12-05 at 13:54

Docker Support was very helpful, the Open Source subscription has been reinstated.

All things are back to normal.

=> More informations about this toot | View the thread

Written by pandoc on 2024-12-02 at 12:50

It seems the pandoc organization on Docker Hub is no longer listed as "Sponsored Open Source", and we received a notice that our subscription has been cancelled. We don't know yet what's going on and are working to restore the Open Source status.

The default Docker Hub rate limits now apply to pandoc images, which might lead to issues for some users.

=> More informations about this toot | View the thread

Written by pandoc on 2024-11-15 at 10:33

Pandoc compiled to Wasm (WebAssembly), which enables live conversions in the browser.

• Live demo: https://tweag.github.io/pandoc-wasm/

• Repository: https://github.com/tweag/pandoc-wasm

Amazing work by @terrorjack and the ghc-meta-wasm folks!

[#]pandoc #Wasm #ghc

=> More informations about this toot | View the thread

Written by pandoc on 2024-11-07 at 08:01

GitHub Actions users can now pull pandoc Docker images from the ghcr (GitHub Container Registry): just prefix the image name with ghcr.io/, e.g., ghcr.io/pandoc/core:latest-ubuntu.

[#]pandoc #Docker #github

=> More informations about this toot | View the thread

Written by pandoc on 2024-11-06 at 11:41

Reminder that pandoc's "emoji" extension allows to express yourself via emoji names. E.g.,

:scream:

=> More informations about this toot | View the thread

Written by pandoc on 2024-11-04 at 08:04

The "pandoc user's guide" Markdown file is part of the executable; it can be accessed by running

pandoc --print-default-data-file MANUAL.txt

Use

pandoc --print-default-data-file MANUAL.txt | pandoc …

to convert it to any pandoc-supported format. E.g., to read it in a terminal, try --to=ansi.

[#]pandoc #userguide #manual

=> More informations about this toot | View the thread

Written by pandoc on 2024-11-01 at 20:47

Water.css is a "drop-in collection of CSS styles to make simple websites just a little nicer." It works well with the HTML documents produced by pandoc, and so it simplifies the production of styled webpages.

pandoc -s --css='https://cdn.jsdelivr.net/npm/water.css@2/out/water.min.css' …

https://watercss.kognise.dev/

[#]pandoc #watercss #html

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-31 at 08:52

Do you like scary things and good typography? CTAN, the package repository for one of the pinnacles of typesetting, got a Halloween makeover. 👻 🎃

https://ctan.org

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-23 at 09:24

Pandoc is written in #Haskell (https://haskell.org), an advanced, purely functional programming language. It was chosen for its great parser support, which was ahead of its time when pandoc was born in 2006. The language is also uniquely suited for a long-lived project, as the strong typing helps tremendously to keep things maintainable.

[#]pandoc

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-22 at 08:48

We now provide pandoc/typst Docker images.

https://hub.docker.com/r/pandoc/typst

[#]pandoc #docker #typst

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-21 at 18:35

Pandoc Docker images, starting with those for pandoc 3.5, are now multi-platform, meaning they are available for amd64 (x86-64) and arm64 (aarch64). This should give significant performance improvements for Docker users with ARM processors.

LaTeX images are multi-platform only when using the 3.5-ubuntu tags.

[#]pandoc #docker #multiplatform

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-21 at 18:36

Tips on how to get a plain TeXLive installation working on arm64 running Alpine would be very welcome.

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-17 at 09:31

The pandoc/actions/setup action offers an easy and platform independent way to use pandoc in a GitHub Action.

jobs:

  pandoc:

    steps:

      - name: Install pandoc

        uses: pandoc/actions/setup@v1

      - name: Run pandoc

        run: pandoc --version

A specific pandoc version can be set via the version argument:

- uses: pandoc/actions/setup@v1

  with:

    version: 3.5

Repo: https://github.com/pandoc/actions

[#]pandoc #ci #github_actions

=> More informations about this toot | View the thread

Written by pandoc on 2024-10-07 at 08:55

Docker images for pandoc 3.5. are now available on Docker Hub

https://hub.docker.com/r/pandoc/minimal

https://hub.docker.com/r/pandoc/core

https://hub.docker.com/r/pandoc/latex

https://hub.docker.com/r/pandoc/extra

[#]pandoc #Docker

=> More informations about this toot | View the thread

=> This profile without reblog | Go to pandoc@fosstodon.org account

Proxy Information
Original URL
gemini://mastogem.picasoft.net/profile/109251153866080223/reblog
Status Code
Success (20)
Meta
text/gemini
Capsule Response Time
370.379619 milliseconds
Gemini-to-HTML Time
4.577814 milliseconds

This content has been proxied by September (3851b).