From 7ed59ccb4b3e12c1c76c892e9597a226eabd7387 Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Thu, 13 Aug 2020 16:50:53 +0800 Subject: main.py: even bigger font size for text body. --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = '

According to your word list, your level is %4.2f and we have chosen an article with a difficulty level of %4.2f for you.

' % (user_level, text_level) s += '

%s

' % (d['date']) - s += '

%s

' % (d['text']) + s += '

%s

' % (d['text']) s += '

%s

' % (d['source']) s += '

%s

' % (get_question_part(d['question'])) s = s.replace('\n', '
') -- cgit v1.2.1