TheRenegadeCoder / image-titler

An image title generator using The Renegade Coder style
https://therenegadecoder.com
GNU General Public License v3.0
17 stars 6 forks source link

Add a Separator Feature #96

Open jrg94 opened 2 years ago

jrg94 commented 2 years ago

One of the drawbacks of using the file name to construct the title is that some titles aren't permissible. One thing would be could would be to include a special character or pair of characters that could be swapped for actual separators. For example, here is one of my article titles:

The Complete Guide to SnakeMD: A Python Library for Generating Markdown

The colon cannot be added to the file name. It would be nice to be able to create a file name like this:

the-complete-guide-to-snakemd:-a-python-library-for-generating-markdown.png

However, the colon is illegal. Instead, we might be able to do something like this:

the-complete-guide-to-snakemd{}-a-python-library-for-generating-markdown.png

I haven't decided exactly how this would work, but it would be nice!