allow markdown emphasis inside of words

This commit is contained in:
jomo
2017-01-08 08:55:31 +01:00
parent 61edf27888
commit 992406a20b
-2
View File
@@ -28,7 +28,6 @@ module ApplicationHelper
link_attributes: {rel: "nofollow"} link_attributes: {rel: "nofollow"}
}) })
md = Redcarpet::Markdown.new(renderer, { md = Redcarpet::Markdown.new(renderer, {
no_intra_emphasis: true,
tables: true, tables: true,
fenced_code_blocks: true, fenced_code_blocks: true,
autolink: true, autolink: true,
@@ -53,7 +52,6 @@ module ApplicationHelper
hard_wrap: true, hard_wrap: true,
}) })
md = Redcarpet::Markdown.new(renderer, { md = Redcarpet::Markdown.new(renderer, {
no_intra_emphasis: true,
tables: true, tables: true,
fenced_code_blocks: true, fenced_code_blocks: true,
autolink: true, autolink: true,