diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-17 12:10:25 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:23 -0500 |
commit | 7f460853c83f572dd91a649ca880088b1df3a55d (patch) | |
tree | b4892f94868146b4bc95eeb6699dcd1c5302373a /app/lib | |
parent | f0c9477a4bf36b3c1b46ae2166d5c28317cb13d6 (diff) |
one lil zwnj to make sure compat sigs always get parsed correctly
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/bangtags.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb index 95d398fff..404d20a0f 100644 --- a/app/lib/bangtags.rb +++ b/app/lib/bangtags.rb @@ -481,7 +481,7 @@ class Bangtags if @chunks.first(5).any? { |c| c.strip.match?(/[\r\n]/) || c.lstrip.match?(/^(?:[>#]|```|---|\* |\d+\)|\[\wi+)/) } @chunks << "\n\n[right]— #{description}\u200c[/right]" else - @chunks << " [rfloat]— #{description}[/rfloat]" + @chunks << " [rfloat]— #{description}\u200c[/rfloat]" end when 'media' media_idx = post_cmd[1] |