Update ruby-kramdown to 1.8.0.

kramdown 1.8.0 released

This release contains only some minor updates and bug fixes.

Changes

* 4 minor changes:

  - The LaTeX converter now uses \texttt instead of \tt for code spans (fixes
    #257, reported by richard101696)

  - New option footnote_backlink for changing the backlink of footnotes in the
    HTML converter (fixes #247, requested by Benjamin Esham)

  - A quote directly followed by an ellipsis is now converted into an opening
    quotation mark (fixes #253, requested by Michael Franzl)

  - Removed warning for self-closing HTML elements that are not self-closed
    (fixes #262, requested by Gregory Pakosz)

* 3 bug fixes:

- Fixed #251: The special character sequence \` now works correctly when used
  in footnotes or headers that appear in the table of contents (reported by
  Peter Kehl)

- Fixed #254: kramdown crashed on encountering a table with multiple
  consecutive separator lines (reported by Christian Kruse)

- Fixed #256: Certain footnote definitions and codeblocks lead to crashes or
  unneeded backtracking in the regular expression engine - fixed by using
  atomic grouping (reported by Ali Ok)
This commit is contained in:
taca 2015-09-13 15:21:30 +00:00
parent 01bb2f3033
commit 31a78fdb5b
3 changed files with 12 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.10 2015/06/11 16:23:35 taca Exp $
# $NetBSD: Makefile,v 1.11 2015/09/13 15:21:30 taca Exp $
DISTNAME= kramdown-1.7.0
DISTNAME= kramdown-1.8.0
CATEGORIES= textproc
MAINTAINER= pkgsrc-users@NetBSD.org

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.9 2015/06/11 16:23:35 taca Exp $
@comment $NetBSD: PLIST,v 1.10 2015/09/13 15:21:30 taca Exp $
bin/kramdown${RUBY_SUFFIX}
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/AUTHORS
@ -447,6 +447,9 @@ ${GEM_LIBDIR}/test/testcases/span/03_codespan/highlighting.html
${GEM_LIBDIR}/test/testcases/span/03_codespan/highlighting.text
${GEM_LIBDIR}/test/testcases/span/03_codespan/normal.html
${GEM_LIBDIR}/test/testcases/span/03_codespan/normal.text
${GEM_LIBDIR}/test/testcases/span/04_footnote/backlink_text.html
${GEM_LIBDIR}/test/testcases/span/04_footnote/backlink_text.options
${GEM_LIBDIR}/test/testcases/span/04_footnote/backlink_text.text
${GEM_LIBDIR}/test/testcases/span/04_footnote/definitions.html
${GEM_LIBDIR}/test/testcases/span/04_footnote/definitions.latex
${GEM_LIBDIR}/test/testcases/span/04_footnote/definitions.text
@ -461,6 +464,8 @@ ${GEM_LIBDIR}/test/testcases/span/04_footnote/markers.latex
${GEM_LIBDIR}/test/testcases/span/04_footnote/markers.text
${GEM_LIBDIR}/test/testcases/span/04_footnote/placement.html
${GEM_LIBDIR}/test/testcases/span/04_footnote/placement.text
${GEM_LIBDIR}/test/testcases/span/04_footnote/regexp_problem.html
${GEM_LIBDIR}/test/testcases/span/04_footnote/regexp_problem.text
${GEM_LIBDIR}/test/testcases/span/05_html/across_lines.html
${GEM_LIBDIR}/test/testcases/span/05_html/across_lines.text
${GEM_LIBDIR}/test/testcases/span/05_html/button.html

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.10 2015/06/11 16:23:35 taca Exp $
$NetBSD: distinfo,v 1.11 2015/09/13 15:21:30 taca Exp $
SHA1 (kramdown-1.7.0.gem) = d682f5256cf2bd6e5d630a5c14ef8f520ee313cc
RMD160 (kramdown-1.7.0.gem) = 5ecaf57ded242c51f9613a4a571f0080a8a742d9
Size (kramdown-1.7.0.gem) = 237568 bytes
SHA1 (kramdown-1.8.0.gem) = 1bb4eccd2fcf1b51c3aa7b9611da5ee1a5b6899c
RMD160 (kramdown-1.8.0.gem) = 3c7efe578b945e0cd5711287b7857765a7d117c1
Size (kramdown-1.8.0.gem) = 238080 bytes