mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-10 16:23:05 +00:00
11 lines
217 B
Python
Executable File
11 lines
217 B
Python
Executable File
#!/bin/python
|
|
|
|
import re
|
|
f = open("README.md", "r+")
|
|
cont = f.read()
|
|
updated = re.sub(r"([^[])#(\d+)", r"\1[#\2](https://github.com/hrydgard/ppsspp/issues/\2)", cont)
|
|
f.seek(0)
|
|
f.write(updated)
|
|
f.truncate()
|
|
f.close()
|