diff --git a/templates/qc_report/celltypes_supplemental_report.rmd b/templates/qc_report/celltypes_supplemental_report.rmd index 3ae16499..269019f3 100644 --- a/templates/qc_report/celltypes_supplemental_report.rmd +++ b/templates/qc_report/celltypes_supplemental_report.rmd @@ -396,13 +396,15 @@ if (!has_multiplex) { print_sample_metadata(processed_meta) } else { # otherwise print out an info box that no sample metadata will be displayed - knitr::asis_output(glue::glue(" -
- - This library is multiplexed and contains data from more than one sample. - Demultiplexing has not been performed, so sample metadata will not be displayed. -
-")) + knitr::asis_output( + glue::glue(" +
+ + This library is multiplexed and contains data from more than one sample. + Demultiplexing has not been performed, so sample metadata will not be displayed. +
+ ") + ) } ``` diff --git a/templates/qc_report/main_qc_report.rmd b/templates/qc_report/main_qc_report.rmd index 18838892..e9f7351e 100644 --- a/templates/qc_report/main_qc_report.rmd +++ b/templates/qc_report/main_qc_report.rmd @@ -242,12 +242,12 @@ if (!has_multiplex) { # otherwise print out an info box that no sample metadata will be displayed knitr::asis_output( glue::glue(" -
+
- This library is multiplexed and contains data from more than one sample. - Demultiplexing has not been performed, so sample metadata will not be displayed. -
-") + This library is multiplexed and contains data from more than one sample. + Demultiplexing has not been performed, so sample metadata will not be displayed. +
+ ") ) } ```