-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
textproc/hs-commonmark-extensions: Update to 0.2.5.4
0.2.5.4 * Fix autolink parsing regression (#151). This affects autolinks with doubled internal line-ending punctuation characters. 0.2.5.3 * Fix rebase_relative_paths extension so it works with URLs with non-ASCII characters (#148). Previously these would not be properly detected as absolute URIs. 0.2.5.2 * Improve autolinks extension (#147). The autolinks extension was interacting badly with explicit links, To fix this we had to make autolink parsing a bit stricter than the GFM spec does. They allow unbalanced ) except at the end of a URL (which is defined as: followed by optional final punctuation then whitespace or eof). With this change, we don't allow unbalanced ) at all in raw URLs. This should not be a big problem in practice. * Protect against quadratic generated table size explosion (Michael Howell). This commit adds a limit to the number of auto-completed cells around 200,000. The result is, in these original samples: 0.2.5.1 * Add test/alerts.md to extra-source-files in cabal file. 0.2.5 * Add support for alerts extension, supporting GitHub-style alerts (#132). https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts New module Commonmark.Extensions.Alerts [API change]. * Do not accept footnote labels with line breaks (Michael Howell). * Parse [^ ] and [^] as links (Michael Howell). This is consistent with most other CommonMark parsers, even when they have support for footnotes turned on.
- Loading branch information
1 parent
608d92b
commit ee66d7b
Showing
4 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# $NetBSD: Makefile,v 1.12 2023/11/02 06:37:29 pho Exp $ | ||
# $NetBSD: Makefile,v 1.13 2024/04/29 12:24:32 pho Exp $ | ||
|
||
DISTNAME= commonmark-extensions-0.2.4 | ||
PKGREVISION= 1 | ||
DISTNAME= commonmark-extensions-0.2.5.4 | ||
CATEGORIES= textproc | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.6 2023/10/28 10:03:03 pho Exp $ | ||
$NetBSD: distinfo,v 1.7 2024/04/29 12:24:33 pho Exp $ | ||
|
||
BLAKE2s (commonmark-extensions-0.2.4.tar.gz) = 6ee784c040ffc86c9c1bb3ac2c6753a41e72fbe0dd7c87d10d2d9b066b2a6ec0 | ||
SHA512 (commonmark-extensions-0.2.4.tar.gz) = ab5b24d7007d04fec80f49be15a883aebbddf1bea4fc3b5e7a75cda7ad1d650200f0804a9c34ec2a5785d603e4d7e8c299aca9233623e22081c9b754c4a96a8f | ||
Size (commonmark-extensions-0.2.4.tar.gz) = 39738 bytes | ||
BLAKE2s (commonmark-extensions-0.2.5.4.tar.gz) = 3255577d9ed7ce40ab6028b1fdde440a9245ef5f8f1ab5105435170207b53474 | ||
SHA512 (commonmark-extensions-0.2.5.4.tar.gz) = 2ec50a88e630e8161e7e53f78426965643142cdfd22c6d3a9f675ea054ad8a96b5d27f232c5db3b5e779d7e8b317be1726d4003c53399012421d8ee16e7091e5 | ||
Size (commonmark-extensions-0.2.5.4.tar.gz) = 45115 bytes |