Indev for quotes
This commit is contained in:
parent
4ea481bbf1
commit
7dc124d688
|
@ -331,14 +331,21 @@ def wip_quotes() :
|
||||||
if quote_html: quote_html = '%s\n%s'%(quote_html,qline)
|
if quote_html: quote_html = '%s\n%s'%(quote_html,qline)
|
||||||
else: quote_html = qline
|
else: quote_html = qline
|
||||||
|
|
||||||
|
|
||||||
|
if lang:
|
||||||
|
lang = ' lang="%s"'%lang
|
||||||
if author:
|
if author:
|
||||||
quote_html = '<figure class="%s">\n'%set_css + \
|
quote_html = '<figure>' + \
|
||||||
'<blockquote>\n' + \
|
'<blockquote class="%s"%s>\n'%(
|
||||||
|
set_css, lang
|
||||||
|
) + \
|
||||||
'%s\n'%quote_html + \
|
'%s\n'%quote_html + \
|
||||||
'</blockquote>\n' + \
|
'</blockquote>\n' + \
|
||||||
'</figure>'
|
'</figure>'
|
||||||
else:
|
else:
|
||||||
quote_html = '<blockquote class="%s">\n'%set_css + \
|
quote_html = '<blockquote class="%s"%s>\n'%(
|
||||||
|
set_css, lang
|
||||||
|
) + \
|
||||||
'%s\n'%quote_html + \
|
'%s\n'%quote_html + \
|
||||||
'</blockquote>'
|
'</blockquote>'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue