Dmitry Shachnev

Results 181 comments of Dmitry Shachnev
trafficstars

#531 (merged recently) implements a directory tree side panel, which can partially satisfy your use case — if you are working on many files that are in the same directory,...

Hi! Unfortunately, I don't have enough time or interest to implement this myself, but Python-Markups module provides an API to implement any custom markups, and any such markup will be...

Did you install PyQt5 from PyPI? This may be an incompatibility issue between new Qt and X11 libraries from Stretch. Please try uninstalling PyQt5 from PyPI and using distro packages...

OK, then I do not have any idea what could cause them. But do these warnings really cause any issues? Is the user interface buggy or slow because of them?

Hi, and sorry for the delay in replying! Python-Markdown allows you to specify any additional attributes, see [attr_list documentation](https://python-markdown.github.io/extensions/attr_list/). So after an image markup is inserted, e.g. `![Alt text](image.png)`, you...

Do you mean making them clickable in the editor (not preview)? Are there other use cases except the `.. include::` directive?

- **labels**: plugin, file-browser --> plugin, file-browser, project Original comment by: codemedic

I currently don’t have time to implement your ideas, so just some notes: - In ReText, all links are relative to the directory the file is saved in. So you...

For headers, you can put the attributes on the same line: ```markdown # Header Title {: style="page-break-before: always" } ``` With empty line, it indeed doesn't work, because you need...

What was implemented is a soft break, not a hard break (the resulting file still contains long lines). I think it is not what @htmfilho requested.