Skip to content

Commit 4e3b19b

Browse files
New version: JohnMacFarlane.Pandoc version 3.8.2.0 (microsoft#301403)
1 parent 364a01c commit 4e3b19b

3 files changed

Lines changed: 111 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Created with komac v2.13.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
3+
4+
PackageIdentifier: JohnMacFarlane.Pandoc
5+
PackageVersion: 3.8.2.0
6+
InstallerLocale: en-US
7+
InstallerType: wix
8+
InstallModes:
9+
- interactive
10+
- silent
11+
- silentWithProgress
12+
UpgradeBehavior: uninstallPrevious
13+
ProductCode: '{5E4239B3-61D6-4002-90A3-8ABAF164A26B}'
14+
ReleaseDate: 2025-09-29
15+
AppsAndFeaturesEntries:
16+
- DisplayName: Pandoc 3.8.2
17+
ProductCode: '{5E4239B3-61D6-4002-90A3-8ABAF164A26B}'
18+
UpgradeCode: '{A68E8EF6-ABB1-4F22-A3C5-68DFDF0AB562}'
19+
InstallationMetadata:
20+
DefaultInstallLocation: '%ProgramFiles%\Pandoc'
21+
Installers:
22+
- Architecture: x64
23+
Scope: user
24+
InstallerUrl: https://github.com/jgm/pandoc/releases/download/3.8.2/pandoc-3.8.2-windows-x86_64.msi
25+
InstallerSha256: b428a6277ea32016c8e1426ed328b47c45599a21d7e5260ee610da1cf975a4db
26+
InstallerSwitches:
27+
Custom: ALLUSERS=2
28+
- Architecture: x64
29+
Scope: machine
30+
InstallerUrl: https://github.com/jgm/pandoc/releases/download/3.8.2/pandoc-3.8.2-windows-x86_64.msi
31+
InstallerSha256: b428a6277ea32016c8e1426ed328b47c45599a21d7e5260ee610da1cf975a4db
32+
InstallerSwitches:
33+
Custom: ALLUSERS=1
34+
ManifestType: installer
35+
ManifestVersion: 1.10.0
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Created with komac v2.13.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
3+
4+
PackageIdentifier: JohnMacFarlane.Pandoc
5+
PackageVersion: 3.8.2.0
6+
PackageLocale: en-US
7+
Publisher: John MacFarlane
8+
PublisherUrl: https://github.com/jgm/pandoc
9+
PublisherSupportUrl: https://github.com/jgm/pandoc/issues
10+
Author: John Mac Farlane
11+
PackageName: Pandoc
12+
PackageUrl: https://pandoc.org/
13+
License: GPL-2.0-or-later
14+
LicenseUrl: https://github.com/jgm/pandoc/blob/master/COPYRIGHT
15+
Copyright: Copyright (C) 2006-2023 John MacFarlane <jgm at berkeley dot edu>
16+
CopyrightUrl: https://github.com/jgm/pandoc/blob/master/COPYRIGHT
17+
ShortDescription: If you need to convert files from one markup format into another, pandoc is your swiss-army knife.
18+
Tags:
19+
- converter
20+
- doc
21+
- docs
22+
- markdown
23+
- pandoc
24+
ReleaseNotes: |-
25+
I'm pleased to announce the release of pandoc 3.8.2,
26+
available in the usual places:
27+
Binary packages & changelog:
28+
https://github.com/jgm/pandoc/releases/tag/3.8.2
29+
Source & API documentation:
30+
http://hackage.haskell.org/package/pandoc-3.8.2
31+
This release fixes a regression in the typst template (since 3.8), which caused links to be omitted.
32+
It also adds a new default Markdown extension, `table_attributes`, which allows attributes to be added to tables by putting them after the caption.
33+
API change: Add `Ext_table_attributes` constructor to Extension.
34+
Of special note:
35+
- Markdown reader/writer: implement new `table_attributes` extension
36+
(#10884). When `table_attributes` is enabled (as it is by default for
37+
pandoc's Markdown), attributes can be attached to a table by
38+
including them at the end of the caption. Previously the writer
39+
would emit an identifier in this position, but the reader didn't
40+
handle it. Now arbitrary attributes are allowed, and they work in
41+
both the reader and writer.
42+
- Typst writer: don't add superfluous semicolons (#11196).
43+
Previously we added semicolons after inline commands not
44+
followed by spaces, but mainly this was to deal with one issue:
45+
the presence of a semicolon after an inline command, which
46+
would be swallowed as a command separator (#9252).
47+
This commits adopts an approach that should avoid so many
48+
superfluous semicolons: it escapes semicolons that might come
49+
right after a command.
50+
- Typst template: fix 3.8 regression in which links disappear
51+
(#11194). A template change in 3.8 added a show rule for links which
52+
causes them to disappear except in special cases.
53+
- Text.Pandoc.Parsing: rewrite `oneOfStrings` more efficiently.
54+
- LaTeX writer: Fix strikeout in links (#11192, Tuong Nguyen Manh).
55+
As in #1294 `\url` and `\href` need to be protected
56+
inside an mbox for `soul` commands.
57+
- Text.Pandoc.Extensions: Add `Ext_table_attributes` constructor for
58+
`Extension` [API change].
59+
* Use released texmath 0.13.0.1.
60+
* Update FSF contact information in COPYING (#11183, Bensun Muite).
61+
62+
- MANUAL.txt: remove some redundancy (#11178, Reuben Thomas).
63+
ReleaseNotesUrl: https://github.com/jgm/pandoc/releases/tag/3.8.2
64+
Documentations:
65+
- DocumentLabel: Wiki
66+
DocumentUrl: https://github.com/jgm/pandoc/wiki
67+
ManifestType: defaultLocale
68+
ManifestVersion: 1.10.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created with komac v2.13.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
3+
4+
PackageIdentifier: JohnMacFarlane.Pandoc
5+
PackageVersion: 3.8.2.0
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.10.0

0 commit comments

Comments
 (0)