src/talks.sh: Do not fail when links are missing
E.g. to accommodate a future talk.master
parent
3036552161
commit
6ece7769d4
|
@ -62,7 +62,7 @@ abstract()
|
|||
abstract=$( talk-field "$id" abstract )
|
||||
url=$( talk-field "$id" video_url || echo "#$id" )
|
||||
event_link=$( talk-field "$id" event_link )
|
||||
links=$( talk-field "$id" link )
|
||||
links=$( talk-field "$id" link || true )
|
||||
|
||||
local abstract_html
|
||||
abstract_html=$( pandoc -fmarkdown -thtml5 <<< "$abstract" )
|
||||
|
|
Loading…
Reference in New Issue