diff options
| -rw-r--r-- | emacsconf-publish.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 8fbb3d0..8e42f79 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -1644,11 +1644,11 @@ answers without needing to listen to everything again. You can see <a href=\"htt files))) (defun emacsconf-publish-public-index-for-talk (o files) - (format "<li><div class=\"title\"><a name=\"%s\" href=\"%s\">%s</a></div></div><div class=\"speakers\">%s</div>%s</li>%s" + (format "<li><div class=\"title\"><a name=\"%s\" href=\"%s\">%s</a></div></div>%s%s</li>%s" (plist-get o :slug) (plist-get o :absolute-url) (plist-get o :title) - (plist-get o :speakers) + (emacsconf-surround "<div class=\"speakers\">" (plist-get o :speakers) "</div>" "") (emacsconf-publish-index-card (append (list :files (seq-remove (lambda (f) (string-match "--answers" f)) |
