We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
:text:
1 parent fbe5ec7 commit 3d8f688Copy full SHA for 3d8f688
1 file changed
lua/markview/renderers/markdown/tostring.lua
@@ -255,10 +255,11 @@ md_str.emoji = function (match)
255
local symbols = require("markview.symbols");
256
if symbols.shorthands and symbols.shorthands[removed] then
257
return symbols.shorthands[removed];
258
+ else
259
+ -- fix(#505): Return original text if it's not a shorthand
260
+ return match;
261
end
262
- return removed;
-
263
---|fE
264
265
0 commit comments