new
This commit is contained in:
parent
313554644b
commit
296f3d7ab0
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user