diff --git a/src/var/lib/tyto/program/wip.py b/src/var/lib/tyto/program/wip.py index 558e86a..438f073 100644 --- a/src/var/lib/tyto/program/wip.py +++ b/src/var/lib/tyto/program/wip.py @@ -301,6 +301,7 @@ def wip_quotes() : # Read the quote. Get parameters author = date = lang = book = link = quote_html = '' + cite = '' for qline in quote: if qline.startswith(tyto.words_tags[11][0]): @@ -332,19 +333,23 @@ def wip_quotes() : else: quote_html = qline + if link: + cite = ' cite="%s"'%(link) + if lang: lang = ' lang="%s"'%lang + if author: - quote_html = '
' + \ - '
\n'%( - set_css, lang + quote_html = '
\n' + \ + '
\n'%( + set_css, lang, cite ) + \ '%s\n'%quote_html + \ '
\n' + \ '
' else: - quote_html = '
\n'%( - set_css, lang + quote_html = '
\n'%( + set_css, lang, cite ) + \ '%s\n'%quote_html + \ '
'