Skip to content

Commit

Permalink
fix: add newline for markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Sep 1, 2024
1 parent 38c4151 commit 5a279d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/SupportedSigmaFieldModifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
| 0 | 0 | gte | No |
| 0 | 0 | fieldref | No |

Updated: 2024/09/01
Updated: 2024/09/01
Author: Fukusuke Takahashi
2 changes: 1 addition & 1 deletion scripts/supported_modifiers_check/supported-modifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_yml_detection_counts(dir_path: str) -> Counter:

markdown_str = pd.DataFrame(result, columns=header).to_markdown(index=False)
formatted_datetime = datetime.datetime.now().strftime('%Y/%m/%d')
markdown_str = f"{markdown_str}\n\nUpdated: {formatted_datetime}\nAuthor: Fukusuke Takahashi"
markdown_str = f"{markdown_str}\n\nUpdated: {formatted_datetime} \nAuthor: Fukusuke Takahashi"
Path(args.out_path).write_text(markdown_str)
end_time = time.time()
execution_time = end_time - start_time
Expand Down

0 comments on commit 5a279d8

Please sign in to comment.