docbrown/app/lib/constants/redcarpet.rb

15 lines
308 B
Ruby

module Constants
module Redcarpet
CONFIG = {
autolink: true,
no_intra_emphasis: true,
fenced_code_blocks: true,
lax_html_blocks: true,
lax_spacing: true,
strikethrough: true,
superscript: false,
tables: true,
footnotes: true
}.freeze
end
end