Skip to content

Commit f5a954a

Browse files
Fix missing image and katex
Signed-off-by: Christopher Hakkaart <christopher.hakkaart@gmail.com>
1 parent ce0ea36 commit f5a954a

5 files changed

Lines changed: 102 additions & 442 deletions

File tree

docs/docs/reports.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ nextflow run <pipeline> -with-report [file_name]
111111

112112
You can also enable the report in your Nextflow configuration:
113113

114-
```groovy title="<filename>.config"
114+
```groovy title="nextflow.config"
115115
report {
116116
enabled = true
117117
file = 'report.html'
@@ -132,7 +132,7 @@ The **Resources** section plots the distribution of resource usage for each work
132132

133133
Plots are shown for CPU, memory, job duration, and disk I/O. Each usage metric is shown both in raw form and as a percentage of the requested resources. These plots are helpful to check that task resources are used efficiently.
134134

135-
![Usage CPUs] _static/report-resources-min.png
135+
![Usage CPUs](_static/report-resources-min.png)
136136

137137
For information about how resource usage is computed, see [Understanding task resource metrics][metrics-page].
138138

@@ -167,7 +167,7 @@ nextflow run <pipeline> -with-timeline [file_name]
167167

168168
You can also enable the execution timeline in your Nextflow configuration:
169169

170-
```groovy title="<filename>.config"
170+
```groovy title="nextflow.config"
171171
timeline {
172172
enabled = true
173173
file = 'timeline.html'
@@ -211,7 +211,7 @@ The following caveats apply to trace metrics:
211211

212212
You can also enable the trace file in your Nextflow configuration:
213213

214-
```groovy title="<filename>.config"
214+
```groovy title="nextflow.config"
215215
trace {
216216
enabled = true
217217
file = 'trace.txt'

docs/docusaurus.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import {
66

77
export default async function createConfigAsync() {
88
return createSeqeraConfig({
9-
clientModules: [require.resolve('./src/client-modules/cross-site-nav.js')],
9+
clientModules: [
10+
require.resolve('./src/client-modules/cross-site-nav.js'),
11+
require.resolve('./src/client-modules/katex-css.js'),
12+
],
1013
themes: ["@docusaurus/theme-mermaid"],
1114
markdown: {
1215
mermaid: true,

0 commit comments

Comments
 (0)