mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
15 lines
380 B
Python
15 lines
380 B
Python
#!/usr/bin/env python3
|
|
from pathlib import Path
|
|
import re
|
|
|
|
changelog = Path(__file__).parent / "../../CHANGELOG.md"
|
|
|
|
text = changelog.read_text(encoding="utf8")
|
|
text, n = re.subn(
|
|
r"\s*\(([^)]+)#(\d+)\)",
|
|
"\n (\\1[#\\2](https://github.com/mitmproxy/mitmproxy/issues/\\2))",
|
|
text
|
|
)
|
|
changelog.write_text(text, encoding="utf8")
|
|
print(f"Linkified {n} issues and users.")
|