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:
-
no support for autodetecting email addresses [email protected]
-
no support for autodetecting links http://www.france.com
Fixed:
-
no support for link references [Google][1] [1]: http://google.com/ "Google"
-
no support for '--' line separator
-
property names in links are broken [length] toptensoftware/markdowndeep#8
-
merged upstream pull requests into the JavaScript version
gfm fenced code blocks do not work.
# ruby
puts 'code highlighting'
puts "!"
list continuation problems
- 1
- 2
- 3
- a
- b
- 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.