[DRE-commits] [ruby-kramdown] branch master updated (c1ea12f -> 8427b03)
Cédric Boutillier
boutil at moszumanska.debian.org
Mon Jul 20 07:28:59 UTC 2015
This is an automated email from the git hooks/post-receive script.
boutil pushed a change to branch master
in repository ruby-kramdown.
from c1ea12f Update changelog for 1.4.2-2 release
adds f45fa11 Imported Upstream version 1.7.0
new d7156b1 Merge tag 'upstream/1.7.0'
new a1cb467 change slightly the beginning of the long description, update homepage
new 1aa33c3 add years to the debian/copyright
adds 6dcf2a1 Imported Upstream version 1.8.0
new 6f76341 Merge tag 'upstream/1.8.0'
new c1f8731 depend and build-depend on ruby-rouge
new a42e9c2 add patch to skip tests using unavailable math engines
new 87baea8 build-depend on texlive-latex-extra and texlive-fonts-recommended to run latex-related tests
new 8427b03 prepare changelog
The 8 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 | 8 +-
README.md | 12 +-
Rakefile | 7 +-
VERSION | 2 +-
bin/kramdown | 4 +-
debian/changelog | 13 +
debian/control | 9 +-
debian/copyright | 2 +-
debian/patches/series | 1 +
debian/patches/skip_missing_math_engines.patch | 40 ++
doc/default.template | 4 +-
doc/documentation.template | 8 +
doc/index.page | 28 +-
doc/installation.page | 7 +-
doc/options.page | 45 ++-
doc/sidebar.template | 7 -
doc/sitemap.sitemap | 5 +
doc/syntax.page | 45 ++-
doc/virtual | 12 +
lib/kramdown.rb | 2 +-
lib/kramdown/compatibility.rb | 2 +-
lib/kramdown/converter.rb | 38 +-
lib/kramdown/converter/base.rb | 37 +-
lib/kramdown/converter/html.rb | 80 ++--
lib/kramdown/converter/kramdown.rb | 20 +-
lib/kramdown/converter/latex.rb | 19 +-
lib/kramdown/converter/math_engine/itex2mml.rb | 39 ++
lib/kramdown/converter/math_engine/mathjax.rb | 48 +++
lib/kramdown/converter/math_engine/mathjaxnode.rb | 48 +++
lib/kramdown/converter/math_engine/ritex.rb | 38 ++
lib/kramdown/converter/pdf.rb | 5 +-
lib/kramdown/converter/remove_html_tags.rb | 4 +-
lib/kramdown/converter/syntax_highlighter.rb | 53 +++
.../converter/syntax_highlighter/coderay.rb | 78 ++++
.../converter/syntax_highlighter/minted.rb | 35 ++
lib/kramdown/converter/syntax_highlighter/rouge.rb | 37 ++
lib/kramdown/converter/toc.rb | 4 +-
lib/kramdown/document.rb | 10 +-
lib/kramdown/element.rb | 15 +-
lib/kramdown/error.rb | 2 +-
lib/kramdown/options.rb | 124 +++++-
lib/kramdown/parser.rb | 2 +-
lib/kramdown/parser/base.rb | 12 +-
lib/kramdown/parser/gfm.rb | 19 +-
lib/kramdown/parser/html.rb | 31 +-
lib/kramdown/parser/kramdown.rb | 13 +-
lib/kramdown/parser/kramdown/abbreviation.rb | 12 +-
lib/kramdown/parser/kramdown/autolink.rb | 2 +-
lib/kramdown/parser/kramdown/blank_line.rb | 4 +-
lib/kramdown/parser/kramdown/block_boundary.rb | 2 +-
lib/kramdown/parser/kramdown/blockquote.rb | 2 +-
lib/kramdown/parser/kramdown/codeblock.rb | 4 +-
lib/kramdown/parser/kramdown/codespan.rb | 2 +-
lib/kramdown/parser/kramdown/emphasis.rb | 4 +-
lib/kramdown/parser/kramdown/eob.rb | 2 +-
lib/kramdown/parser/kramdown/escaped_chars.rb | 2 +-
lib/kramdown/parser/kramdown/extensions.rb | 15 +-
lib/kramdown/parser/kramdown/footnote.rb | 15 +-
lib/kramdown/parser/kramdown/header.rb | 2 +-
lib/kramdown/parser/kramdown/horizontal_rule.rb | 2 +-
lib/kramdown/parser/kramdown/html.rb | 15 +-
lib/kramdown/parser/kramdown/html_entity.rb | 2 +-
lib/kramdown/parser/kramdown/line_break.rb | 2 +-
lib/kramdown/parser/kramdown/link.rb | 16 +-
lib/kramdown/parser/kramdown/list.rb | 19 +-
lib/kramdown/parser/kramdown/math.rb | 6 +-
lib/kramdown/parser/kramdown/paragraph.rb | 6 +-
lib/kramdown/parser/kramdown/smart_quotes.rb | 4 +-
lib/kramdown/parser/kramdown/table.rb | 8 +-
lib/kramdown/parser/kramdown/typographic_symbol.rb | 2 +-
lib/kramdown/parser/markdown.rb | 4 +-
lib/kramdown/utils.rb | 20 +-
lib/kramdown/utils/configurable.rb | 44 +++
lib/kramdown/utils/entities.rb | 2 +-
lib/kramdown/utils/html.rb | 4 +-
lib/kramdown/utils/ordered_hash.rb | 2 +-
lib/kramdown/utils/string_scanner.rb | 8 +
lib/kramdown/utils/unidecoder.rb | 2 +-
lib/kramdown/version.rb | 4 +-
man/man1/kramdown.1 | 414 ++++++++++++---------
metadata.yml | 128 ++++++-
test/run_tests.rb | 2 +-
test/test_files.rb | 212 +++++++----
test/test_location.rb | 13 +
test/test_string_scanner_kramdown.rb | 8 +
test/testcases/block/04_header/atx_header.html | 2 +-
.../highlighting-minted-with-opts.latex | 9 +
.../highlighting-minted-with-opts.options | 4 +
.../highlighting-minted-with-opts.text | 5 +
.../block/06_codeblock/highlighting-minted.latex | 8 +
.../block/06_codeblock/highlighting-minted.options | 3 +
...{highlighting.text => highlighting-minted.text} | 0
.../block/06_codeblock/highlighting-opts.html | 6 +
.../block/06_codeblock/highlighting-opts.options | 7 +
.../{highlighting.text => highlighting-opts.text} | 0
.../block/06_codeblock/highlighting-rouge.html | 6 +
.../block/06_codeblock/highlighting-rouge.options | 3 +
.../{highlighting.text => highlighting-rouge.text} | 0
.../testcases/block/06_codeblock/highlighting.html | 4 +-
.../with_lang_in_fenced_block_name_with_dash.html | 3 +
...th_lang_in_fenced_block_name_with_dash.options} | 0
.../with_lang_in_fenced_block_name_with_dash.text | 4 +
test/testcases/block/09_html/html_after_block.html | 7 +
test/testcases/block/09_html/html_after_block.text | 5 +
test/testcases/block/11_ial/simple.html | 4 +-
test/testcases/block/11_ial/simple.text | 6 +-
test/testcases/block/12_extension/options3.html | 4 +-
test/testcases/block/14_table/errors.html | 4 +
test/testcases/block/14_table/errors.text | 4 +
test/testcases/block/15_math/gh_128.html | 2 +-
test/testcases/block/15_math/itex2mml.html | 1 +
test/testcases/block/15_math/itex2mml.options | 1 +
test/testcases/block/15_math/itex2mml.text | 1 +
test/testcases/block/15_math/mathjax_preview.html | 4 +
.../block/15_math/mathjax_preview.options | 2 +
test/testcases/block/15_math/mathjax_preview.text | 5 +
.../block/15_math/mathjax_preview_simple.html | 4 +
.../block/15_math/mathjax_preview_simple.options | 2 +
.../block/15_math/mathjax_preview_simple.text | 5 +
test/testcases/block/15_math/mathjaxnode.html.19 | 27 ++
test/testcases/block/15_math/mathjaxnode.options | 1 +
test/testcases/block/15_math/mathjaxnode.text | 1 +
.../block/15_math/mathjaxnode_notexhints.html.19 | 23 ++
.../block/15_math/mathjaxnode_notexhints.options | 3 +
.../block/15_math/mathjaxnode_notexhints.text | 1 +
.../block/15_math/mathjaxnode_semantics.html.19 | 32 ++
.../block/15_math/mathjaxnode_semantics.options | 3 +
.../block/15_math/mathjaxnode_semantics.text | 1 +
test/testcases/block/15_math/normal.html | 2 +-
test/testcases/block/15_math/ritex.html | 1 +
test/testcases/block/15_math/ritex.options | 1 +
test/testcases/block/15_math/ritex.text | 1 +
test/testcases/block/16_toc/toc_exclude.html | 14 +-
test/testcases/block/16_toc/toc_levels.html | 10 +-
test/testcases/block/16_toc/toc_levels.text | 2 +-
.../testcases/block/16_toc/toc_with_footnotes.html | 2 +-
test/testcases/span/01_link/empty_title.htmlinput | 3 +
test/testcases/span/01_link/empty_title.text | 7 +
test/testcases/span/01_link/link_defs.html | 2 +-
test/testcases/span/01_link/link_defs.text | 3 +-
.../testcases/span/01_link/link_defs_with_ial.html | 4 +
.../testcases/span/01_link/link_defs_with_ial.text | 16 +
test/testcases/span/02_emphasis/normal.html | 2 +
test/testcases/span/02_emphasis/normal.text | 2 +
.../span/03_codespan/highlighting-minted.latex | 2 +
.../span/03_codespan/highlighting-minted.options | 1 +
...{highlighting.text => highlighting-minted.text} | 0
.../span/03_codespan/highlighting-rouge.html | 1 +
.../span/03_codespan/highlighting-rouge.options | 1 +
.../{highlighting.text => highlighting-rouge.text} | 0
test/testcases/span/03_codespan/highlighting.html | 2 +-
test/testcases/span/04_footnote/backlink_text.html | 9 +
.../span/04_footnote/backlink_text.options | 1 +
test/testcases/span/04_footnote/backlink_text.text | 3 +
test/testcases/span/04_footnote/markers.text | 1 +
test/testcases/span/04_footnote/placement.html | 2 +-
test/testcases/span/04_footnote/placement.text | 2 +-
.../testcases/span/04_footnote/regexp_problem.html | 14 +
.../testcases/span/04_footnote/regexp_problem.text | 52 +++
test/testcases/span/05_html/button.html | 7 +
test/testcases/span/05_html/button.text | 7 +
test/testcases/span/abbreviations/abbrev.html | 4 +-
test/testcases/span/abbreviations/abbrev.text | 7 +
test/testcases/span/line_breaks/normal.html | 4 +-
test/testcases/span/line_breaks/normal.latex | 4 +-
test/testcases/span/math/itex2mml.html | 1 +
test/testcases/span/math/itex2mml.options | 1 +
test/testcases/span/math/itex2mml.text | 1 +
test/testcases/span/math/mathjaxnode.html.19 | 27 ++
test/testcases/span/math/mathjaxnode.options | 1 +
test/testcases/span/math/mathjaxnode.text | 1 +
test/testcases/span/math/ritex.html | 1 +
test/testcases/span/math/ritex.options | 1 +
test/testcases/span/math/ritex.text | 1 +
.../span/text_substitutions/typography.html | 8 +
.../span/text_substitutions/typography.text | 8 +
test/testcases_gfm/backticks_syntax.html | 4 +-
test/testcases_gfm/hard_line_breaks.html | 3 +
test/testcases_gfm/hard_line_breaks.text | 3 +
179 files changed, 2054 insertions(+), 511 deletions(-)
create mode 100644 debian/patches/series
create mode 100644 debian/patches/skip_missing_math_engines.patch
create mode 100644 doc/sitemap.sitemap
create mode 100644 lib/kramdown/converter/math_engine/itex2mml.rb
create mode 100644 lib/kramdown/converter/math_engine/mathjax.rb
create mode 100644 lib/kramdown/converter/math_engine/mathjaxnode.rb
create mode 100644 lib/kramdown/converter/math_engine/ritex.rb
create mode 100644 lib/kramdown/converter/syntax_highlighter.rb
create mode 100644 lib/kramdown/converter/syntax_highlighter/coderay.rb
create mode 100644 lib/kramdown/converter/syntax_highlighter/minted.rb
create mode 100644 lib/kramdown/converter/syntax_highlighter/rouge.rb
create mode 100644 lib/kramdown/utils/configurable.rb
create mode 100644 test/testcases/block/06_codeblock/highlighting-minted-with-opts.latex
create mode 100644 test/testcases/block/06_codeblock/highlighting-minted-with-opts.options
create mode 100644 test/testcases/block/06_codeblock/highlighting-minted-with-opts.text
create mode 100644 test/testcases/block/06_codeblock/highlighting-minted.latex
create mode 100644 test/testcases/block/06_codeblock/highlighting-minted.options
copy test/testcases/block/06_codeblock/{highlighting.text => highlighting-minted.text} (100%)
create mode 100644 test/testcases/block/06_codeblock/highlighting-opts.html
create mode 100644 test/testcases/block/06_codeblock/highlighting-opts.options
copy test/testcases/block/06_codeblock/{highlighting.text => highlighting-opts.text} (100%)
create mode 100644 test/testcases/block/06_codeblock/highlighting-rouge.html
create mode 100644 test/testcases/block/06_codeblock/highlighting-rouge.options
copy test/testcases/block/06_codeblock/{highlighting.text => highlighting-rouge.text} (100%)
create mode 100644 test/testcases/block/06_codeblock/with_lang_in_fenced_block_name_with_dash.html
copy test/testcases/block/06_codeblock/{with_lang_in_fenced_block.options => with_lang_in_fenced_block_name_with_dash.options} (100%)
create mode 100644 test/testcases/block/06_codeblock/with_lang_in_fenced_block_name_with_dash.text
create mode 100644 test/testcases/block/09_html/html_after_block.html
create mode 100644 test/testcases/block/09_html/html_after_block.text
create mode 100644 test/testcases/block/15_math/itex2mml.html
create mode 100644 test/testcases/block/15_math/itex2mml.options
create mode 100644 test/testcases/block/15_math/itex2mml.text
create mode 100644 test/testcases/block/15_math/mathjax_preview.html
create mode 100644 test/testcases/block/15_math/mathjax_preview.options
create mode 100644 test/testcases/block/15_math/mathjax_preview.text
create mode 100644 test/testcases/block/15_math/mathjax_preview_simple.html
create mode 100644 test/testcases/block/15_math/mathjax_preview_simple.options
create mode 100644 test/testcases/block/15_math/mathjax_preview_simple.text
create mode 100644 test/testcases/block/15_math/mathjaxnode.html.19
create mode 100644 test/testcases/block/15_math/mathjaxnode.options
create mode 100644 test/testcases/block/15_math/mathjaxnode.text
create mode 100644 test/testcases/block/15_math/mathjaxnode_notexhints.html.19
create mode 100644 test/testcases/block/15_math/mathjaxnode_notexhints.options
create mode 100644 test/testcases/block/15_math/mathjaxnode_notexhints.text
create mode 100644 test/testcases/block/15_math/mathjaxnode_semantics.html.19
create mode 100644 test/testcases/block/15_math/mathjaxnode_semantics.options
create mode 100644 test/testcases/block/15_math/mathjaxnode_semantics.text
create mode 100644 test/testcases/block/15_math/ritex.html
create mode 100644 test/testcases/block/15_math/ritex.options
create mode 100644 test/testcases/block/15_math/ritex.text
create mode 100644 test/testcases/span/01_link/empty_title.htmlinput
create mode 100644 test/testcases/span/01_link/empty_title.text
create mode 100644 test/testcases/span/01_link/link_defs_with_ial.html
create mode 100644 test/testcases/span/01_link/link_defs_with_ial.text
create mode 100644 test/testcases/span/03_codespan/highlighting-minted.latex
create mode 100644 test/testcases/span/03_codespan/highlighting-minted.options
copy test/testcases/span/03_codespan/{highlighting.text => highlighting-minted.text} (100%)
create mode 100644 test/testcases/span/03_codespan/highlighting-rouge.html
create mode 100644 test/testcases/span/03_codespan/highlighting-rouge.options
copy test/testcases/span/03_codespan/{highlighting.text => highlighting-rouge.text} (100%)
create mode 100644 test/testcases/span/04_footnote/backlink_text.html
create mode 100644 test/testcases/span/04_footnote/backlink_text.options
create mode 100644 test/testcases/span/04_footnote/backlink_text.text
create mode 100644 test/testcases/span/04_footnote/regexp_problem.html
create mode 100644 test/testcases/span/04_footnote/regexp_problem.text
create mode 100644 test/testcases/span/05_html/button.html
create mode 100644 test/testcases/span/05_html/button.text
create mode 100644 test/testcases/span/math/itex2mml.html
create mode 100644 test/testcases/span/math/itex2mml.options
create mode 100644 test/testcases/span/math/itex2mml.text
create mode 100644 test/testcases/span/math/mathjaxnode.html.19
create mode 100644 test/testcases/span/math/mathjaxnode.options
create mode 100644 test/testcases/span/math/mathjaxnode.text
create mode 100644 test/testcases/span/math/ritex.html
create mode 100644 test/testcases/span/math/ritex.options
create mode 100644 test/testcases/span/math/ritex.text
create mode 100644 test/testcases_gfm/hard_line_breaks.html
create mode 100644 test/testcases_gfm/hard_line_breaks.text
--
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