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
who can I add multiple lines, Like this :
new_note = notesapp.make_note( name="New Note", body="This is a new note created with #macnotesapp \n This is a second Line" )
The text was updated successfully, but these errors were encountered:
The body is html so you need to use ''
Here's what the notes add command does:
notes add
body = "".join(f"<div>{line or '<br>'}</div>\n" for line in body.split("\n"))
I'll add a note to the docs. Might be good to a format= argument to allow use of plain text, HTML, or Markdown
format=
Sorry, something went wrong.
No branches or pull requests
who can I add multiple lines, Like this :
The text was updated successfully, but these errors were encountered: