The NetBSD Project

CVS log for pkgsrc/textproc/hs-commonmark-extensions/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / textproc / hs-commonmark-extensions

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed Mar 5 03:39:57 2025 UTC (2 weeks, 2 days ago) by pho
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1 lines
recursive revbump after patching lang/ghc910

Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Feb 23 21:58:49 2025 UTC (3 weeks, 5 days ago) by wiz
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -3 lines
textproc/hs-commonmark-extensions: update to commonmark-extensions-0.2.6

## 0.2.6

  * Track wikilinks with a class instead of the title (Evan
    Silberman). The use of title="wikilink" in HTML output traces
    back to Pandoc's hijacking of the title attribute for this purpose
    back when Pandoc links didn't have Attrs. A coordinated change in
    Pandoc moves this more appropriately into a class.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Feb 2 13:05:51 2025 UTC (6 weeks, 5 days ago) by pho
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -1 lines
Bump all Haskell packages after switching the default compiler.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jan 30 12:08:58 2025 UTC (7 weeks, 1 day ago) by pho
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -3 lines
textproc/hs-commonmark-extensions: update to commonmark-extensions-0.2.5.6

## 0.2.5.6

  * Autolink parser: track balanced brackets in path (improves
    on #156). We still get a link within a link, which isn't right, but at
    least the link goes to the right place. Cf. jgm/pandoc#10333.

## 0.2.5.5

  * Fix auto_identifiers extension: it now replaces emojis with
    their aliases, as documented.
  * Fix auto_identifiers_ascii extension: it now ignores
    non-ASCII characters with no ASCII equivalent.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Jan 9 23:15:14 2025 UTC (2 months, 1 week ago) by wiz
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2 lines
i*: recursive bump for hs-emojis update

Revision 1.14: download - view: text, markup, annotated - select for diffs
Thu May 9 01:32:41 2024 UTC (10 months, 1 week ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q4-base, pkgsrc-2024Q4, pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -1 lines
Recursive revbump after changing the default Haskell compiler

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Apr 29 12:24:32 2024 UTC (10 months, 3 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -3 lines
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.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Nov 2 06:37:29 2023 UTC (16 months, 2 weeks ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -1 lines
Revbump all Haskell after updating lang/ghc96

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Oct 28 10:03:03 2023 UTC (16 months, 3 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -3 lines
textproc/hs-commonmark-extensions: Update to 0.2.4

0.2.4
* Make pipe_tables extension treat backslash escapes like GH does (#112,
  Michael Howell). This change essentially changes the way the text \\|
  gets parsed inside a table. In the old version, the first backslash
  escapes the second backslash, and then the pipe is treated as a cell
  separator. In the new version, the pipe is still preceded by a backslash,
  so it is still literal text. The escaping rule is documented in detail in
  the spec for this extension. This change also aligns our escaping of
  pipes with GitHub's.

0.2.3.6
* Fix pipe table parser so that |s don't interfere with other block
  structures (Michael Howell, #111, fixing #52 and #95). This parser is
  structured as a system that parses the second line first, then parses the
  first line. That is, if it detects a delimiter row as the second line of
  a paragraph, it converts the paragraph into a table. This seems
  counterintuitive, but it works better than trying to convert a table into
  a paragraph, since it might need to be something else.
* Improve parsing of inline math (#110).

0.2.3.5
* Resolve entities inside wikilinks (#105, Michał Kukieła).

0.2.3.4
* Require whitespace after definition list marker (#104). Otherwise we can
  inadvertently clobber strikeout or subscript.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Oct 9 04:54:50 2023 UTC (17 months, 1 week ago) by pho
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2 lines
Bump Haskell packages after updating lang/ghc94

Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Feb 7 01:41:09 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -1 lines
revbump all the Haskell packages after modifying the runtime system of lang/ghc94

Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Jan 25 16:19:04 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -3 lines
textproc/hs-commonmark-extensions: Update to 0.2.3.3

0.2.3.3
* Fix definition_lists extension (#96). We were not properly consuming
  indentation in definitions, which caused problems when the definitions
  themselves contained lists.

0.2.3.2
* Update lower version bounds for commonmark (#93, David Thrane
  Christiansen).

0.2.3.1
* math extension: don't fail when display math contains embedded inline
  math. See jgm/pandoc#7942.
* Make math parsing more sophisticated. Count embeddings inside {..}, since
  math can contain e.g. \text{...} which itself contains math delimiters.
* Small improvement in pipe table parsing. The old parser failed on some
  edge cases with extra whitespace after pipes (which we should just
  ignore).
* fancy_list extension: improve list type ambiguity resolution (#89).

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sat Feb 26 03:58:26 2022 UTC (3 years ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2 lines
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk

Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Feb 12 08:50:51 2022 UTC (3 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1 lines
revbump after changing the default Haskell compiler

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Feb 11 13:32:14 2022 UTC (3 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +3 -3 lines
Update to commonmark-extensions-

0.2.3
* Allow bare word attribute in fenced_divs (#84). This follows a similar
  change in pandoc (jgm/pandoc#7242).

0.2.2.1
* Fix commonmark-extensions to build with GHC 9.2 (#81, Joseph
  C. Sible). Currently --allow-newer is needed.

0.2.2
* Add footnote to gfmExtensions. Note that this also requires additional
  type constraints on gfmExtensions [API change].

0.2.1.2
* Fix bug with absolute paths in rebase_relative_paths extension on
  Windows.

0.2.1.1
* Fix bug in wikilinks extensions.

0.2.1
* Add rebase_relative_paths extension. New exported module
  Commonmark.Extensions.RebaseRelativePaths [API change].
* Add wikilinks_title_before_pipe and wikilinks_title_after_pipe extensions
  (#69). New exported module Commonmark.Extensions.Wikilinks [API change].

Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Jan 18 02:48:25 2022 UTC (3 years, 2 months ago) by pho
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
Bump packages that depends on GHC

Revision 1.3: download - view: text, markup, annotated - select for diffs
Mon May 3 19:01:14 2021 UTC (3 years, 10 months ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -1 lines
*: Bump PKGREVISION for ghc-9.0.1

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat May 1 14:27:42 2021 UTC (3 years, 10 months ago) by pho
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -5 lines
Remove files/Setup.hs: mk/haskll.mk can now automatically handle that

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Apr 25 04:01:55 2021 UTC (3 years, 10 months ago) by pho
Branches: MAIN
Import commonmark-extensions-0.2.0.4

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>