You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In particular, this line adds a space before and after each line of the popup message.
The result is this (note that EOL whitespace is highlighted):
These added spaces break markdown syntax detection. Removing the above line results in:
This is slightly better as at least the markdown syntax highlighting is being applied. This could be improved further by annotating the code blocks as Rust:
Finally, making the title into a markdown heading and setting the conceallevel to 2, we get this much nicer output:
The text was updated successfully, but these errors were encountered:
- mark code blocks as `rust` before sending content to popup window;
- in neovim, set the local `conceallevel` to `2` in the popup window,
did not find the equivalent in vim (please help pointing out if there
is any);
- mark the content title as level one header
- remove the trailing white spaces if in neovim, those spaces were
meant to be used as padding as popup window lacks padding option in
neovim, remove them for now;
- add tests for the function that mark code blocks as `rust`
Ref: [issue 2](#2)
In particular, this line adds a space before and after each line of the popup message.
The result is this (note that EOL whitespace is highlighted):

These added spaces break markdown syntax detection. Removing the above line results in:

This is slightly better as at least the markdown syntax highlighting is being applied. This could be improved further by annotating the code blocks as Rust:
Finally, making the title into a markdown heading and setting the
conceallevel
to 2, we get this much nicer output:The text was updated successfully, but these errors were encountered: