This commit is contained in:
Cristina Cochior 2019-05-04 16:57:38 +02:00
parent 313554644b
commit 296f3d7ab0
2 changed files with 9 additions and 1 deletions

View File

@ -118,6 +118,9 @@ def description():
if file.lower().endswith(('.html')):
with open("static/"+file,"r", encoding='utf-8') as f:
textfile = f.read()
word = "way"
wordlinked = "<a href='/diverge?search="+word+"'>"+word+"</a>"
textfile = re.sub(word, wordlinked, textfile)
textfile = Markup(textfile)
return render_template('description.html', datafromjson=datafromjson, itemid=itemid, textfile=textfile, idno=idno)

View File

@ -15,4 +15,9 @@ for path, subdirs, files in os.walk(path):
textfile = f.read()
for word in wordlist_dict:
wordlinked = "<a href='/diverge?search="+word+"'>"+word+"</a>"
textfile = re.sub(word, wordlinked, textfile)
# wordlinked = re.escape(wordlinked)
print(wordlinked)
# word = re.escape(word)
print(word)
# textfile = re.sub(word, wordlinked, textfile)
# print(textfile)