remove only first hashtag from a multiline comment

This commit is contained in:
Robert Kaussow 2020-03-04 16:59:02 +01:00
parent bd5300d674
commit 4252445ea2
2 changed files with 2 additions and 7 deletions

View File

@ -1,7 +1,2 @@
* BUGFIX * BUGFIX
* add `role_name` config option to overwrite name of the role * remove only first hashtag from a multiline comment
* fix not aborting overwrite dialog
* fix failed loading of empty yaml files
* fix failed loading of yaml files containing `!unsafe` tag
* FEATURE
* add basic hugo theme

View File

@ -139,7 +139,7 @@ class Annotation:
self._file_handler.seek(current_file_position) self._file_handler.seek(current_file_position)
break break
final = next_line.replace("#", "").rstrip() final = re.findall(r"\#(.*)", next_line)[0].rstrip()
if final[:1] == " ": if final[:1] == " ":
final = final[1:] final = final[1:]
final = newline + final final = newline + final