mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-14 20:11:10 +00:00
fixed link problems
This commit is contained in:
parent
3f107b8a19
commit
c8eb8fda6d
1 changed files with 7 additions and 1 deletions
|
|
@ -41,7 +41,13 @@ const rules = {
|
|||
}),
|
||||
|
||||
text: Object.assign({}, SimpleMarkdown.defaultRules.text, {
|
||||
order: order++,
|
||||
order: order++,
|
||||
match: function(source) {
|
||||
// copied and modified from simple-markdown.js
|
||||
return /^[\s\S][0-9A-Za-z\u00c0-\uffff]*\s?/.exec(source);
|
||||
},
|
||||
parse: SimpleMarkdown.defaultRules.text.parse,
|
||||
html: SimpleMarkdown.defaultRules.text.html,
|
||||
}),
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue