We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I know that PapirusTextPos will take into account \n as a line break using the following example:
text.AddText("hello\nworld", 10, 20, Id="Start" )
However if I use papirus-write, \n just appears within the text on the display.
papirus-write.py "hello\nWorld"
Is there a workaround by any chance please?
Thanks.
The text was updated successfully, but these errors were encountered:
The '\n' is not converted by the shell (bash). This works: papirus-write $'hello\nWorld' See e.g. https://stackoverflow.com/questions/3005963/how-can-i-have-a-newline-in-a-string-in-sh Note: you need to use single quotes after the '$', double quotes do not work.
papirus-write $'hello\nWorld'
Sorry, something went wrong.
add notes about line breaks on command line
01c7755
From #168
Ahh of course, thank you!
@jarrah31 @tvoverbeek added to the main readme now for reference :-)
No branches or pull requests
I know that PapirusTextPos will take into account \n as a line break using the following example:
text.AddText("hello\nworld", 10, 20, Id="Start" )
However if I use papirus-write, \n just appears within the text on the display.
papirus-write.py "hello\nWorld"
Is there a workaround by any chance please?
Thanks.
The text was updated successfully, but these errors were encountered: