Skip to content

Commit e44f76e

Browse files
committed
chore: adds WARN style to dev docs version warning message
1 parent 1744f61 commit e44f76e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs-export/export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def export_version(ref, name):
9494
readme_path = os.path.join(src_dir, 'README.md')
9595
with open(readme_path, 'r') as file:
9696
lines = file.readlines()
97-
lines.insert(2, '\n> WARNING: This is the dev version of the UE4SS docs. The API and features are subject to change at any time. If you are developing mods for UE4SS, you should reference the [latest release](../release) instead.\n\n')
97+
lines.insert(2, '\n[!WARN]\n> WARNING: This is the dev version of the UE4SS docs. The API and features are subject to change at any time. If you are developing mods for UE4SS, you should reference the [latest release](../release) instead.\n\n')
9898
with open(readme_path, 'w') as file:
9999
file.writelines(lines)
100100

0 commit comments

Comments
 (0)