Skip to content

Commit

Permalink
skip nested double quotes (#6758)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirpedrol authored Oct 9, 2024
1 parent 9d05360 commit 772684d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/nf-core/utils_nfcore_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ def paramsSummaryMultiqc(summary_params) {
// This gets the parameters of that particular group
if (group_params) {
summary_section += " <p style=\"font-size:110%\"><b>${group}</b></p>\n"
summary_section += " <dl class="dl-horizontal">\n"
summary_section += " <dl class=\"dl-horizontal\">\n"
group_params
.keySet()
.sort()
.each { param ->
summary_section += " <dt>${param}</dt><dd><samp>${group_params.get(param) ?: '<span style="color:#999999;">N/A</a>'}</samp></dd>\n"
summary_section += " <dt>${param}</dt><dd><samp>${group_params.get(param) ?: '<span style=\"color:#999999;\">N/A</a>'}</samp></dd>\n"
}
summary_section += " </dl>\n"
}
Expand Down

0 comments on commit 772684d

Please sign in to comment.