repos/kloeckner.com.ar

Backup of part of my webpage
Commits Files Refs README LICENSE
commit c45e2b63a726fe3df915067eea14308acab5a6c3
parent 5ad4068a17405509e67e107f6a01f3d63abff5d2
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Wed, 20 Nov 2024 17:01:40 -0300

add missing `$` on console code block

Diffstat:
Mblog/imagemagick-use-case-export-and-process-ltspice-schematics/imagemagick-use-case-export-and-process-ltspice-schematics.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blog/imagemagick-use-case-export-and-process-ltspice-schematics/imagemagick-use-case-export-and-process-ltspice-schematics.md b/blog/imagemagick-use-case-export-and-process-ltspice-schematics/imagemagick-use-case-export-and-process-ltspice-schematics.md
@@ -17,7 +17,7 @@ further use in a report paper or any similar document.
 > white (`-colorspace grey`) and cropped to the contents of the image (`-trim`)
 > 
 > ```console
-> xclip -selection clipboard -t image/bmp -o | magick - -colorspace grey -trim schematic.png
+> $ xclip -selection clipboard -t image/bmp -o | magick - -colorspace grey -trim schematic.png
 > ```
 > <!--`-->