sublime-markdown-popups
sublime-markdown-popups copied to clipboard
Markdown popup dependency for Sublime
If you use a theme which supports the "inactive_sheet_dimming" setting (for example the default themes), it doesn't work with HtmlSheets created by `mdpopups.new_html_sheet`. It does work with HtmlSheets created with...
``` Python 3.3>>> mdpopups.show_popup(view, 'and [`i32`](`i32`) is') Parse Error: ">i32">i32 is code: Unexpected character ``` The generated HTML is: ``` and i32 is ``` Which is invalid since the content...
Please expose the `view_font_face` variable, so that the users can let mdpopups fit their `font_face` setting.
When rendering a list, mdpopups seems to prefer to have the list prepended with two newlines: ``` Python 3.3>>> mdpopups.md2html(view, 'foo:\n\n- hello\n-there\n') 'foo:\n\nhello\n-there\n' ``` Indeed a single newline doesn't render...
The following markdown breaks code blocks: ```` ```foo,bar hello ``` ```` While I don't expect proper highlighting, it'd be nice if the block didn't break. Found in this markdown: ````...
See: https://github.com/jisaacks/GitGutter/issues/430
The [ST documentation](https://www.sublimetext.com/docs/3/minihtml.html#best_practices) suggests to allow color scheme authors to tweak the look of minihtml popups. With the currently used CSS loading priority (Sublime CSS/color scheme CSS -> MdPopups default...
This will allow us to upgrade packages more easily (for now as Python 3.8 is almost end of life). The linked conversation talks about strategies. I'd like to get this...