From 4e6de5851eed3c7625a34d4573d59d94e13989f1 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Fri, 2 Jan 2026 10:53:14 -0500 Subject: escape potential lists --- emacsconf-publish.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 590884b..0af176d 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -838,7 +838,7 @@ This includes the intro note, the schedule, and talk resources." (concat (if (and (elt sub 4) (not (string= (elt sub 4) ""))) (format "\n
[[!template new=\"1\" text=\"\"\"%s\"\"\" start=\"%s\" video=\"%s\" id=\"subtitle\"%s]]
" - (string-trim (replace-regexp-in-string "^NOTE[ \n]" "" (elt sub 4))) + (replace-regexp-in-string "\\." "\\\\." (string-trim (replace-regexp-in-string "^NOTE[ \n]" "" (elt sub 4)))) (concat (format-seconds "%02h:%02m:%02s" (/ (floor msecs) 1000)) "." (format "%03d" (mod (floor msecs) 1000))) video-id -- cgit v1.2.3