Browse Source

added the class <highlight> to magic words

main
ccl 3 years ago
parent
commit
a366cfb4d7
  1. 4
      etherpump/commands/pull.py

4
etherpump/commands/pull.py

@ -511,6 +511,10 @@ async def handle_pad(args, padid, data, info, session):
html = html["data"]["html"]
ver["path"] = p + ".magicwords.html"
ver["url"] = quote(ver["path"])
for magic_word in magic_words:
replace_word = "<span class='highlight'>"+magic_word+"</span>"
if magic_word in html:
html = html.replace(magic_word,replace_word)
doc = html5lib.parse(
html, treebuilder="etree", namespaceHTMLElements=False
)

Loading…
Cancel
Save