For the module I'm developing I added a note to the table using
Code: Select all
note <- paste("a) some text \n
b) some more text \n
c) even more text")
table$setNote(note)
The note contains a few different paragraphs, which I'd like to separate with a linebreak for visual clarity. So the output should look something like this:
Instead, I get:Note. a) some text
b) some more text
c) even more text
Then I tried "<br>" instead of "\n", which does work for jamovi, but not for R:Note. a) some text b) some more text c) even more text
So, is there a way to achive a linebreak für table-notes in R?a) some text <br> b) some more text <br> c) even more text
I know I could probably use $addFootnote instead, but I'd prefer to get $setNote working, if at all possible.
Thanks in advance
Dan