summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2020-08-13 16:50:53 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2020-08-13 16:50:53 +0800
commit7ed59ccb4b3e12c1c76c892e9597a226eabd7387 (patch)
tree0eb1edfce7200a899d2cffc4a2e6b2f67054e0c6 /app
parentaadea65da34f44dcc82fdd634dc8c93deef00ab8 (diff)
main.py: even bigger font size for text body.
Diffstat (limited to 'app')
-rw-r--r--app/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.py b/app/main.py
index 6aa095c..412d106 100644
--- a/app/main.py
+++ b/app/main.py
@@ -101,7 +101,7 @@ def get_today_article(user_word_list):
s = '<p><i>According to your word list, your level is <b>%4.2f</b> and we have chosen an article with a difficulty level of <b>%4.2f</b> for you.</i></p>' % (user_level, text_level)
s += '<p><b>%s</b></p>' % (d['date'])
- s += '<p><font size=+1>%s</font></p>' % (d['text'])
+ s += '<p><font size=+2>%s</font></p>' % (d['text'])
s += '<p><i>%s</i></p>' % (d['source'])
s += '<p><b>%s</b></p>' % (get_question_part(d['question']))
s = s.replace('\n', '<br/>')