summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/platforms/linkedin/escapes.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/platforms/linkedin/escapes.go b/internal/platforms/linkedin/escapes.go
index 5f803a5..9ab3077 100644
--- a/internal/platforms/linkedin/escapes.go
+++ b/internal/platforms/linkedin/escapes.go
@@ -8,8 +8,9 @@ import (
func escapeLinkedInText(input string) string {
var builder strings.Builder
+ // TODO: '"' escapes don't work correctly yet, they show up as \"...\" in LinkedIn posts
reservedChars := map[rune]string{
- '"': "\\\"",
+ '"': "\\\"", // Just remove this line to fix the above?
'|': "\\|",
'{': "\\{",
'}': "\\}",