Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exposes hard_wrap setting to the plugin #3

Merged
merged 1 commit into from Oct 31, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions kramdown_pygments.rb
Expand Up @@ -51,7 +51,7 @@ def convert_codespan(el, indent)
end
"<code#{html_attributes(attr)}>#{code}</code>"
end

def pygmentize(code, lang)
if lang
Pygments.highlight(code,
Expand Down Expand Up @@ -85,7 +85,8 @@ def convert(content)
:toc_levels => @config['kramdown']['toc_levels'],
:smart_quotes => @config['kramdown']['smart_quotes'],
:kramdown_default_lang => @config['kramdown']['default_lang'],
:input => @config['kramdown']['input']
:input => @config['kramdown']['input'],
:hard_wrap => @config['kramdown']['hard_wrap']
}).to_pygments_html
return html;
end
Expand Down