Notes / Append Text To A Note
Adds a given text to the end of a note.
This action will throw an error if the specified note doesn't exist, so it's best to use it after the "Check For Existence Of Note" action has determined that it does exist.
Available Options
Ensure newline
If enabled, a line break will be added to the text if it does not already have one. Useful if you have a piece of text that does not have a line break at the end, but should.
Examples
Suppose you have a note with the following content that ends with a line break (i.e., a blank line):
This is a note with some text.
It has two lines.
Call the action with the text "No, three lines", and the result will be:
This is a note with some text.
It has two lines.
No, three lines
But when the sample note does not end with a line break, the results are slightly different:
This is a note with some text.
It has two lines.No, three lines
This is because the replacement will not check whether the original text ends in a line break.