-
-
Notifications
You must be signed in to change notification settings - Fork 10
Description
Using Obsidian 1.5.12, copy inline code 1.2
Example of broken markdown:
for pool in `rados lspools`; do echo "Pool: $pool"; done
This results, in two issues. First is buggy output during edit mode; last double backtick shows up with a long space in between when i'm not hovering mouse over or with the copy-inline-code icon when mouse is over the line:
Second issue is that when I click the icon it doesn't copy the code into buffer. So, i guess the plugin only handles single backticks only. Or possibly I'm running into an issue with another plugin maybe interfering?
I'm not that well versed in javascript to suggest a fix. Most of my usecases are shell backticks which I can swap with "$( ... )" instead so my code would still work but there are probably some other cases where i have to save the backticks in the code etc. Also backticks are easier to type. :)
Thanks for reading

