Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-commonmark-extensions-doc-0.2.5.4-1.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: ghc-commonmark-extensions-doc Distribution: openSUSE:Factory:zSystems
Version: 0.2.5.4 Vendor: openSUSE
Release: 1.3 Build date: Mon Mar 11 19:04:35 2024
Group: Unspecified Build host: reproducible
Size: 1924436 Source RPM: ghc-commonmark-extensions-0.2.5.4-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/commonmark-extensions
Summary: Haskell commonmark-extensions library documentation
This package provides the Haskell commonmark-extensions library documentation.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon Mar 11 2024 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.5.4.
    [#]# 0.2.5.4
    * Fix autolink parsing regression (#151). This affects autolinks with
      doubled internal line-ending punctuation characters.
* Wed Feb 28 2024 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.5.3.
    [#]# 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.
* Thu Feb 15 2024 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.5.2.
    [#]# 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:
* Tue Dec 12 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.5.1.
    [#]# 0.2.5.1
    * Add `test/alerts.md` to extra-source-files in cabal file.
* Mon Dec 11 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.5.
    [#]# 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.
* Fri Oct 27 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 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.
* Wed Sep 13 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.6.
    [#]# 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).
* Wed Jul 12 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.5.
    [#]# 0.2.3.5
    - Resolve entities inside wikilinks (#105, Michał Kukieła).
* Thu Mar 30 2023 Peter Simons <psimons@suse.com>
  - Updated spec file to conform with ghc-rpm-macros-2.5.2.
* Sat Mar 04 2023 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.4.
    [#]# 0.2.3.4
    - Require whitespace after definition list marker (#104).
      Otherwise we can inadvertently clobber strikeout or subscript.
* Thu Sep 29 2022 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 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.
* Tue May 31 2022 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.2.
    [#]# 0.2.3.2
    - Update lower version bounds for commonmark (#93, David
      Thrane Christiansen).
* Sat Apr 02 2022 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.1.
    [#]# 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).
* Wed Jan 12 2022 Peter Simons <psimons@suse.com>
  - Update commonmark-extensions to version 0.2.3.
    [#]# 0.2.3
    - Allow bare word attribute in fenced_divs (#84).  This follows a similar
      change in pandoc (jgm/pandoc#7242).
* Mon Nov 01 2021 psimons@suse.com
  - Add commonmark-extensions at version 0.2.2.1.
* Sun May 30 2021 psimons@suse.com
  - Update commonmark-extensions to version 0.2.1.2.
    [#]# 0.2.1.2
    - Fix bug with absolute paths in rebase_relative_paths
      extension on Windows.
* Sat May 29 2021 psimons@suse.com
  - Update commonmark-extensions to version 0.2.1.1.
    [#]# 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].

Files

/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Alerts.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Attributes.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-AutoIdentifiers.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Autolink.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-DefinitionList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Emoji.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-FancyList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Footnote.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-HardLineBreaks.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-ImplicitHeadingReferences.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Math.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-PipeTable.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-RebaseRelativePaths.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Smart.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Strikethrough.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Subscript.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Superscript.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-TaskList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions-Wikilinks.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/Commonmark-Extensions.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/commonmark-extensions.haddock
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/commonmark-extensions.txt
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/doc-index.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/haddock-bundle.min.js
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/index.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/linuwial.css
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/meta.json
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/quick-jump.css
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Alerts.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Attributes.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.AutoIdentifiers.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Autolink.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.DefinitionList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Emoji.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.FancyList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Footnote.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.HardLineBreaks.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.ImplicitHeadingReferences.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Math.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.PipeTable.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.RebaseRelativePaths.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Smart.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Strikethrough.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Subscript.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Superscript.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.TaskList.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.Wikilinks.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/Commonmark.Extensions.html
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/highlight.js
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/src/style.css
/usr/share/doc/packages/ghc-9.8.2/html/libraries/commonmark-extensions-0.2.5.4/synopsis.png
/usr/share/licenses/ghc-commonmark-extensions-doc
/usr/share/licenses/ghc-commonmark-extensions-doc/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 30 23:40:23 2024