diff options
Diffstat (limited to 'lib/kramdown_ext.rb')
-rw-r--r-- | lib/kramdown_ext.rb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/kramdown_ext.rb b/lib/kramdown_ext.rb deleted file mode 100644 index e41013e..0000000 --- a/lib/kramdown_ext.rb +++ /dev/null @@ -1,20 +0,0 @@ -module Kramdown - module Converter - class Xml < Html - NOENTITY_MAP = { - :mdash => '---', - :ndash => '--', - :hellip => '...', - :laquo_space => '<< ', - :raquo_space => ' >>', - :laquo => '<', - :raquo => '>' - } - - # Overriding to do nothing. We don't want typographic symbols replaced - def convert_typographic_sym(el, opts) - NOENTITY_MAP[el.value] - end - end - end -end |