diff --git a/notes2web.py b/notes2web.py index a5618b7..fb4d549 100755 --- a/notes2web.py +++ b/notes2web.py @@ -77,6 +77,8 @@ def git_filehistory(working_dir, filename): if filehistory == "": filehistory = ["This file has no history (it may not be part of the git repository)."] + filehistory = [ x.replace("<", "<").replace(">", ">") for x in filehistory] + filehistory = "
\n" + "
\n".join(filehistory) + "
" return filehistory