addReportParagraph: addReportParagraph

Description Usage Arguments Value Author(s) See Also Examples

View source: R/Report-methods.R

Description

Generates HTML code for a new paragraph in the specified report.

Usage

1
addReportParagraph(report, txt, pClass = NULL)

Arguments

report

Report to write the text to.

txt

character vector (or array) storing the text to be written. The elements of this vector are concatenated without a separator.

pClass

CSS class definition of the paragraph. This must be either NULL (default) or one of:

"centered"

This paragraph gives a formula or a short statement. Text is horizontally centered.

"note"

This paragraph describes a note. Text is italic.

"task"

This paragraph describes a task. Text is bold and bright red.

Value

The modified report, invisibly.

Author(s)

adapted by Fabian Mueller from RnBeads code by Yassen Assenov

See Also

Report for other functions adding contents to an HTML report

Examples

1
2
3
4
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>")
addReportParagraph(report, txt)

demuellae/muReportR documentation built on Jan. 20, 2020, 5:12 a.m.