diff options
-rw-r--r-- | yeetube.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -150,8 +150,9 @@ It's recommended you keep it as the default value." ;; this is a quick "duck-tape" fix. (defun yeetube-fix-title (title) "Adjust TITLE." - (replace-regexp-in-string "'" "'" - (replace-regexp-in-string """ "\"" title))) + (replace-regexp-in-string "&" "&" + (replace-regexp-in-string """ "\"" + (replace-regexp-in-string "'" "'" title)))) (defun yeetube-insert-content (prefix url video-titles video-ids) "Insert video links with titles into the buffer. |