From bf419828914419631c71d542e8529c0bf923b3c0 Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:20:23 +0200 Subject: [PATCH] Update Flux-User-Guide.md --- docs/flux/Flux-User-Guide.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/flux/Flux-User-Guide.md b/docs/flux/Flux-User-Guide.md index da6e336..8a2969a 100644 --- a/docs/flux/Flux-User-Guide.md +++ b/docs/flux/Flux-User-Guide.md @@ -77,14 +77,14 @@ Semicolons `;` mark the end of a variable assignment or flow definition. A FLUX contains multiple command-moduls that are doing specific things. E.g.: -```C -"file/path.mrc" -| open-file -> This opens the file of the provided `file/path.mrc`-path. -| as-lines - This reads the file by lines. -| decode-marc21 -> This decodes the data as binary marc21 into an internal format. -| fix(FLUX_DIR + "fix-marc21.fix") -> This executes the provided Fix-transformation. -| encode-json(prettyPrinting="true") -> This encodes the transformed data as JSON-Format. -| write("stdout") -> This writes the Json-Data to standard output. +```c +"file/path.mrc" //-> Provides incoming sTring e.g. filepath. +| open-file //-> This opens the file of the provided `file/path.mrc`-path. +| as-lines //-> This reads the file by lines. +| decode-marc21 //-> This decodes the data as binary marc21 into an internal format. +| fix(FLUX_DIR + "fix-marc21.fix") //-> This executes the provided Fix-transformation. +| encode-json(prettyPrinting="true") //-> This encodes the transformed data as JSON-Format. +| write("stdout") //-> This writes the Json-Data to standard output. ; ``````