ChicagolandSoftware / staticsitegenerator

A static site generator made with Python
GNU General Public License v3.0
2 stars 1 forks source link

Add support for multi-line input for about text and article body text #43

Open 0x416c616e opened 5 years ago

0x416c616e commented 5 years ago

Maybe use while loops, and have the user need to type quit in order to finish. 'quit' is also used for quitting other things in the program.

When you get multiple lines from the user, just concatenate them all into a single string, and store it in JSON that way. But in between concatenations, add

0x416c616e commented 5 years ago

Decided that I might just have it open a text editor (after figuring out the OS with platform.system()) instead of trying to do some sort of while loop with input()

0x416c616e commented 5 years ago

I made the body text multi-line, but not the about just yet. Halfway finished though.