diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2020-08-13 16:47:21 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2020-08-13 16:47:21 +0800 |
commit | 8da8d02b0ab8ef68afaa5b4268aa2aef5dd1bd60 (patch) | |
tree | f30ab301af8ad429d2faccb4635fc49e3bd3d4a5 /app | |
parent | d6c1a32652a527dbb9f1c90141d729f001acc540 (diff) |
main.py: bold face QUESTION.
Diffstat (limited to 'app')
-rw-r--r-- | app/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.py b/app/main.py index e8b4278..51fc012 100644 --- a/app/main.py +++ b/app/main.py @@ -103,7 +103,7 @@ def get_today_article(user_word_list): s += '<p><b>%s</b></p>' % (d['date'])
s += '<p>%s</p>' % (d['text'])
s += '<p><i>%s</i></p>' % (d['source'])
- s += '<p>%s</p>' % (get_question_part(d['question']))
+ s += '<p><b>%s</b></p>' % (get_question_part(d['question']))
s = s.replace('\n', '<br/>')
s += '%s' % (get_answer_part(d['question']))
return s
|