aboutsummaryrefslogtreecommitdiff
path: root/_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-11-05 12:17:03 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-11-05 12:17:03 +0100
commitd3dfec6f52d8093db276adb62021ced8f58e590c (patch)
tree91136e5b803a7058d42f998660cd4ba86fdf379d /_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md
parente490ef9a85ff161305d5647281ed316b54366bca (diff)
downloadmitjafelicijan.com-d3dfec6f52d8093db276adb62021ced8f58e590c.tar.gz
Added lazy loading to images
Diffstat (limited to '_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md')
-rw-r--r--_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md b/_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md
index 6e1fa14..461842d 100644
--- a/_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md
+++ b/_posts/2023-08-01-make-b-w-svg-charts-with-matplotlib.md
@@ -66,6 +66,6 @@ legend.get_frame().set_linewidth(0)
66plt.savefig("plot.svg", format="svg") 66plt.savefig("plot.svg", format="svg")
67``` 67```
68 68
69![SVG Chart](/assets/notes/plot.svg) 69![SVG Chart](/assets/notes/plot.svg){:loading="lazy"}
70 70
71The image above is SVG and you can zoom in and out and check that the image is vector. 71The image above is SVG and you can zoom in and out and check that the image is vector.