Emanuele D'Osualdo

Results 274 comments of Emanuele D'Osualdo

I have no experience with Atom at all. From what I gather, this would mean a complete rewrite in CoffeeScript? If there is a way to translate ST3 plugins to...

Indentation and line breaks should be preserved if you mark the code as code. Which command are you using? Clip to Evernote? Writing a new note and using Markdown?

I need to see your Markdown to be sure it's a bug. Try with the following (mind the linebreaks at the code delimiters): ```java public static void main(String[] args) {...

Hi, thanks for the feedback. You are making a very good point. At the moment there is no mechanism to handle this, you just have to be careful. One possible...

You have two options: 1. either you modify the sourcecode of the plugin to set the `DEBUG` variable to True 2. or in ST's console you do `from Evernote.lib.markdown2 import...

From the console, after doing ``` from Evernote.lib.markdown2 import markdown as md ``` and ``` from Evernote.sublime_evernote import EvernoteDo ``` you can do ``` print(md(view.substr(sublime.Region(0,view.size())), EvernoteDo.MD_EXTRAS)) ``` to visualize the...

Have you tried turning the `code_friendly` setting on?

Ok, I think I can confirm this is a bug of the markdown parser. It might be worth opening an issue at [trentm/python-markdown2](https://github.com/trentm/python-markdown2) It should work with the `code_friendly` setting...

@mAAdhaTTah thanks for offering your help! First: does the `code_friendly` setting solve your problem for the moment? As for the switch I have been considering switching to [mistune](https://github.com/lepture/mistune/) which seems...

@mAAdhaTTah good :+1: I forgot to mention: if we do switch it would be a good chance to revamp the metadata parsing (it's not included in `mistune`) using a proper...