gh2md
gh2md copied to clipboard
[Question] Adding params for more control on appearance-template and filenames on user side
Hey Matt,
Thanks for the nice work.
-
I was wondering if you could add a couple more params in the argparser in order for the user to submit or provide their own template file if they want to?
-
Also, the ability when exporting to multiple files to choose the final filename sting? For instance, instead of
date.issue-number.issue.issue-status.mdthe user might need to export multiple files using a string likeissue-number.issue-title, but theissue titlerequires some processing before using it directly since it contains spaces. -
Ideally it would be nice if the user could pass a dynamic string like
issue-number.issue-title.replace(" ", "_").lower()which would be expanded and executed bygh2mdto create multiple files where each filename is comprised by the issue number and issue title after replacing spaces with underscores and lowercasing the letters?