[DRE-commits] [ruby-kramdown] branch master updated (b7517ef -> 6d94df1)
Youhei SASAKI
uwabami-guest at moszumanska.debian.org
Thu Aug 3 11:44:13 UTC 2017
This is an automated email from the git hooks/post-receive script.
uwabami-guest pushed a change to branch master
in repository ruby-kramdown.
from b7517ef prepare changelog
adds be42fd2 New upstream version 1.14.0
new 8770372 Updated version 1.14.0 from 'upstream/1.14.0'
new abc82c6 Refresh patches
new d215564 Add patch: replase Unicode char to ASCII
new f44e750 Bump Standard Version: 4.0.0
new 6d94df1 Update debian/changelog
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
CONTRIBUTERS | 9 +-
README.md | 10 +-
Rakefile | 3 +-
VERSION | 2 +-
benchmark/benchmark.sh | 20 +-
bin/kramdown | 6 +-
debian/changelog | 9 +
debian/control | 2 +-
debian/patches/fix_manpage_warnings.patch | 32 +
debian/patches/rouge2.patch | 61 --
debian/patches/series | 1 +
debian/patches/skip_missing_math_engines.patch | 4 +-
doc/default.scss | 25 +
doc/default.template | 20 +-
doc/documentation.template | 5 +
doc/index.page | 8 +-
doc/quickref.page | 6 +-
doc/sidebar.template | 12 +-
doc/syntax.page | 18 +-
kramdown.gemspec | 6 +-
lib/kramdown/converter.rb | 2 +
lib/kramdown/converter/base.rb | 2 +-
lib/kramdown/converter/hash_ast.rb | 2 +
lib/kramdown/converter/html.rb | 4 +-
lib/kramdown/converter/man.rb | 303 ++++++++
lib/kramdown/converter/math_engine/mathjax.rb | 14 +-
lib/kramdown/converter/syntax_highlighter/rouge.rb | 12 +-
lib/kramdown/parser/gfm.rb | 57 +-
lib/kramdown/parser/kramdown.rb | 5 +
lib/kramdown/parser/kramdown/list.rb | 6 +-
lib/kramdown/parser/kramdown/smart_quotes.rb | 2 +-
lib/kramdown/parser/kramdown/table.rb | 6 +-
lib/kramdown/version.rb | 2 +-
man/man1/kramdown.1 | 804 +++++++++------------
test/test_files.rb | 25 +-
test/testcases/block/08_list/lazy_and_nested.html | 9 +
test/testcases/block/08_list/lazy_and_nested.text | 4 +
test/testcases/block/12_extension/options.html | 2 +-
test/testcases/block/12_extension/options2.html | 2 +-
test/testcases/block/14_table/header.html | 21 +
test/testcases/block/14_table/header.text | 7 +
.../block/15_math/mathjax_preview_as_code.html | 4 +
...iew.options => mathjax_preview_as_code.options} | 1 +
...x_preview.text => mathjax_preview_as_code.text} | 0
.../testcases/block/16_toc/toc_with_footnotes.html | 2 +-
test/testcases/man/example.man | 123 ++++
test/testcases/man/example.text | 85 +++
.../man/heading-name-dash-description.man | 4 +
.../man/heading-name-dash-description.text | 1 +
test/testcases/man/heading-name-description.man | 4 +
test/testcases/man/heading-name-description.text | 2 +
.../man/heading-name-section-description.man | 4 +
.../man/heading-name-section-description.text | 1 +
test/testcases/man/heading-name-section.man | 2 +
test/testcases/man/heading-name-section.text | 1 +
test/testcases/man/heading-name.man | 2 +
test/testcases/man/heading-name.text | 1 +
test/testcases/man/sections.man | 4 +
test/testcases/man/sections.text | 11 +
test/testcases/man/text-escaping.man | 8 +
test/testcases/man/text-escaping.text | 7 +
test/testcases/span/04_footnote/backlink_text.html | 2 +-
test/testcases/span/04_footnote/footnote_nr.html | 4 +-
.../span/04_footnote/inside_footnote.html | 6 +-
test/testcases/span/04_footnote/markers.html | 4 +-
test/testcases/span/04_footnote/placement.html | 2 +-
.../testcases/span/04_footnote/regexp_problem.html | 2 +-
.../span/text_substitutions/typography.html | 2 +
.../span/text_substitutions/typography.text | 2 +
test/testcases_gfm/codeblock_fenced.html | 20 +
.../codeblock_fenced.options} | 0
test/testcases_gfm/codeblock_fenced.text | 21 +
test/testcases_gfm/header_ids.html | 27 +
test/testcases_gfm/header_ids.html.19 | 27 +
.../header_ids.options} | 0
test/testcases_gfm/header_ids.text | 27 +
test/testcases_gfm/header_ids_with_prefix.html | 3 +
test/testcases_gfm/header_ids_with_prefix.options | 2 +
.../header_ids_with_prefix.text} | 0
79 files changed, 1347 insertions(+), 621 deletions(-)
mode change 100644 => 100755 benchmark/benchmark.sh
create mode 100644 debian/patches/fix_manpage_warnings.patch
create mode 100644 lib/kramdown/converter/man.rb
create mode 100644 test/testcases/block/08_list/lazy_and_nested.html
create mode 100644 test/testcases/block/08_list/lazy_and_nested.text
create mode 100644 test/testcases/block/15_math/mathjax_preview_as_code.html
copy test/testcases/block/15_math/{mathjax_preview.options => mathjax_preview_as_code.options} (59%)
copy test/testcases/block/15_math/{mathjax_preview.text => mathjax_preview_as_code.text} (100%)
create mode 100644 test/testcases/man/example.man
create mode 100644 test/testcases/man/example.text
create mode 100644 test/testcases/man/heading-name-dash-description.man
create mode 100644 test/testcases/man/heading-name-dash-description.text
create mode 100644 test/testcases/man/heading-name-description.man
create mode 100644 test/testcases/man/heading-name-description.text
create mode 100644 test/testcases/man/heading-name-section-description.man
create mode 100644 test/testcases/man/heading-name-section-description.text
create mode 100644 test/testcases/man/heading-name-section.man
create mode 100644 test/testcases/man/heading-name-section.text
create mode 100644 test/testcases/man/heading-name.man
create mode 100644 test/testcases/man/heading-name.text
create mode 100644 test/testcases/man/sections.man
create mode 100644 test/testcases/man/sections.text
create mode 100644 test/testcases/man/text-escaping.man
create mode 100644 test/testcases/man/text-escaping.text
create mode 100644 test/testcases_gfm/codeblock_fenced.html
copy test/{testcases/block/06_codeblock/disable-highlighting.options => testcases_gfm/codeblock_fenced.options} (100%)
create mode 100644 test/testcases_gfm/codeblock_fenced.text
create mode 100644 test/testcases_gfm/header_ids.html
create mode 100644 test/testcases_gfm/header_ids.html.19
copy test/{testcases/block/11_ial/auto_id_and_ial.options => testcases_gfm/header_ids.options} (100%)
create mode 100644 test/testcases_gfm/header_ids.text
create mode 100644 test/testcases_gfm/header_ids_with_prefix.html
create mode 100644 test/testcases_gfm/header_ids_with_prefix.options
copy test/{testcases/block/04_header/with_auto_id_prefix.text => testcases_gfm/header_ids_with_prefix.text} (100%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-kramdown.git
More information about the Pkg-ruby-extras-commits
mailing list