Commit f3ceebad42f56619aad1aa793735e47cd7da7aec

Authored by Marin Jankovski
1 parent b5d81174

Ignore newlines per md standard.

Showing 1 changed file with 1 additions and 2 deletions   Show diff stats
app/helpers/gitlab_markdown_helper.rb
... ... @@ -35,7 +35,6 @@ module GitlabMarkdownHelper
35 35 # see https://github.com/vmg/redcarpet#darling-i-packed-you-a-couple-renderers-for-lunch-
36 36 filter_html: true,
37 37 with_toc_data: true,
38   - hard_wrap: true,
39 38 safe_links_only: true
40 39 }.merge(options))
41 40 @markdown = Redcarpet::Markdown.new(gitlab_renderer,
... ... @@ -45,7 +44,7 @@ module GitlabMarkdownHelper
45 44 fenced_code_blocks: true,
46 45 autolink: true,
47 46 strikethrough: true,
48   - lax_html_blocks: true,
  47 + lax_spacing: true,
49 48 space_after_headers: true,
50 49 superscript: true)
51 50 end
... ...