Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.85 KB

markdown_deep_notes.md

File metadata and controls

64 lines (43 loc) · 1.85 KB

Test md deep:

var md = new MarkdownDeep.Markdown();
md.ExtraMode = true;
md.SafeMode = false;
var text = md.Transform( $.editorSession.getValue() );
document.getElementById( 'contentframe' ).innerHTML = text;

Open:

Fixed:

  • no support for link references [Google][1] [1]: http://google.com/ "Google"

  • no support for '--' line separator

gfm fenced code blocks do not work.

# ruby
puts 'code highlighting'

puts "!"

list continuation problems

  • 1
  • 2
  • 3
  1. a
  2. b
  3. c

--

Upstream markdowndeep is not maintained. This fork aims for feature parity with Sundown. I'm only using the JavaScript version of markdowndeep so changes to the .NET version have not been made.

  • @EisenbergEffect fix for #14

  • @5arx fix 1 and 2 for #11

  • My fix for #8

  • Support for line separator. -- is converted to an empty h2.

  • Fix list continuation #16.