Indev for quotes

This commit is contained in:
Cyrille L 2022-12-19 12:45:28 +01:00
parent 7dc124d688
commit 992ecd1a6b
1 changed files with 10 additions and 5 deletions

View File

@ -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 = '<figure>' + \
'<blockquote class="%s"%s>\n'%(
set_css, lang
quote_html = '<figure>\n' + \
'<blockquote class="%s"%s%s>\n'%(
set_css, lang, cite
) + \
'%s\n'%quote_html + \
'</blockquote>\n' + \
'</figure>'
else:
quote_html = '<blockquote class="%s"%s>\n'%(
set_css, lang
quote_html = '<blockquote class="%s"%s%s>\n'%(
set_css, lang, cite
) + \
'%s\n'%quote_html + \
'</blockquote>'