Skip to content

Commit 44540f8

Browse files
committed
new update
1 parent e1a24f2 commit 44540f8

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

dist/codeparl-bootstrap-markdown-editor.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/codeparl-bootstrap-markdown-editor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@
808808

809809
markdownContent: function(markdown) {
810810
if (!markdown) {
811-
return convertToLink(aceEditor.getValue());
811+
return aceEditor.getValue();
812812
} else {
813813
aceEditor.session.setValue(markdown);
814814
aceEditor.clearSelection();
@@ -818,7 +818,7 @@
818818
},
819819

820820
htmlContent: function() {
821-
var html = converter.makeHtml(convertToLink(aceEditor.session.getValue()));
821+
var html = converter.makeHtml(aceEditor.session.getValue());
822822
return html;
823823
},
824824
preview: function(markdown, options) {

0 commit comments

Comments
 (0)