rnb.add.paragraph: rnb.add.paragraph

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
rnb.add.paragraph(report, txt, paragraph.class = 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.

paragraph.class

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)

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>")
rnb.add.paragraph(report, txt)

RnBeads documentation built on March 3, 2021, 2 a.m.