12 lines
622 B
Python
Executable file
12 lines
622 B
Python
Executable file
import re
|
|
|
|
with open('c:/ScriptoriumAI/docs/ToDo.md', 'r', encoding='utf-8') as f:
|
|
text = f.read()
|
|
|
|
text = text.replace('- [ ] Monaco LaTeX completion/snippets (enhanced language service)', '- [x] Monaco LaTeX completion/snippets (enhanced language service)')
|
|
text = text.replace('- [ ] LaTeX beautifier/formatter', '- [x] LaTeX beautifier/formatter')
|
|
text = text.replace('- [ ] Advanced LaTeX tooling (autocomplete, snippets, symbols)', '- [x] Advanced LaTeX tooling (autocomplete, snippets, symbols)')
|
|
|
|
with open('c:/ScriptoriumAI/docs/ToDo.md', 'w', encoding='utf-8') as f:
|
|
f.write(text)
|
|
print('Updated ToDo!')
|