summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2012-06-13 14:41:03 +0000
committertaca <taca@pkgsrc.org>2012-06-13 14:41:03 +0000
commit67c9e7474e941c725de2f95c8958ac7d58cb43a2 (patch)
tree37ae8c25c10f65fe774bc8b2bb6c1ce6c07ec2e0 /textproc
parenta1f49ad42f26978e4559c717ae8302d6fc4b4d16 (diff)
downloadpkgsrc-67c9e7474e941c725de2f95c8958ac7d58cb43a2.tar.gz
Update ruby-kramdown to 0.13.7.
kramdown 0.13.7 released This release, aside from fixing bugs and some other minor changes, adds a new converter for removing HTML tags from an element tree. This means that one can now do kramdown -i html -o remove_html_tags,kramdown my_document.html and get a nice kramdown document from a full HTML document! Changes 1 major change * Implemented RemoveHtmlTags converter for removing HTML tags from an element tree (fixes bug RF#29282 requested by Bernard Potocki) 3 minor changes * Updated kramdown binary to support multiple, chained output formats * Added a new option for setting a default coderay highlighting language (requested by Lou Quillio) * Feature request RF#29575: Added support for &shy; soft-hyphen entity (requested by Alexander Gro©Î) 5 bug fixes * Fixed bug RF#29576: Footnotes in headers resulted in duplicated id attr in TOC (reported by korthaerd) * Multi-line titles in links are now correctly parsed * DOCTYPE declaration is now correctly parsed independent of case * Setting of nil options works now by using the String ¡Ænil¡Ç * Fixed table-of-content test cases (test went green although the meaning of the test was not satisfied due to copy-paste - d¡Çoh!) 1 documentation fix * Fixed bug RF#29577: sidebar link to news page was broken for HTML pages in sub directories (reported by korthaerd)
Diffstat (limited to 'textproc')
-rw-r--r--textproc/ruby-kramdown/Makefile4
-rw-r--r--textproc/ruby-kramdown/PLIST10
-rw-r--r--textproc/ruby-kramdown/distinfo8
3 files changed, 14 insertions, 8 deletions
diff --git a/textproc/ruby-kramdown/Makefile b/textproc/ruby-kramdown/Makefile
index 07ca3e5525d..6f43f7a7b15 100644
--- a/textproc/ruby-kramdown/Makefile
+++ b/textproc/ruby-kramdown/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2012/06/02 01:11:44 taca Exp $
+# $NetBSD: Makefile,v 1.5 2012/06/13 14:41:03 taca Exp $
-DISTNAME= kramdown-0.13.6
+DISTNAME= kramdown-0.13.7
CATEGORIES= textproc
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/textproc/ruby-kramdown/PLIST b/textproc/ruby-kramdown/PLIST
index 572eb8e2117..037fbdd2f04 100644
--- a/textproc/ruby-kramdown/PLIST
+++ b/textproc/ruby-kramdown/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2012/03/18 02:45:58 taca Exp $
+@comment $NetBSD: PLIST,v 1.4 2012/06/13 14:41:03 taca Exp $
bin/kramdown
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/AUTHORS
@@ -41,6 +41,7 @@ ${GEM_LIBDIR}/lib/kramdown/converter/base.rb
${GEM_LIBDIR}/lib/kramdown/converter/html.rb
${GEM_LIBDIR}/lib/kramdown/converter/kramdown.rb
${GEM_LIBDIR}/lib/kramdown/converter/latex.rb
+${GEM_LIBDIR}/lib/kramdown/converter/remove_html_tags.rb
${GEM_LIBDIR}/lib/kramdown/converter/toc.rb
${GEM_LIBDIR}/lib/kramdown/document.rb
${GEM_LIBDIR}/lib/kramdown/element.rb
@@ -131,6 +132,9 @@ ${GEM_LIBDIR}/test/testcases/block/05_blockquote/with_code_blocks.html
${GEM_LIBDIR}/test/testcases/block/05_blockquote/with_code_blocks.text
${GEM_LIBDIR}/test/testcases/block/06_codeblock/error.html
${GEM_LIBDIR}/test/testcases/block/06_codeblock/error.text
+${GEM_LIBDIR}/test/testcases/block/06_codeblock/highlighting.html
+${GEM_LIBDIR}/test/testcases/block/06_codeblock/highlighting.options
+${GEM_LIBDIR}/test/testcases/block/06_codeblock/highlighting.text
${GEM_LIBDIR}/test/testcases/block/06_codeblock/lazy.html
${GEM_LIBDIR}/test/testcases/block/06_codeblock/lazy.text
${GEM_LIBDIR}/test/testcases/block/06_codeblock/no_newline_at_end.html
@@ -311,11 +315,13 @@ ${GEM_LIBDIR}/test/testcases/block/14_table/table_with_footnote.text
${GEM_LIBDIR}/test/testcases/block/15_math/normal.html
${GEM_LIBDIR}/test/testcases/block/15_math/normal.text
${GEM_LIBDIR}/test/testcases/block/16_toc/no_toc.html
-${GEM_LIBDIR}/test/testcases/block/16_toc/no_toc.options
${GEM_LIBDIR}/test/testcases/block/16_toc/no_toc.text
${GEM_LIBDIR}/test/testcases/block/16_toc/toc_levels.html
${GEM_LIBDIR}/test/testcases/block/16_toc/toc_levels.options
${GEM_LIBDIR}/test/testcases/block/16_toc/toc_levels.text
+${GEM_LIBDIR}/test/testcases/block/16_toc/toc_with_footnotes.html
+${GEM_LIBDIR}/test/testcases/block/16_toc/toc_with_footnotes.options
+${GEM_LIBDIR}/test/testcases/block/16_toc/toc_with_footnotes.text
${GEM_LIBDIR}/test/testcases/encoding.html
${GEM_LIBDIR}/test/testcases/encoding.text
${GEM_LIBDIR}/test/testcases/span/01_link/empty.html
diff --git a/textproc/ruby-kramdown/distinfo b/textproc/ruby-kramdown/distinfo
index 751b3eb43fc..21a70d3105f 100644
--- a/textproc/ruby-kramdown/distinfo
+++ b/textproc/ruby-kramdown/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2012/06/02 01:11:44 taca Exp $
+$NetBSD: distinfo,v 1.5 2012/06/13 14:41:03 taca Exp $
-SHA1 (kramdown-0.13.6.gem) = 125c2cc702189c46c4c69347a64e5b95383aa968
-RMD160 (kramdown-0.13.6.gem) = baf0526c5db4a78c02eb95ed6b5fa798a87e1ee8
-Size (kramdown-0.13.6.gem) = 267776 bytes
+SHA1 (kramdown-0.13.7.gem) = 1650869b45b45dd55842b2872e64d3c165d53001
+RMD160 (kramdown-0.13.7.gem) = ec1f18c4ebf82a1d2395999f8daed7f6a2990169
+Size (kramdown-0.13.7.gem) = 270336 bytes