We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9883d commit 68263c9Copy full SHA for 68263c9
1 file changed
exporters/git/generate_commits.py
@@ -324,6 +324,12 @@ def generate_temporal_commits(
324
print(str(e))
325
return
326
327
+ # Check if selex tags are present (required for temporal processing)
328
+ if '<article' not in content:
329
+ print(f"Varning: Inga selex-taggar hittades i {markdown_file}")
330
+ print("Temporal processing kräver att selex-taggar är kvar i dokumentet")
331
+ return
332
+
333
# Identify upcoming changes
334
changes = identify_upcoming_changes(content)
335
0 commit comments