| rnb.add.paragraph {RnBeads} | R Documentation |
Generates HTML code for a new paragraph in the specified report.
rnb.add.paragraph(report, txt, paragraph.class = NULL)
report |
Report to write the text to. |
txt |
|
paragraph.class |
CSS class definition of the paragraph. This must be either
|
The modified report, invisibly.
Yassen Assenov
Report for other functions adding contents to an HTML report
report <- createReport("example.html", "Example", init.configuration = TRUE)
txt <- "A pessimist is a person who has had to listen to too many optimists."
txt <- c(txt, " <i>Don Marquis</i>")
rnb.add.paragraph(report, txt)