Skip to content

Commit 71b2506

Browse files
committed
URL-escape '=' in annotations.
1 parent 6ad9b2d commit 71b2506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SpecialOutput.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@ escapeNewlines = replace "\n" "%0A"
217217

218218
-- | Escape special characters which can interfere with the parsing of an annotation.
219219
escapeSpecial :: Text -> Text
220-
escapeSpecial = replace ":" "%3A" . replace "," "%2C" . escapeNewlines
220+
escapeSpecial = replace ":" "%3A" . replace "," "%2C" . replace "=" "%3D" . escapeNewlines

0 commit comments

Comments
 (0)