From: Ahmet Artu Yildirim Date: Mon, 30 May 2022 20:06:12 +0000 (-0700) Subject: Use html for the code block in README X-Git-Url: http://artulab.com/gitweb/?p=guile-gdal;a=commitdiff_plain Use html for the code block in README --- diff --git a/README.md b/README.md index bad0e09..29a5c9f 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,10 @@ This library allows you to perform the following tasks: ## Example -Read/write raster files using GDAL binding functions or helper functions +Read/write raster files using GDAL binding functions or helper functions: -``` + +

 (use-modules (gdal))
 (use-modules (gdal extension))
 
@@ -60,6 +61,7 @@ Read/write raster files using GDAL binding functions or helper functions
                                    buf #:buf-type GDT_INT16))
         (write-buffer-to-file new-buf GDN_GTIFF
                               "new-raster-small.tif" #:no-data -1)))
-```
+
+ See examples folder for more code samples.