Sami Saves

Results 3 issues of Sami Saves

Currently it is impossible to use italic in the middle of words, because the import plugin will render underscores in the middle of words as underscores instead of turning them...

This escapes all markdown related characters that are listed in [markdown-escapes](https://www.npmjs.com/package/markdown-escapes) npm package. It should solve issue #175 Before updating / adding tests, I thought it would be best to...

Currently only characters _, ` and * are escaped. I think the plugin should either escape all markdown characters or none at all. ```js function encodeContent(text) { return text.replace(/[*_`]/g, '\\$&');...