From 451f4e15fc2c4edda360686d6e76d93c4262335b Mon Sep 17 00:00:00 2001 From: Auxiliary Character Date: Sun, 14 Nov 2021 23:28:50 -0600 Subject: [PATCH] Added title formatting for the link template I added a `#` character to the start of the link template, which should cause reddit's markdown formatting to format the links as a title, causing them to be bigger and even easier to click on when on mobile. --- FFHelperRepository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFHelperRepository.py b/FFHelperRepository.py index 0634056..639913f 100644 --- a/FFHelperRepository.py +++ b/FFHelperRepository.py @@ -36,7 +36,7 @@ def GET_COMMENT_BY_ID(self, id): return comment class StringConstants: - LINK_TEMPLATE = """[Here is link number {} - Previous text "{}"]({}) + LINK_TEMPLATE = """#[Here is link number {} - Previous text "{}"]({}) """