say what file gets inlined

This commit is contained in:
Brian Hicks 2024-04-23 17:10:49 -05:00
parent 697a5a4a23
commit 914aab6093
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50

View File

@ -16,6 +16,8 @@ for match in matches:
with open(parts['source'], 'r') as fh:
file_contents = fh.read()
print(f"inlined {parts['source']}")
edited = edited[:start] + parts["open"] + file_contents + "\n```" + edited[end:]
with open('README.md', 'w') as fh: