pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/converters/hs-pandoc



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Jan 10 10:35:57 UTC 2025

Modified Files:
        pkgsrc/converters/hs-pandoc: Makefile PLIST buildlink3.mk distinfo
            version.mk

Log Message:
converters/hs-pandoc: update to pandoc-3.6.1

## pandoc 3.6.1 (2024-12-23)

  * Allow YAML bibliographies to be arrays of references (#10452).
    Previously, they had to be YAML objects with a `references` key.

  * Change `--template` to allow use of extensionless templates (#5270).
    The intent is to allow bash process substitution: e.g.,
    `--template <(echo "foo")`. Previously pandoc *always* added an
    extension based on the output format, which caused problems
    with the absolute filenames used by bash process substitution
    (e.g. `/dev/fd/11`). Now, if the template has no extension,
    pandoc will first try to find it without the extension, and
    then add the extension if it can't be found. So, in general,
    extensionless templates can now be used. But this has been
    implemented in a way that should not cause problems for
    existing uses, unless you are using a template `NAME.FORMAT`
    but happen to have an extensionless file `NAME` in the template
    search path.

  * Allow `--shift-heading-level-by=-1` to work in djot in the same way
    it works for other formats (with the top-level heading being
    promoted to metadata title) (#10459).  This needed special
    treatment because of the way djot surrounds sections with Divs.

  * RST reader:

    + Handle explicit reference links (#10484, Evan Silberman).
      This case was missed when changing the reference link strategy for
      RST to allow a single pass. (It is a regression in pandoc 3.6.)

  * Markdown reader:

    + Use T.P.URI's `pBase64DataURI` in parsing data URIs (#10075,
      Evan Silberman and John MacFarlane).
    + More efficient base64 data URI parsing (#10075, Evan
      Silberman and John MacFarlane). This should yield dramatic
      performance improvements for markdown documents containing
      large data URIs in images.

  * HTML reader:

    + Don't canonicalize data: URIs (#10075). It can be very expensive
      to call network-uri's URI parser on these.

  * LaTeX reader:

    + Handle `figure*` environment as a figure (#10472).

  * MediaWiki reader:

    + Allow empty quoted attributes (#10490).
    + Allow cells starting with `+` (#10491).

  * Textile reader:

    + Improve parsing of spans (#9878). The span needs to be separated
      from its surroundings by spaces. Also, a span can have attributes,
      which we now attach.
    + Inline constructors shouldn't trigger if closer is preceded by
      whitespace (#10414).

  * Docx writer:

    + Put chapters in separate sections, and restart footnotes
      by section by default (#2773). The main effect of this change is that
      when `--top-level-division=chapter` is used, chapters will start on
      a new page and footnote numbering will restart for each chapter.
      Both of these defaults can be overridden in the reference.docx.
    + Use styleIds not styleNames for Title, Subtitle, etc.
      (#10282). This fixes a regression introduced in pandoc 3.5.
      This change affects the default openxml template as well as the
      OpenXML writer.

  * Markdown writer:

    + Avoid collapsing of initial/final newline in markdown raw blocks.
      This makes it easy to write a filter that adds extra blank lines
      before certain elements (#10477).

  * Mediawiki writer:

    + Escape line-initial characters that would otherwise be interpreted
      as list starts (#9700).

  * LaTeX writer:

    + Properly handle boolean value for `csquotes` variable (#10403).
    + Use displayquote for block quotes with `csquotes` (#10456).

  * HTML writer:

    + Avoid calling parseURIString for data URIs (#10075).
      This was done to determine the "media category," but we can
      get that directly from the mime component of data: URIs.

  * Typst writer:

    + Properly handle data URIs in images (#10460).

  * LaTeX/Beamer templates:

    + Fix default.beamer `nocite` location (Thomas Hodgson).
      It must be inside a frame or it is ignored (#10465).
    + Move nocites from LaTeX preamble to body (#10461, Thomas
      Hodgson). Putting `\nocite` in the preamble works only with biblatex.

  * Text.Pandoc.Parsing:

    + Correct example in comment on `charsInBalanced` (Evan Silberman).

  * Text.Pandoc.Error:

    + Mention typst in rendering `PandocUnknownWriterError` for `pdf`
      (Evan Silberman).

  * Text.Pandoc.MediaBag:

    + `insertMedia`: fast path for data URIs. Avoid the slow URI
      parser from network-uri on large data URIs (#10075).

  * Text.Pandoc.Class:

    + Add shortcut for base64 data URIs in `downloadOrRead` (#10075).
      This avoids calling the slow URI parser from network-uri on
      data URIs, instead calling our own parser.

  * Text.Pandoc.MIME:

    + Fix `extensionFromMimeType`. We had a few special cases encoded,
      but as previously written they wouldn't work properly with
      modifiers like `;charset=utf-8`.

  * Text.Pandoc.URI:

    + Export `pBase64DataURI`.  Modify `isURI` to use this and avoid
      calling network-uri's inefficient `parseURI` for data URIs.

  * Text.Pandoc.PDF:

    + Fix temp file extension in `toPdfViaTempFile` (#10468).
      This fixes a regression in pandoc 3.6, which changed
      the extension from `html` to `source`. Apparently
      `wkhtmltopdf` needs it to be `.html`.  So now we have added
      a parameter to `toPdfViaTempFile` that allows the extension
      to be specified in a way that is appropriate to the PDF engine
      used.

  * Lua (Albert Krewinkel):

    + Support more elements as input to `pandoc.utils.stringify`
      (#10450). Elements of type Caption, Cell, TableHead, and TableFoot
      can now be stringified.
    + Add `Caption` constructor to `pandoc` module.

  * Miscellaneous code quality improvements (Joseph C. Sible).

  * Depend on citeproc 0.8.1.2, skylighting and skylighting-core
    0.14.5.

  * `doc/lua-filters.md: Fix links to constructors (Albert Krewinkel).

## pandoc 3.6 (2024-12-07)

  * Add `mdoc` as input format (Evan Silberman). This change
    introduces a reader for mdoc, a roff-derived semantic markup
    language for manual pages. This reader has been developed almost
    exclusively against mandoc's documentation and implementation of
    mdoc as a reference, and the real-world manual pages tested
    against are those from the OpenBSD base system. Of ~3500 manuals
    in mdoc format shipped with a fresh OpenBSD install, 17 cause the
    mdoc reader to exit with a parse error. Any further chasing of
    edge cases is deferred to future work.

  * New module: Text.Pandoc.Readers.Mdoc, exporting `readMdoc` [API change].

  * Issue warnings for duplicate YAML metadata keys (#10312).

  * Ensure that `--sandbox` affects `--embed-resources`. Previously it
    did not (contrary to what was implied by the manual), which means
    that an image with URL `/etc/passwd` would leak an encoded version
    of that file to HTML output with `--self-contained` or
    `--embed-resources`, even if `--sandbox` was used. Thanks to
    Samuel Mortenson for pointing out the issue.

  * Text.Pandoc.App.OutputSettings: add `sandbox'` function.
    This computes the sandboxed files from Opt and avoids code repetition.

  * Docx reader:

    + Parse index references as empty spans with attributes (#10171).
      Attributes included are `entry`, and optionally `bold`, `italic`,
      `yomi`, `see`.
    + Don't create multiple paragraphs for title or subtitle (#10359).
      If there are multiple paragraphs with Title or Subtitle style,
      use only the first for metadata.
    + Handle case where Zotero `itemData` has different id from the
      `citationItem` id.  In this case we use the `citationItemId`
      in the bibliography as well, overriding the `referenceId`
      in the itemData (#10366).

  * LaTeX reader:

    + Put parsed minipage in specially marked Div (#10266).

  * HTML reader:

    + Parse footnotes defined by dpub-aria roles (#5294).

  * MediaWiki reader:

    + Fix indented tables with caption (#10390).
    + Fix parsing of col/rowspan (#6992).

  * Typst reader:

    + Avoid generating empty paragraphs.
    + Support `underparen`, `overparen`.
    + Fix `#quote` attribution. If attribution is not present, don't print
      the `--` (#10320).
    + Fix typo in unicode code point for em dash (see #10320).

  * Commonmark reader:

    + `implicit_figures` should check for empty caption
      and not produce an implicit figure in this case (#10429).

  * RST reader:

    + Use a new one-pass parsing strategy. Instead of having an initial pass
      where we collect reference definitions, we create links with target
      `##SUBST##something` or `##REF##something` or `##NOTE##something`,
      and resolve these in a pass over the parsed AST. This allows us to handle
      link references that are not at the top level (#10281).
    + Ignore newlines in URL in explicit link (#10279).
    + Handle block level substitutions.
    + Support `:file:` on raw directive (#8584).
    + Implement option lists (#10318).
    + Avoid putting metadata in Para (#7766). Create MetaInlines when possible,
      just as with markdown input. MetaBlocks is still used when there are
      multiple paragraphs or non-paragraph content.
      This change also affects field lists.
    + Fix linked substitutions (#6588). E.g. `|Python|_`.
    + Support inline anchors (#9196).
    + Explicit links define references (#5081). For example,
      ``Go to `g`_ `g <www.example.com>`_.`` should produce two links to
      www.example.com.

  * EPUB writer:

    + Use standardized filename for cover image instead of the original name
      (#10404). This avoids problems with e.g. filenames containing spaces.

  * Markdown writer:

    + Issue INFO warning when not rendering table, e.g., when `raw_html` is
      disabled and the table can't be fit into a supported markdown table
      format (#10407).
    + Respect empty LineBlock lines in `plain` output (Evan Silberman).
      The plain writer behaved as a markdown variant with `Ext_line_blocks`
      turned off, and so empty lines in a line block would get eliminated.

  * LaTeX writer:

    Ensure that beamer footnotes go on frame, not column (#5769).

  * HTML writer:

    + Unwrap empty incremental divs (#10328, Albert Krewinkel).
      Divs are unwrapped if the only purpose of the div seems to be to control
      whether lists are presented incrementally on slides.

  * Typst writer:

    + Make template sensitive to a `page-numbering` variable (#10370).
      This can be set to an empty string (or, in metadata, to false) for
      no page numbers.
    + Make `smart` extension work (#10271). If `smart` is not enabled, a command
      in the default template will disable smartquote substitutions.
      When `smart` is enabled, render curly apostrophes as straight
      and escape straight apostrophes. When `smart` is disabled,
      render curly apostrophes as curly and don't escape straight
      apostrophes. Similarly for quotes, em and en dashes. This should
      give more idiomatic typst output, with fewer unnecessary
      escapes.

  * ANSI writer:

    + Respect empty LineBlock lines (Evan Silberman).

  * JATS writer:

    + Correct spelling of suppress attribute (#10350, Andreas Deininger).

  * Typst template:

    + Remove `definitions.typst` partial.
    + Remove unnecessary definition of `endnote`.
    + Incorporate the one remaining definition into `default.typst`.
    + Use typst 0.12 code for two column layout (#10294, Luis Rivera).
    + Note: the new templates presuppose typst 0.12; if you try to use an
      earlier version of typst, an error will be raised.

  * LaTeX/Beamer template:

    + Split `fonts.latex` partial into two parts: `fonts.latex` and
      `font-settings.latex`.
    + In beamer template, load beamer theme between `fonts.latex` and
      `font-settings.latex`. This allows a theme (such as metropolis)
      to set its own default font, while still allowing the user to
      override it. This fixes a regression in pandoc 3.5 (#10297).
    + Note: Users who have custom templates based on pandoc 3.5 templates will
      need to add `font-settings.latex()` after `fonts.latex()` in the
      latex template. In a beamer template, the beamer theme-setting
      code needs to be moved between these two partials.

  * ConTeXt template: Ensure that font names don't wrap (#10305).

  * `epub.css`: remove background-color (#10264, Suraj Patil).
    With this greyish background color, epubs look bad on a Kindle (#10263).

  * Text.Pandoc.ImageSize: add WebP support (Evan Silberman, #10397).
    Add `Webp` constructor on ImageType [API change].

  * Text.Pandoc.Readers.Roff and a new unexported module
    Text.Pandoc.Readers.Roff.Escape: parameterize Roff
    escaping (Evan Silberman) [API change]. This allows code to
    be reused between the mdoc and man readers, despite the
    differing Token types.

  * Text.Pandoc.PDF:

    + PDF via LaTeX: always do max runs if `toc` is present (#10308).
      The old method (checking to see if toc hash had changed) is not
      completely reliable.
    + Use `.source` extension, not `.html`, in `toPdfViaTempFile` (#10314).

  * Text.Pandoc.Logging: add `YamlWarning` constructor to `LogMessage`
    [API change] (#10312).

  * Text.Pandoc.Format: remove duplicate typst entry (#10388, Caleb Mclennan).

  * Fix a typo in the `ua.yaml` localization for 'See' (Jens).

  * Lua subsystem (Albert Krewinkel):

    + Remove prefixes from Lua type names (#8574). Lua type names were
      inconsistent with regard to the use of prefixes; all prefixes
      are removed now, and Lua types now have the same name as the
      Haskell types. The use of app-specific prefixes is suggested by
      the Lua manual to avoid collisions. However, this shouldn't be a
      problem with pandoc, as it cannot be used as a Lua package.

  * doc/libraries.md: Add newly developed Haskell packages.
    Sort list alphabetically (Albert Krewinkel).

  * doc/lua-filters.md: document `pandoc.List:iter` method (Albert Krewinkel).
    List objects have a new function `iter` that returns an iterator
    function that returns the next list item on each call.

  * MANUAL.txt:

    + Clarify what the example of YAML EPUB metadata shows (#10405).
    + Fix typo in template syntax (#10265, Pascal Wagler).
    + Update manual with information on openxml template (#10273).
    + Clarify that `--variable` can only assign string values (#10298).

  * Fix comments in TEI writer referring to DocBook (#10430, Evan Silberman).

  * Fix several typos in documentation (#10349, Andreas Deininger).

  * Allow Diff 1.0.

  * Add font-settings.latex partial to pandoc.cabal (#10379).

  * Bump upper bound for data-default.

  * Use latest typst, texmath, pandoc-lua-marshal, commonmark-pandoc,
    commonmark-extensions, skylighting, skylighting-format-blaze-html.

## pandoc 3.5 (2024-10-04)

  * Add command-line options `--list-of-figures/--lof` and
    `--list-of-tables/--lot` (#10029, Akash Patel).
    Only docx, latex, and context are affected by these options currently.
    Setting the `lof` and `lot` variables will also work for the formats
    that are currently supported.

  * Defaults files:  interpolation of environment variables now
    works for `to` and `from` fields (#8024). This is needed because
    these files can contain paths of custom readers/writers.

  * Docx reader:

    + Reset lists after headers in same list `numId` (#10258).
      To accomplish this, we add a Heading constructor to BodyPart and
      include on it all the information list items have.

  * DocBook reader:

    + Parse id, class, and tabstyle on tables (#10181, Erik Rask).
      Add parsing of id (xml:id), class, and tabstyle XML attributes
      for table and informaltable in the DocBook reader.
      The tabstyle value is put in the 'custom-style' attribute.

  * Dokuwiki reader:

    + Be more forgiving about misaligned lists, like dokuwiki itself (#8863).
    + Improve blockquote parsing in dokuwiki. Allow for quoted code blocks.
    + Enable smart extension.
    + Properly parse `--` and `---` as dashes.
    + Fix block quote behavior (#6461). Blockquotes are not really block
      containers in DokuWiki; the lines are interpreted literally (so,
      e.g., you can't start a list), and line breaks are added at the ends.

  * EPUB reader:

    + Fix links to other files in the EPUB, making them internal links
      to a fragment derived from the filename (#10207).  There was
      already code to handle links like `#foo`, but not to handle links
      like `ch0001.html#foo`.

  * LaTeX reader:

    + Add em, ex, px, mu to list of units for dimension args (#10212).

  * ANSI writer:

    + Fix subscripts (Evan Silberman).

  * DokuWiki writer:

    + Don't emit `<HTML>` tags (#7413). The use of these tags is now
      strongly discouraged for security reasons, and will be removed.
      We previously used them as a fallback for lists that could not
      be represented using DokuWiki syntax, e.g. ordered lists with
      fancy numbers or lists with multiple blocks in their items.
      We also used them for block quotes with multiple blocks as
      their contents. We now use the `<WRAP>` syntax (from the optional
      WRAP plugin) to handle lists with multiple blocks as their contents.
      A new method of handling block quotes with complex contents
      has the side benefit of also handling nested block quotes,
      which weren't supported before.
      `<HTML>` and `<html>` tags are only for raw HTML blocks and
      inlines, and only if the `raw_html` extension is enabled. (It is
      now a valid extension for `dokuwiki`, though off by default.)

  * Docx writer:

    + Support `--list-of-figures` and `--list-of-tables` (or `lof` and
      `lot` variables) (Akash Patel).

  * HTML writer:

    + Don't emit missing title/lang warnings if templates does not
      contain the `pagetitle` or `lang` variables respectively (#9370).

  * LaTeX writer:

    + Better fix for lists in definition lists (#10241).
      In commit a26ec96d89ccf532f7bca7591c96ba30d8544e4a we added an
      empty `\item[]` to the beginning of a list that occurs first
      in a definition list, to avoid having one item on the line with
      the label. This gave bad results in some cases (#10241) and there
      is a more idiomatic solution anyway: using `\hfill`.
    + Avoid error on `refs` div with empty citations (#10185).
      If there are no citations, don't emit an empty CSLReferences environment.

  * RST writer:

    + Change bullet list hang from 3 to 2. This accords with the style in
      the RST reference docs.
    + Handle cases where indented context starts with block quote (#10236).
      In these cases we emit an empty comment to fix the point from
      which indentation is measured; otherwise the block quote is not
      parsed as a block quote. This affects list items and admonitions.
    + Don't enclose the list table in a `.. table::`; this leads to
      doubled captions (#10226).
    + Fix alignment of list table items corresponding to cells (#10227).

  * JATS template:

    + Support `floats-group` (Albert Krewinkel, see #10196).
      The content of the `floats-group` variable is now rendered in a
      `<floats-group>` element when using the *publishing* or *archiving* tag
      sets.

  * LaTeX and Beamer templates:

    + Split old default.latex into two templates, `default.latex` and
      `default.beamer`, factoring common parts into partials:
      `fonts.latex`, `common.latex`, `passoptions.latex`,
      `hypersetup.latex`, `after-header-includes.latex`.
    + Make `default.beamer` the default template for beamer.
    + Add `shorttitle`, `shortsubtitle`, `shortauthor`, `shortinstitute`,
      `shortdate` variables to beamer template (#10248, Thomas Hodgson).
    + Make `--number-sections` work with beamer (#12045, Thomas Hodgson).
    + Support a list of images for `titlegraphic` in beamer template
      (#10246, Thomas Hodgson). Title graphic options will be
      applied to each title graphic. Images will be separated by `\enspace`.
    + Beamer theme options (#10243)
    + Add theme options to beamer template: `colorthemeoptions`,
      `fontthemeoptions`, `innerthemeoptions`, `outerthemeoptions` (#10243,
      Thomas Hodgson).
    + Don't load amsmath, amssym in beamer template. These are loaded by
      beamer automatically.

  * Text.Pandoc.SelfContained:

    + Improve handling of links to remote CSS (#10261).

  * Text.Pandoc.Class:

    + Allow extracting `data:` URIs even in PandocPure (`--sandbox`)
      (#10249).
    + Export `extractURIData` [API change].

  * Text.Pandoc.PDF:

    + Read `.toc` and `.log` files from output directory (#10186).
      When this is different from the input directory, this is
      where `.toc` and `.log` files are written.

  * Text.Pandoc.Shared:

    + Modify `addPandocAttributes` for changes in commonmark-pandoc.
      The new commonmark-pandoc version automatically adds the
      attribute `wrapper="1"` on all Divs and Spans that
      are introduced just as containers for attributes that belong
      properly to their contents.  So we don't need to add the
      attribute here. This gives much better results in some cases.
      Previously the wrapper attribute was being added even for
      explicit Divs and Spans in djot, but it is not needed in these cases.

  * Text.Pandoc.Options:

    + Add `writerListOfFigures` and `writerListOfTables` fields
      to `WriterOptions` (#8245, Akash Patel). [API change]

  * Text.Pandoc.App:

    + Add `optListOfFigures` and `optListOfTables` to `Opt` (#8245)
      [API change].

  * Lua subsystem (Albert Krewinkel):

    + Update List module (#9835). The module now comes with a method
      `:at(index[, def])` that allows to access indices, accepts
      negative indices to count from the end, and will return the
      `def` value as a default if the list has no item at the given position.
      Furthermore, the list constructor `pandoc.List` now accepts iterators.
      E.g., `pandoc.List(text:gmatch '%S+')` returns the list of words
      in `text`.
    + Support character styling via `pandoc.layout`. The `Doc` values
      produced and handled by the `pandoc.layout` module can now
      be styled using `bold`, `italic`, `underlined`, or `strikeout`. The
      style is ignored in normal rendering, but becomes visible when
      rendering to ANSI output. The `pandoc.layout.render` function
      now takes a third parameter that defines the output style,
      either *plain* or *ansi*.
    + It is now possible to return a single filter from a filter file, e.g.
      ``` lua
      -- Switch single- and double quotes
      return {
        Quoted = function (q)
          elem.quotetype = elem.quotetype == 'SingleQuote'
            and 'DoubleQuote' or 'SingleQuote'
          return elem
        end
      }
      ```
      The filter must not contain numerical indexes, or it might be treated
      as a list of filters.
    + Add `list_of_figures` and `list_of_tables` to writer options
      (Akash Patel).

  * Use latest releases of commonmark, commonmark-pandoc, texmath, djot.

  * Stop depending on package SHA (Albert Krewinkel). Use `crypton` instead.

  * `linux/make_artifacts.sh`: add riscv64 support (Olivier Benz).

  * Fix invalid XML in `test/docx/normalize.docx` (#10242).

  * `doc/lua-filters.md`: list functions in `pandoc.utils` alphabetically
    (Albert Krewinkel).

  * MANUAL.txt:

    + Clarify  use of `beamerarticle` variable (#10250).
    + Add clarification to address user issues like #6704 (Yehuda Katz).

## pandoc 3.4 (2024-09-09)

  * New output format: `ansi` (for formatted console output) (Evan Silberman).
    Most Pandoc elements are supported and printed in a reasonable way, if
    not always ideally. This version does no detection of terminal
    capabilities, nor does it fall back to different output styles for
    less-capable terminals.

  * Add command line options `--table-caption-position` and
    `--figure-caption-position`. These allow the user to specify whether
    to put captions above or below tables and figures, respectively.
    The following output formats are supported: HTML (and related such
    as EPUB), LaTeX (and Beamer), Docx, ODT/OpenDocument, Typst.

  * Change default `--pdf-engine` via HTML to WeasyPrint (#10142).
    `wkhtmltopdf` is deprecated.  `weasyprint` is the easiest-to-install,
    maintained alternative.  For better results, one might prefer
    `pagedjs-cli`.

  * Org reader:

    + Fix parsing of src blocks with an `-i` flag (#10071, Albert Krewinkel).
      Tabs are now preserved in the contents of *src* blocks if the the block
      has the `-i` flag.

  * RTF reader:

    + Handle images inside `shp` contexts (#10145).

  * RST reader:

    + Improve simple table support (#10093). Multiline rows occur
      only when the *first* cell is empty; we were previously treating
      lines with *any* empty cell as row continuations. In addition, we
      no longer wrap multiline cells in Para if they can be represented
      as Plain. This is consistent with docutils behavior.

  * LaTeX reader:

    + Math environments don't have bracketed options (#10160).
    + Parse nested tabular environments (#4746).

  * Typst reader:

    + Change how "block" elements are handled. Previously they were
      always parsed as divs.  But actually they can occur in some "inline"
      contexts.  Now we first try to parse them as inlines, and only as
      blocks if that fails.  A surrounding Div or Span element is added
      only if there is an identifier.

  * HTML reader:

    + Only parse main element's contents (if present) (#10140).
      If main has an id or class, we include a div with that id or class;
      otherwise just the contents.
    + Read TeX annotation in MathML content if present (#9971).
    + Better handle KaTeX-generated math (#9971). KaTeX emits the mathml
      followed by a span with an HTML fallback. Previously pandoc was
      converting both.  We now ignore the HTML fallback span, marked
      with class `katex-html`.

  * Docx reader:

    + Add "SuppressAuthor" and "AuthorOnly" to citationMode
      when `+citations` is used (thomjur).

  * New module: Text.Pandoc.Writers.ANSI [API change] (Evan Silberman).

  * Docx writer:

    + Support `custom-style` attribute for docx table (Sebbones).
    + Support `--number-offsets`.
    + Make table/figure rendering sensitive to caption position settings.

  * OpenDocument writer:

    + Make table/figure rendering sensitive to caption position settings.

  * Typst writer/template:

    + Implement figure caption positions by triggering a show rule in
      the default template, which determines caption positions for
      figures and tables globally.
    + Don't include trailing semicolon after `@` style citations with suffixes
      (#10148).
    + Template: move header-includes before show doc (#9996, Gordon Woodhull).

  * LaTeX writer:

    + Make table/figure rendering sensitive to caption position settings (#5116).
    + Preserve locator labels with `--natbib` (#10057).

  * HTML writer/template:

    + Make `<figcaption>` placement sensitive to caption position
      settings. For tables, `<caption>` must be the first element, and
      positioning is determined by CSS, for here we set a variable
      which the default template is sensitive to.
    + Use `makeSectionsWithOffsets` for `writerNumberOffsets`,
      instead of the old, inefficient code.
    + Don't add doc-biblioref role to every link in a citation;
      only to links to the bibliography (#10156).
    + Add `data-` when rendering `label` attribute (#10048).

  * Markdown writer:

    + Avoid emitting markdown caption if table has fallen back to raw HTML,
      which will then contain a `<caption>` tag (#10094).
    + Make math sensitive to `tex_math_gfm` extension (#9121).
      This means that in GFM output, the "new style" math will be used
      by default, e.g.

          $`x=y`$

          ```math
          x = y
          ```

      To defeat this and get the older behavior, namely

          $x=y$

          $$x=y$$

      one could use `-t gfm-tex_math_gfm`.

  * AsciiDoc writer:

    + Add `link:` prefix when needed (#10105). AsciiDoc requires it
      except for `http`, `https`, `irc`, `mailto`, `ftp` schemes (#10105).
    + Preserve original base level (#10062). We used to normalize so
      that the base level is always 1, but asciidoc no longer seems
      to care about that, and the behavior creates difficulties when
      we are converting fragments.
    + Don't emit empty figure caption (#10047).

  * ODT writer:

    + Add TableCaption to styles.xml (#10058, Ian Max Andolina).

  * LaTeX template:

    + Fix wrong beamer color in (sub)section page (Jonathan).

  * Text.Pandoc.Options:

    + Add `CaptionPosition` and new `WriterOptions` fields
      `writerFigureCaptionPosition` and `writerTableCaptionPosition`
      [API change].

  * Text.Pandoc.Opt:

    + Change default for optNumberOffset to `[]`. This behaves the same as
      `[0,0,0,0,0]`.
    + Add `Opt` fields `optFigureCaptionPosition` and
      `optTableCaptionPosition` [API change].

  * Text.Pandoc.Format: change `formatFromFilePaths` so that it is
    smarter about URLs.  URLs are parsed, and we take the format from
    the path component, if present (#10141). This means that
    `https://emacs.org/` will be treated as HTML, while
    `https://emacs.org/sample.org` will be treated as Org.

  * Text.Pandoc.URI:

    + Add unofficial `gemini:` to list of URI schemes (Pau RE).

  * Text.Pandoc.Shared:

    + Add `makeSectionsWithOffsets` [API change].
    + Remove `stripEmptyParagraphs [API change] (Albert Krewinkel).
      This function is no longer used.

  * Text.Pandoc.Highlighting: Expose `formatANSI` [API change]
    (Evan Silberman).

  * Text.Pandoc.Writers.Shared: export `to{Sub,Super}scriptInline`
    [API change] (Evan Silberman).

  * Remove use of partial functions (e.g. `head`) in code.

  * Use latest skylighting-core, skylighting, doclayout, texmath, typst.

  * pandoc-lua-engine: Add accessors for several writer options, including
    some that were added in previous releases.

  * pandoc-server: Initialize some missing fields in WriterOptions:
    `writerEpubTitlePage`, `writerChunkTemplate`, `writerListTables`,
    `writerFigureCaptionPosition`, `writerTableCaptionPosition`.

  * CONTRIBUTING.md: Summarize steps for adding a new cli option.

  * MANUAL.txt:

    + Clarify that the `--number-offset` option should only
      directly affect numbering of the first section heading in
      a document; subsequent headings will increment normally.
    + Fix asciidoc link (#10039).
    + Fix CSL Docs broken link (#10100, Tristano Ajmone).
    + Document the use of `luatexja` when CJKmainfont is used with lualatex
      (#3873, Kolen Cheung).
    + Add a `citations` (typst) section to the manual (#9127).
    + Clarify that `citations` affects both input and output for `org`.
    + Add note on `--citeproc` that you may need to disable `citations`
      extension on the output format (e.g., `-t markdown-citations`) to
      see the rendered citation (#9127, #10012).

  * INSTALL.md — reorganise info on static binaries and add conda-forge
    install options (#10098, #10069, Ian Max Andolina).

## pandoc 3.3 (2024-07-28)

  * New cli option: `--link-images`.  This causes images to be linked
    rather than embedded in ODT.

  * Allow `--number-sections` to take an optional `true|false` argument.

  * RTF reader:

    + Handle `\*\shppict` without dropping image (#10025).

  * TWiki Reader:

    + Recognize WikiWords as internal links (#9941).
    + Avoid partial function.

  * Typst reader:

    + Ignore 'pad' and just parse its body (#9958).
    + Use typst 0.5.0.5. Fixes parsing of equations like `$1.$`.

  * Docx writer:

    + Fix regression with nested lists (#9994). The bug affects e.g.
      ordered lists with bullet sublists; after the sublist the top-level
      list reverts to bullets instead of being properly numbered.
      This is a regression introduced in version 3.2.1.

  * BibTeX writer:

    + Ensure that "literal" names are enclosed in braces (#9987).

  * Man writer:

    + Use default middle header when metadata does not include `header`
      (#9943).  This change causes pandoc to omit the middle
      header parameter when `header` is not set, rather than
      emitting `""`.  The parameter is optional and man will use
      a default based on the section if it is not specified.

  * HTML templates: don't load polyfill (#9918).
    This was added in a period when MathJaX required polyfill.
    MathJaX no longer recommends this and polyfill should no
    longer be necessary on any reasonably modern browser.

  * Translations:

    + Add `ua.yaml` (Jens Oehlschlägel).
    + Add a script (`tools/update-translations.py`) and Makefile
      target (`update-translations`) to update translation data
      automatically from babel and polyglossia upstream
      (Stephen Huan).
    + Use this script to update language data, increasing the number
      of languages we cover (Stephen Huan).  Fix a few small bugs in
      existing translations.

  * Fix some mistakes with Japanese language code (#9938).
    In several places we were mistakenly assuming that the BCP 47 code for
    Japanese language was `jp`.  It is `ja`.

  * Text.Pandoc.Options:

    + New field in WriterOptions: `writerLinkImages` [API change] (#9815).

  * Text.Pandoc.App.Opt:

    + New field in Opt: `optLinkImages` [API change] (#9815).

  * Lua subsystem:

    + Keep `lpeg` and `re` as "loaded" modules (Albert Krewinkel).
      The modules `lpeg` and `re` are now treated as if they had been
      loaded with `require`. Previously the modules were only assigned
      to global values, but could be loaded again via `require`,
      thereby allowing to use a system-wide installation. However, this
      proved to be confusing.

      The old behavior can be restored by adding the following lines to
      the top of Lua scripts, or to the `init.lua` in the data dir.

          debug.registry()['_LOADED'].lpeg = nil
          debug.registry()['_LOADED'].re = nil

  * `pandoc-cli`: Include pandoc copyright in Lua version info (Albert
    Krewinkel).

  * `pandoc-cli`: Refer printing of version info to the Lua interpreter
    (Albert Krewinkel). The Lua interpreter no longer terminates when
    called with `-v` or `--version` arguments, thus improving
    compatibility with the default `lua` interpreter program.

  * Avoid partial functions in JATS reader, DocBook writer, Haddock reader.

  * Allow tls 2.1.x.

  * MANUAL.txt:

    + Make documentation of extensions clearer (#9060).
    + Fix section level for two Extensions entries.

  * lua-filters.md: Partially autogenerate docs for module `pandoc`
    (Albert Krewinkel). The documentation system isn't powerful enough to
    generate the full documentation automatically.

## pandoc 3.2.1 (2024-06-24)

  * Fix `gfm_auto_identifiers` to replace emojis with their aliases,
    as documented (#9876).

  * CSV reader:

    + Turn line breaks into LineBreaks not SoftBreaks (#9797).

  * Docx reader:

    + Support task lists (#8211).
    + Fix a small bug in parsing delimiters in numbered lists,
      which led to the default delimiter being used wrongly in some cases.
    + Improve handling of captions.
      - Turn captioned images into Figure elements. Closes #9391.
      - Improve the logic for associating elements with captions (#9358).
      - Ensure that captions that can't be associated with an
        element aren't just silently dropped (#9610).
    + Support HorizontalRule. We support both pandoc-style and the style
      described on a Microsoft support page, an empty paragraph with
      a bottom border (#6285).
    + React to `"left"` value on `jc` attribute.
    + Handle column and cell alignments (#8551). We take the column alignments
      from the first body row.
    + Fix a bug that caused comments inside insertions or deletions
      to be ignored (#9833).

  * HTML reader:

    + Better handle non-`li` elements in `ul` and `ol` (#9809).
      For example, a `p` after a closed `li` will be incorporated into
      the previous `li`. This mirrors what browsers do with this
      invalid HTML.

  * LaTeX reader:

    + Fix parsing of dimensions beginning with `.`, e.g. `\kern.1pt` (#9902).

  * Markdown reader:

    + Allow author-only textual citations (#7219). E.g. `-@reese2002`
      outside of brackets.

  * RST reader:

    + Tighten up rules for when emphasis can start (#9805).
    + Support `:cite:` role with citeproc (#9904). A subset of the
      functionality of the sphinxcontrib-bibtex extension to Sphinx
      is supported.

  * Textile reader:

    + Don't let spans begin right after a symbol (#9878).

  * Typst reader:

    + Fix an incomplete pattern match (#9807).
    + Handle inline bodies ending in a parbreak. E.g.
      ```
      `#strong[
      test
      ]
      ```

  * ConTeXt template: remove `\setupbackend[export=yes]` (#9820).

  * Docx writer:

    + Allow OpenXML templates to be used with `docx` (#8338, #9069, #7256,
      #2928). The `--reference-doc` option allows customization of styles in
      docx output, but it does not allow one to adjust the content of the output
      (e.g., changing the order in which metadata, the table of contents,
      and the body of the document are displayed), or adding boilerplate
      text before or after the document body.  For these changes, one can
      now use `--template` with an OpenXML template.  (See the default
      `openxml` template for a sample.) `--include-before-body` and
      `--include-after-body` can also now be used with `docx` output.
      The included files must be OpenXML fragments suitable for
      inclusion in the document body.
    + New unexported module Text.Pandoc.Writers.Docx.OpenXML.
    + Omit `jc` attribute on table cells with AlignDefault (#5662).
    + Better formatting for task lists. Task lists are now properly
      formatted, with no bullet (#5198).
    + Replace an expensive generic traverse to remove Space elements,
      for better performance.
    + Wrap figures with `id` in a bookmark (#8662).
    + Add eastAsia font hints to `w:r` (#9817). We do this when the text
      in the run contains any CJK characters. This ensures that ambiguous
      code points (e.g. quotation marks) will be represented as "wide"
      characters when together with CJK characters.
    + Clean up Abstract Title and Subtitle in default reference docx.
      Center Subtitle, remove color.

  * HTML writer:

    + Ensure URI escaping needed for `html4` (#9905).
      Unicode characters need not be escaped for html5, and still won't be.
    + Don't emit unnecessary classes in HTML tables (#9325, Thomas Soeiro).
      Pandoc used to emit a `header` class on the `tr` element that forms
      the table header. This is no longer needed, because `head > tr` will
      do the same thing. Similarly, pandoc used to emit `even` and `odd`
      classes on `tr`s, allowing striped styling.  This is no longer needed,
      because one can use e.g. `tbody tr:nth-child(2n)`.
      Compatibility warning:  users who relied on these classes to style
      tables may need to adjust their CSS.

  * JATS writer:

    + Support `supplementary-material` in metadata for `jats_articlepublishing`
      (#9818).

  * LaTeX writer:

    + New method for ensuring images don't overflow (#9660).
      Previously we relied on graphicx internals and made global
      changes to Gin to force images to be resized if they exceed
      textwidth.  This approach is brittle and caused problems
      with `\includesvg` (see #9660). The new approach uses a new macro
      `\pandocbounded` that is now defined in the LaTeX template.
      (Thanks here to Falk Hanisch in https://github.com/mrpiggi/svg/issues/60.)
      The LaTeX writer has been changed to enclose `\includegraphics`
      and `\includesvg` commands in this macro when they don't explicitly
      specify a width or height. In addition, the writer now adds
      `keepaspectratio` to the `\includegraphics` or `\includesvg`
      options if `height` is specified without width, or vice versa.
      Previously, this was set in the preamble as a global option.
      Users should attend to the following compatibility issues:
      - If custom templates are used with the new LaTeX writer, they will have
        to be updated to include the new `\pandocbounded` macro, or an error
        will be raised because of the undefined macro.
      - Documents that specify explicit dimensions for an image may render
        differently, if the dimensions are greater than the line width or
        page height. Previously pandoc would shrink these images to fit,
        but the new behavior takes the specified dimensions literally.
        In addition, pandoc previously always enforced `keepaspectratio`,
        even when width and height were both specified, so images with
        width and height specified that do not conform to their intrinsic
        aspect ratio will appear differently.
    + Task lists must be unordered (#9185).
    + Specify language option for `selnolig` and only include it if
      `english` or `german` is used (#9863). (This includes changes to the
      LaTeX template.) This should restore proper ligature suppression when
      lualatex is used.
    + Fix `--toc-depth` with beamer output (#9861). Previously only top-level
      sections were ever included in the TOC, regardless of the setting of
      `--toc-depth`.
    + Use `\linewidth` instead of `\columnwidth` or `\textwidth`
      for resizing figures, table cells, etc. in LaTeX (#9775).
      `\linewidth`, unlike the others, is sensitive to indented environments
      like lists.

  * LaTeX template: put `babel-lang` in options to beamer (#9868).
    This is required to make beamer use proper localized terms for
    things like "Section."

  * Markdown writer:

    + Don't print extra caption when using `implicit_figures`.
    + Ensure blank line after HTML blocks in commonmark-based formats (#9792).
    + Fix bug rendering block quotes in lists (#9908).

  * Texinfo writer:

    + Ensure proper escaping in all node/link contexts.
    + Target node rather than anchor when possible in internal links.
    + Remove illegal characters from internal link anchors (#6177).
    + Use two commas not one in `@ref`.
    + Don't add anchors to headings. We don't need them, now that we
      make internal links use the node.
    + Avoid duplicate node names.
    + Improve menus. Properly handle the case where the node name is
      different from the descriptive title.

  * Texinfo template: add variables for filename and version.

  * Typst writer:

    + Support '.typst:no-figure' and 'typst:figure:kind=kind' attributes
      (#9778, Carlos Scheidegger). This extends support for fine-grained
      properties in Typst. If the `typst:no-figure` class is present on a
      Table, the table will not be placed in a figure. If the
      `typst:figure:kind` attribute is present, its value will be used
      for the figure's `kind` (#9777). These features are documented in
      `doc/typst-property-output.md`.

  * Typst template:

    + Add subtitle (#9747, Mickaël Canouil).
    + Use content rather than string for title, author, date, email (#9823).
      This allows formatting in title, author, date, and email fields.
      Since the PDF metadata requires a string, and typst only
      converts the title to a string (not the authors), we use

  * Textile writer:

    + Get rid of header, odd, even classes on `tr` (#9376).

  * Text.Pandoc.Class:

    + `fillMediaBag`: Convert IOErrors to warnings when fetching absolute
       paths (#9859, Albert Krewinkel).  This will allow many conversions that
       would have failed with an error to succeed (albeit without images or
       other needed resources).

  * Text.Pandoc.ImageSize:

    + Don't prefer exif width/height when they conflict with image
      width/height (#9871).  That was a mistaken call in #6936.
      Usually when these values disagree, it is because the image
      has been resized by a tool that leaves the original exif values
      the same, so the width/height metadata are more likely to be
      correct that exif width/height.

  * Text.Pandoc.SelfContained:

    + Strip CRs from XML before base64 encoding for data URI
      (so tests can work on Windows).
    + Only create `<svg>` elements for SVG images when the image has
      the class `inline-svg`. Otherwise just use a `data` URI as we do
      with other images (#9787).

  * Lua subsystem (Albert Krewinkel):

    + Split Init module into more modules. The module has grown unwieldy and
      is therefore split into three internal Haskell modules, `Init`,
      `Module`, and `Run`.
    + Add function `pandoc.utils.run_lua_filter` (#9803).
    + Add function `pandoc.template.get` (#9854, co-authored by Carsten Gips).
      The function allows to specify a template with the same argument value
      that would be used with the `--template` command line parameter.
    + Keep CommonState object in the registry. The state is an internal
      value and should be treated as such. The `PANDOC_STATE` global is
      merely a copy; unsetting the global no longer breaks the Lua engine.
    + Allow passing an environment to `run_lua_filter`.
      The default is now to use a *copy* of the global environment when running
      a filter; this ensures better separation when `run_lua_filter` is used
      multiple times. A custom environment can be specified via the
      optional third parameter.
    + Set `pandoc.List` as default metatable for JSON lists (#9834).
      Lists created by `pandoc.json.decode` now behave like lists generated
      via `pandoc.List`. This also ensures that `pandoc.List` tables are
      encoded as JSON arrays when passed to `pandoc.json.encode`.

  * Text.Pandoc.Writers.Shared: export `toTaskListItem` [API change].

  * Add unexported module Text.Pandoc.Char. This exports `isCJK`.
    Use this instead of locally defined `isCJK` in T.P.Readers.MediaWiki.

  * MANUAL.txt:

    + Remove false claim that Lua mode does not support `-i` (#9757,
      Ian Max Andolina).
    + Use level-3 headings for extensions (to avoid gaps).
    + Add anchor for tagging extension.
    + Remove explicit referencess to generate anchors.
      These will be linkified automatically.
    + Fixed links to `option--reference-doc`.
    + Add a note that column widths aren't supported in pptx for Divs
      with class `columns` (#9890).
    + Fix alerts example (#9826, Ian Max Andolina).
    + Fix markup of `babelfonts` example code (Albert Krewinkel).

  * `doc/custom-writers.md`:

    + Fix usage of Template in example (Albert Krewinkel).
    + Document the separator arg of `Writer.Blocks` (Albert Krewinkel).

  * `doc/lua-filters.md` (Albert Krewinkel):

    + Fix outdated documentation for math and quoting functions and fields.
    + Autogenerate docs for module `pandoc.template` and `pandoc.layout`.
    + Document operators of the "Doc" type.

  * pandoc-lua-engine: depend on pandoc >= 3.2 (see #9755).

  * Allow crypton-connection 0.4, time 1.14.

  * Allow tasty-quickcheck 0.11.

  * Use latest emojis, skylighting, skylighting-core, citeproc, djot,
    commonmark-extensions, typst-hs

## pandoc 3.2 (2024-05-11)

  * Change to `--file-scope` behavior (#8741): previously a Div with an
    identifier derived from the filename would be added around the contents
    of each file. This caused problems for "chunking" files into chapters,
    e.g. in EPUB. We no longer add the surrounding Div. This cooperates
    better with chunking. Note, however, that if you have relied on the old
    behavior to link to the beginning of the contents of a file using
    its filename as identifier, that will no longer work.

  * Markdown reader:

    + Allow repeated labels in numbered example lists.
      Previously if you tried to use the same label as an earlier
      example list item, you'd get a new number, not the old one,
      and references to the label would go to the second occurrence.
      Now an existing label will be reused, and no new number will
      be generated.  Caveat:  this only works reliably when the
      re-used example list item occurs by itself in a list, or
      occurs in a list of previously used example list items that
      occur in exactly the same order as previously.
    + Fix `normalCite` so it doesn't consume past a closing `]` boundary
      (#9710).  This was causing an exponential performance bug on long
      lists of links containing potential emphasis characters.
    + Generalize `inlinesInBalancedBrackets` to `inBalancedBrackets`,
      with a parameter for the inner parser.
    + Auto-close unclosed divs (#9635). This applies to both fenced and
      HTML-ish varieties. Otherwise we face an exponential performance
      problem with backtracking. A warning is issued when a div is
      implicitly closed.

  * RST reader:

    + Fix `figclass` and `align` annotations for figures (#7473, Gokul
      Rajiv).

  * LaTeX writer:

    + Use `polytonicgreek` instead of `polutonikogreek` with babel (#9698).
      `polutonikogreek` is outdated. Also recognize both in the LaTeX
      reader.
    + Improve treatment of math inside soul commands (#1294, #5529).
      soul commands (`ul`, `hl`, `st`) are very fragile and the math
      must be handled specially.

  * LaTeX reader:

    + Fix over-eager macro expansion in conditionals (#9676).
    + Parse `flalign`, `flalign*` math environments (#9679). We parse
      these as Math elements with an `aligned` environment. Semantically
      it's not exactly the same, but better than falling back to raw LaTeX.

  * LaTeX template: add `titlegraphicoptions` variable (#9207, Guilhem
    Saurel).

  * Docx reader:

    + Issue warning rather than error when we can't parse EndNote citations
      (see #8433).
    + Fix anchor in header after anchor (#9626, mbracke).

  * RTF reader:

    + Don't try to handle non-default code pages (#9683). Emit a warning
      instead.

  * OpenDocument writer:

    + Implement custom-style for spans (#9657).

  * Typst writer:

    + Add blank line in definition lists with multiple definitions (see
      #9704).
    + Property output (#9648, Gordon Woodhull). The Typst writer will pass
      on specially marked attributes as raw Typst parameters on selected
      elements. This allows extensive customization using filters.
      A separate document (`doc/typst-property-output.md`) has been added
      that provides extensive documentation and examples of the use of
      this feature.

  * Markdown writer:

    + Don't try to align columns in pipe tables with lines greater than
      COLUMNS. The alignment just reduces readibility when the lines
      soft wrap.
    + Don't use `raw_attribute` syntax for raw blocks, unless there is no
      other option (see #9677).  Macros in a `raw_attribute` block don't
      get interpreted when it is read again by pandoc's markdown reader.

  * ConTeXt writer:

    + Replace depreciated `\sc` with `\setsmallcaps` (#9518, James P.
      Ascher).

  * Docx writer:

    + Use conventional styles/indents for Word bullet lists (#7280).

  * `reference.docx`:

    + Use current standard Word theme (#7280). This includes using the
      sans-serif font Aptos instead of the serif font Cambria, and
      default colors for headings.
    + Remove duplicate `DefaultParagraphFont` in `styles.xml`.

  * New module Text.Pandoc.Transforms [API change] (Albert Krewinkel).
    This module exports the following functions which were formerly
    exported from Tetx.Pnadoc.Shared: `headerShift`,
    `filterIpynbOutput`, `eastAsianLineBreakFilter`, as well as some
    functions that were previously not exported.

  * Text.Pandoc.Shared:

    + `headerShift`, `filterIpynbOutput`, and `eastAsianLineBreakFilter`
      are no longer exported from this module; they are now exported
      from Text.Pandoc.Transforms (Albert Krewinkel).

  * Text.Pandoc.Error:

    + Improve reporting of unsupported extensions errors (#9247, Albert
      Krewinkel).

  * Text.Pandoc.App:

    + Move "transforms" after filters (#9664). This will mean that
      `--shift-heading-level-by` affects a heading added by
      `reference-section-title`.

  * Text.Pandoc.App.CommandLineOptions:

    + Simplify output for `OptVersion`. Omit the information about versions
      of dependencies. We no longer emit version info at this level anyway;
      `pandoc-cli` intercepts and handles `--version`. This code would
      only be called if someone used the pandoc library function
      `handleWithOptInfo` in their own program.

  * Text.Pandoc.ImageSize:

    + Export `ImageSize` datatype.

  * Text.Pandoc.SelfContained:

    + Merge class attribute when both img and svg specify it (#9652,
      Carlos Scheidegger).

  * Text.Pandoc.Logging:

    + Add `ScriptingInfo` constructor for `LogMessage` [API change]
      (Albert Krewinkel).
    + Make `DocxParserWarning` a WARNING, not INFO. [API change].
    + Add `UnsupportedCodePage` constructor to `LogMessage` [API change].
    + Add `UnclosedDiv` constructor for `LogMessage` [API change].

  * Lua subsystem (Albert Krewinkel:

    + Add a `pandoc.log` module.
    + Uupdate to pandoc-lua-marshal version 0.2.7 (#8916).
      This fixes counterintuitive behavior of the `content` property on
      BulletList and OrderedList items. Unmarshalling of that field now
      matches the behavior of the constructor.
    + Use newest zip module. This adds a `symlink` function to Entry objects,
      allowing to check if an entry represents a symbolic link.
    + Improve `pandoc.json.decode` docs.
    + Update and fix docs for `pandoc.types.Version` and `pandoc.utils.type`.
    + Add new module `pandoc.image` The module provides basic querying
      functions for image properties.
    + Bump pandoc-lua-engine to 0.2.1.4.

  * Use latest KaTeX CDN asset (#9707, Salim B).

  * `pandoc-cli`: ensure UTF8 when emitting version info.

  * tools/update-lua-module-docs.lua: improve script-internal docs, cleanup
    (Albert Krewinkel).

  * Allow network 3.2.

  * Use latest versions of texmath, djot, skylighting-core, skylighting.

  * Fix command test for #9652.

  * Fix some typos in code comments (#9638, guqicun).

  * Command tests: include regular PATH after directory with the test
    executable (ensures that DLLs will be found on Windows).

  * MANUAL.txt:

    + Document `handout` variable for beamer (#9742).
    + Document formats affected by `--slide-level` (#9745).
    + Update the list of required LaTeX packages (#9728, Albert Krewinkel).
    + Use more descriptive link text for ODT (#9673).
    + Add clarification about `toc-title` in `docx`, `pptx` (#9645).
    + Better document truthiness for conditionals (#9661).
    + Mention that `custom-style` works with ODT (Ian Max Andolina).
    + Harmonize typographic dashes (#9688, Salim B). Standardize on `---`
      with no space.

  * INSTALL.md: Minor tweaks (#9705, Leo Heitmann Ruiz).


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/converters/hs-pandoc/Makefile \
    pkgsrc/converters/hs-pandoc/buildlink3.mk
cvs rdiff -u -r1.1 -r1.2 pkgsrc/converters/hs-pandoc/PLIST \
    pkgsrc/converters/hs-pandoc/distinfo \
    pkgsrc/converters/hs-pandoc/version.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/converters/hs-pandoc/Makefile
diff -u pkgsrc/converters/hs-pandoc/Makefile:1.5 pkgsrc/converters/hs-pandoc/Makefile:1.6
--- pkgsrc/converters/hs-pandoc/Makefile:1.5    Thu Jan  9 23:30:11 2025
+++ pkgsrc/converters/hs-pandoc/Makefile        Fri Jan 10 10:35:57 2025
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.5 2025/01/09 23:30:11 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2025/01/10 10:35:57 wiz Exp $
 
-PKGREVISION= 4
 .include "../../converters/hs-pandoc/version.mk"
 DISTNAME=      pandoc-${PANDOC_VERSION}
 CATEGORIES=    converters
@@ -17,9 +16,21 @@ LICENSE=     gnu-gpl-v2
 HASKELL_OPTIMIZATION_LEVEL=    1
 
 HASKELL_UNRESTRICT_DEPENDENCIES+=      \
-       network
+       citeproc        \
+       commonmark      \
+       commonmark-extensions   \
+       commonmark-pandoc       \
+       djot    \
+       doclayout       \
+       emojis  \
+       skylighting     \
+       skylighting-core        \
+       texmath \
+       typst
 
 # lib:pandoc
+.include "../../textproc/hs-Glob/buildlink3.mk"
+.include "../../graphics/hs-JuicyPixels/buildlink3.mk"
 .include "../../converters/hs-aeson/buildlink3.mk"
 .include "../../converters/hs-aeson-pretty/buildlink3.mk"
 .include "../../textproc/hs-attoparsec/buildlink3.mk"
@@ -31,6 +42,7 @@ HASKELL_UNRESTRICT_DEPENDENCIES+=     \
 .include "../../textproc/hs-commonmark/buildlink3.mk"
 .include "../../textproc/hs-commonmark-extensions/buildlink3.mk"
 .include "../../textproc/hs-commonmark-pandoc/buildlink3.mk"
+.include "../../security/hs-crypton/buildlink3.mk"
 .include "../../net/hs-crypton-connection/buildlink3.mk"
 .include "../../security/hs-crypton-x509-system/buildlink3.mk"
 .include "../../devel/hs-data-default/buildlink3.mk"
@@ -72,6 +84,7 @@ HASKELL_UNRESTRICT_DEPENDENCIES+=     \
 .include "../../devel/hs-vector/buildlink3.mk"
 .include "../../textproc/hs-xml/buildlink3.mk"
 .include "../../textproc/hs-yaml/buildlink3.mk"
+.include "../../textproc/hs-libyaml/buildlink3.mk"
 .include "../../archivers/hs-zip-archive/buildlink3.mk"
 .include "../../archivers/hs-zlib/buildlink3.mk"
 
Index: pkgsrc/converters/hs-pandoc/buildlink3.mk
diff -u pkgsrc/converters/hs-pandoc/buildlink3.mk:1.5 pkgsrc/converters/hs-pandoc/buildlink3.mk:1.6
--- pkgsrc/converters/hs-pandoc/buildlink3.mk:1.5       Thu Jan  9 23:30:11 2025
+++ pkgsrc/converters/hs-pandoc/buildlink3.mk   Fri Jan 10 10:35:57 2025
@@ -1,15 +1,17 @@
-# $NetBSD: buildlink3.mk,v 1.5 2025/01/09 23:30:11 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2025/01/10 10:35:57 wiz Exp $
 
 BUILDLINK_TREE+=       hs-pandoc
 
 .if !defined(HS_PANDOC_BUILDLINK3_MK)
 HS_PANDOC_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-pandoc+=      hs-pandoc>=3.1.13
-BUILDLINK_ABI_DEPENDS.hs-pandoc+=      hs-pandoc>=3.1.13nb4
+BUILDLINK_API_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.1
+BUILDLINK_ABI_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.1
 BUILDLINK_PKGSRCDIR.hs-pandoc?=                ../../converters/hs-pandoc
 
 # lib:pandoc
+.include "../../textproc/hs-Glob/buildlink3.mk"
+.include "../../graphics/hs-JuicyPixels/buildlink3.mk"
 .include "../../converters/hs-aeson/buildlink3.mk"
 .include "../../converters/hs-aeson-pretty/buildlink3.mk"
 .include "../../textproc/hs-attoparsec/buildlink3.mk"
@@ -21,6 +23,7 @@ BUILDLINK_PKGSRCDIR.hs-pandoc?=               ../../c
 .include "../../textproc/hs-commonmark/buildlink3.mk"
 .include "../../textproc/hs-commonmark-extensions/buildlink3.mk"
 .include "../../textproc/hs-commonmark-pandoc/buildlink3.mk"
+.include "../../security/hs-crypton/buildlink3.mk"
 .include "../../net/hs-crypton-connection/buildlink3.mk"
 .include "../../security/hs-crypton-x509-system/buildlink3.mk"
 .include "../../devel/hs-data-default/buildlink3.mk"
@@ -62,6 +65,7 @@ BUILDLINK_PKGSRCDIR.hs-pandoc?=               ../../c
 .include "../../devel/hs-vector/buildlink3.mk"
 .include "../../textproc/hs-xml/buildlink3.mk"
 .include "../../textproc/hs-yaml/buildlink3.mk"
+.include "../../textproc/hs-libyaml/buildlink3.mk"
 .include "../../archivers/hs-zip-archive/buildlink3.mk"
 .include "../../archivers/hs-zlib/buildlink3.mk"
 

Index: pkgsrc/converters/hs-pandoc/PLIST
diff -u pkgsrc/converters/hs-pandoc/PLIST:1.1 pkgsrc/converters/hs-pandoc/PLIST:1.2
--- pkgsrc/converters/hs-pandoc/PLIST:1.1       Sat May  4 12:25:21 2024
+++ pkgsrc/converters/hs-pandoc/PLIST   Fri Jan 10 10:35:57 2025
@@ -1,6 +1,23 @@
-@comment $NetBSD: PLIST,v 1.1 2024/05/04 12:25:21 pho Exp $
-${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID.2}-${HS_VER}.so
+@comment $NetBSD: PLIST,v 1.2 2025/01/10 10:35:57 wiz Exp $
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/1
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/2
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-id
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID.1}-${HS_VER}.so
+${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID.2}-${HS_VER}.so
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID.1}/libHS${HS_PKGID.1}.a
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/libHS${HS_PKGID.1}_p.a
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Paths_pandoc.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Paths_pandoc.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Paths_pandoc.p_hi
@@ -31,6 +48,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/CSV.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/CSV.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/CSV.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Char.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Char.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Char.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Chunks.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Chunks.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Chunks.p_hi
@@ -280,6 +300,18 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Markdown.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Markdown.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Markdown.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Lex.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Lex.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Lex.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Macros.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Macros.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Macros.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Standards.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Standards.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Mdoc/Standards.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/MediaWiki.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/MediaWiki.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/MediaWiki.p_hi
@@ -373,6 +405,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff/Escape.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff/Escape.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Roff/Escape.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/TWiki.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/TWiki.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/TWiki.p_hi
@@ -421,6 +456,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Templates.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Templates.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Templates.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Transforms.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Transforms.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Transforms.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Translations.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Translations.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Translations.p_hi
@@ -442,6 +480,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/ANSI.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/ANSI.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/ANSI.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/AnnotatedTable.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/AnnotatedTable.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/AnnotatedTable.p_hi
@@ -475,6 +516,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/OpenXML.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/OpenXML.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/OpenXML.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/StyleMap.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/StyleMap.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Writers/Docx/StyleMap.p_hi
@@ -636,23 +680,161 @@ lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pa
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/XML.p_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/libHS${HS_PKGID.2}.a
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/libHS${HS_PKGID.2}_p.a
-${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.dyn_hi
-lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.hi
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.p_hi
-${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.dyn_hi
-lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.hi
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Output.p_hi
-${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.dyn_hi
-lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.hi
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Proc.p_hi
-${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.dyn_hi
-lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.hi
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light/Types.p_hi
-lib/${HS_PLATFORM}/${HS_PKGID.1}/libHS${HS_PKGID.1}.a
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.1}/libHS${HS_PKGID.1}_p.a
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/1
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/2
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-id
+share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYING.md
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-App.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Asciify.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Chunks.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Citeproc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class-IO.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Data.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Emoji.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Error.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Extensions.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Filter.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Format.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Highlighting.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-ImageSize.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Logging.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MIME.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MediaBag.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Options.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-PDF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Parsing.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Process.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-BibTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CSV.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CommonMark.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Creole.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CslJson.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Djot.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DocBook.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Docx.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DokuWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EPUB.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EndNote.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-FB2.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-HTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Haddock.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Ipynb.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-JATS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Jira.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-LaTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Man.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Markdown.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Mdoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-MediaWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Muse.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Native.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-ODT.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-OPML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Org.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RIS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RST.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RTF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Textile.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TikiWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Txt2Tags.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Typst.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Vimwiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Scripting.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-SelfContained.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Shared.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Slides.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Sources.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Templates.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Transforms.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations-Types.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-UTF8.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Version.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ANSI.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AnnotatedTable.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AsciiDoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-BibTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ChunkedHTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CommonMark.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ConTeXt.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CslJson.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Djot.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DocBook.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Docx.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DokuWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-EPUB.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-FB2.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-HTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Haddock.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ICML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ipynb.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-JATS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Jira.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-LaTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Man.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Markdown.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Math.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-MediaWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ms.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Muse.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Native.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ODT.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OOXML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OPML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OpenDocument.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Org.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Powerpoint.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RST.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RTF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Shared.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-TEI.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Texinfo.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Textile.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Typst.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-XWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ZimWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Output.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Proc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Types.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-60.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-A.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-All.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-B.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-C.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-D.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-E.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-F.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-G.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-H.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-I.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-J.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-K.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-L.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-M.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-N.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-O.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-P.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Q.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-R.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-S.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-T.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-U.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-V.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-W.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Y.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Z.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/haddock-bundle.min.js
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/linuwial.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/meta.json
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/pandoc.haddock
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/quick-jump.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/synopsis.png
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYRIGHT
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/MANUAL.txt
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/citeproc/biblatex-localization/UKenglish.lbx.strings
@@ -783,8 +965,12 @@ share/${HS_PLATFORM}/pandoc-${PKGVERSION
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/pptx/ppt/theme/theme2.xml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/pptx/ppt/viewProps.xml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/affiliations.jats
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/after-header-includes.latex
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/article.jats_publishing
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/common.latex
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.ansi
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.asciidoc
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.beamer
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.biblatex
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.bibtex
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.chunkedhtml
@@ -813,6 +999,7 @@ share/${HS_PLATFORM}/pandoc-${PKGVERSION
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.ms
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.muse
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.opendocument
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.openxml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.opml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.org
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.plain
@@ -828,209 +1015,117 @@ share/${HS_PLATFORM}/pandoc-${PKGVERSION
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.typst
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.xwiki
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/default.zimwiki
-share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/definitions.typst
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/font-settings.latex
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/fonts.latex
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/hypersetup.latex
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/passoptions.latex
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/styles.citations.html
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/styles.html
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/templates/template.typst
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/af.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/alt.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/am.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ar.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/as.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ast.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/az.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/be.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/bg.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/bn.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/bo.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/br.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/bs.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/bua.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ca.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ckb-Arab.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ckb-Latn.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/cs.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/cu.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/cy.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/cz.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/da.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/de.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/dsb.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/el.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/en.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/eo.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/es-ES.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/es-MX.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/es.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/et.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/eu.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/fa.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/fi.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/fil.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/fr.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/fur.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ga.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/gd.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/gl.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/grc.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/gu.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ha.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/he.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/hi.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/hr.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/hsb.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/hu.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/hy.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ia.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/id.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/is.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/it.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ja.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ka.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/km.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/kmr-Arab.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/kmr-Latn.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/kn.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ko.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/la.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/lb.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/lo.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/lt.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/lv.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/mk.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ml.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/mn.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/mr.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ms.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/nb.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/nko.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/nl.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/nn.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/no.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/oc.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/or.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pa.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pl.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pms.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pt-BR.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pt-PT.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/pt.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/rm.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ro.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ru.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/se.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/si.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sk.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sl.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sq.yaml
-share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sr-cyrl.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sr-Cyrl.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sr-Latn.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sr.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/sv.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ta.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/te.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/th.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/tk.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/tr.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ua.yaml
+share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ug.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/uk.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/ur.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/vi.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/zh-Hans.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/zh-Hant.yaml
-share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYING.md
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-App.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Asciify.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Chunks.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Citeproc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class-IO.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Data.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Emoji.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Error.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Extensions.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Filter.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Format.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Highlighting.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-ImageSize.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Logging.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MIME.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MediaBag.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Options.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-PDF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Parsing.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Process.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-BibTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CSV.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CommonMark.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Creole.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CslJson.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Djot.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DocBook.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Docx.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DokuWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EPUB.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EndNote.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-FB2.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-HTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Haddock.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Ipynb.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-JATS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Jira.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-LaTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Man.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Markdown.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-MediaWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Muse.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Native.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-ODT.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-OPML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Org.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RIS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RST.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RTF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Textile.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TikiWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Txt2Tags.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Typst.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Vimwiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Scripting.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-SelfContained.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Shared.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Slides.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Sources.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Templates.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations-Types.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-UTF8.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Version.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AnnotatedTable.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AsciiDoc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-BibTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ChunkedHTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CommonMark.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ConTeXt.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CslJson.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Djot.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DocBook.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Docx.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DokuWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-EPUB.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-FB2.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-HTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Haddock.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ICML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ipynb.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-JATS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Jira.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-LaTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Man.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Markdown.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Math.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-MediaWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ms.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Muse.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Native.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ODT.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OOXML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OPML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OpenDocument.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Org.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Powerpoint.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RST.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RTF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Shared.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-TEI.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Texinfo.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Textile.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Typst.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-XWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ZimWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Output.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Proc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Types.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-60.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-A.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-All.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-B.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-C.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-D.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-E.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-F.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-G.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-H.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-I.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-J.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-K.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-L.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-M.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-N.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-O.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-P.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Q.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-R.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-S.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-T.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-U.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-V.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-W.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Y.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Z.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/haddock-bundle.min.js
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/index.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/linuwial.css
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/meta.json
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/pandoc.haddock
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/quick-jump.css
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/synopsis.png
Index: pkgsrc/converters/hs-pandoc/distinfo
diff -u pkgsrc/converters/hs-pandoc/distinfo:1.1 pkgsrc/converters/hs-pandoc/distinfo:1.2
--- pkgsrc/converters/hs-pandoc/distinfo:1.1    Sat May  4 12:25:21 2024
+++ pkgsrc/converters/hs-pandoc/distinfo        Fri Jan 10 10:35:57 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2024/05/04 12:25:21 pho Exp $
+$NetBSD: distinfo,v 1.2 2025/01/10 10:35:57 wiz Exp $
 
-BLAKE2s (pandoc-3.1.13.tar.gz) = 21627a19ab8e942f6c1103aea55d7e927f527659a7bbe359461319f7f9e25247
-SHA512 (pandoc-3.1.13.tar.gz) = 09a132e4cf1478c18a80af3637930d99cff6eb208c94649317e44e0e887c063b05093cb5a5faa9338ff57e30dee5d99054017eba60d6ce6832381c5c8df5aecd
-Size (pandoc-3.1.13.tar.gz) = 7367320 bytes
+BLAKE2s (pandoc-3.6.1.tar.gz) = 2d28deb47bb3c8d3cc3388cb9cd53edc74d3ee88e62d5b6db0b88ecdd2985497
+SHA512 (pandoc-3.6.1.tar.gz) = 5db6ee03b7e023fb235aadce92be429052e3094ff89b156f0098a5d09e0baab9dfd147d2e0ec31e92f07889029af3743875de8f48b22d70ccda26c1556b8e91f
+Size (pandoc-3.6.1.tar.gz) = 7513641 bytes
Index: pkgsrc/converters/hs-pandoc/version.mk
diff -u pkgsrc/converters/hs-pandoc/version.mk:1.1 pkgsrc/converters/hs-pandoc/version.mk:1.2
--- pkgsrc/converters/hs-pandoc/version.mk:1.1  Sat May  4 12:25:21 2024
+++ pkgsrc/converters/hs-pandoc/version.mk      Fri Jan 10 10:35:57 2025
@@ -1,6 +1,6 @@
-# $NetBSD: version.mk,v 1.1 2024/05/04 12:25:21 pho Exp $
+# $NetBSD: version.mk,v 1.2 2025/01/10 10:35:57 wiz Exp $
 #
 # Included by ../../converters/hs-pandoc/Makefile
 # Included by ../../converters/pandoc/Makefile
 
-PANDOC_VERSION=        3.1.13
+PANDOC_VERSION=        3.6.1



Home | Main Index | Thread Index | Old Index