You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we can add pre-existing content via new-entry or create an empty post and, if so desired, open an editor. A nice feature would be the ability to accept content as text when running new-entry. We can use something like:
print("Please enter the content. When done type <EOF> on a blank line.")
lines=list()
whileTrue:
if (line:=input("").strip()) !="<EOF>":
lines.append(line)
continuebreak
to enable entering text until an end marker is sent.