From 9e986bacca09460780a62574fb18a82c8255b143 Mon Sep 17 00:00:00 2001 From: Giorgio Garofalo Date: Wed, 26 Jun 2024 13:30:11 +0200 Subject: [PATCH] Add missing documentation --- .../main/kotlin/eu/iamgio/quarkdown/pipeline/PipelineOptions.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/kotlin/eu/iamgio/quarkdown/pipeline/PipelineOptions.kt b/core/src/main/kotlin/eu/iamgio/quarkdown/pipeline/PipelineOptions.kt index 77676440..c730954d 100644 --- a/core/src/main/kotlin/eu/iamgio/quarkdown/pipeline/PipelineOptions.kt +++ b/core/src/main/kotlin/eu/iamgio/quarkdown/pipeline/PipelineOptions.kt @@ -9,6 +9,8 @@ import eu.iamgio.quarkdown.pipeline.error.PipelineErrorHandler * @param wrapOutput whether the rendered code should be wrapped in a template code. * For example, an HTML wrapper may add `......`, * with the actual content injected in `body` + * @param errorHandler the error handler strategy to use when an error occurs in the pipeline, + * during the processing of a Quarkdown file */ data class PipelineOptions( val prettyOutput: Boolean = false,