diff options
author | Sacha Chua <sacha@sachachua.com> | 2024-10-30 12:57:03 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2024-10-30 12:57:03 -0400 |
commit | fd5eb66a704432717481d455e109af526d33da5e (patch) | |
tree | 5e6c468e42ab6f611030097e52f697be48149a2b /emacsconf-pad.el | |
parent | f2012e51e393d89cd3a49d2eeabc38f41876bb6d (diff) | |
download | emacsconf-el-fd5eb66a704432717481d455e109af526d33da5e.tar.xz emacsconf-el-fd5eb66a704432717481d455e109af526d33da5e.zip |
add space for intros
Diffstat (limited to '')
-rw-r--r-- | emacsconf-pad.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/emacsconf-pad.el b/emacsconf-pad.el index 0a49bd6..8f1e422 100644 --- a/emacsconf-pad.el +++ b/emacsconf-pad.el @@ -729,10 +729,11 @@ ${bbb-checklist}</li>") (let ((pronoun (pcase (plist-get talk :pronouns) ((rx "she") "She") ((rx "\"ou\"" "Ou")) - ((or 'nil "nil" (rx string-start "he") (rx "him")) "He") + ((or 'nil "nil") "They") + ((or (rx string-start "he") (rx "him")) "He") ((rx "they") "They") (_ (or (plist-get talk :pronouns) ""))))) - (format "Next, we have \"%s\", by %s%s.%s" + (format "Next, we have \"%s\",\nby %s%s.%s" (plist-get talk :title) (replace-regexp-in-string ", \\([^,]+\\)$" ", and \\1" @@ -740,17 +741,17 @@ ${bbb-checklist}</li>") (emacsconf-surround " (" (plist-get talk :pronunciation) ")" "") (pcase (plist-get talk :q-and-a) ((or 'nil "") "") - ((rx "after") " You can ask questions via Etherpad and IRC. We'll send them to the speaker, and we'll post the answers on the talk page afterwards.") + ((rx "after") "\nYou can ask questions via Etherpad and IRC.\nWe'll send them to the speaker,\nand we'll post the answers on the talk page afterwards.") ((rx "live") - (format " %s will answer questions via BigBlueButton. You can join using the URL from the talk page or ask questions through Etherpad or IRC." + (format "\n%s will answer questions via BigBlueButton.\nYou can join using the URL from the talk page\nor ask questions through Etherpad or IRC." pronoun )) ((rx "pad") - (format " %s will answer questions via Etherpad." + (format "\n%s will answer questions via Etherpad." pronoun )) ((rx "IRC") - (format " %s will answer questions via IRC in the #%s channel." + (format "\n%s will answer questions via IRC in the #%s channel." pronoun (plist-get talk :channel))))))))) |