From c7d643bf293ce1c5984641b29c7ae8dbd74f27f5 Mon Sep 17 00:00:00 2001 From: Martin Rieder <74277074+martinrieder@users.noreply.github.com> Date: Fri, 14 Jun 2024 15:13:19 +0200 Subject: [PATCH] Image syntax description missing `scale` and `fixedsize` --- docs/syntax.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/syntax.md b/docs/syntax.md index 2c92fd3..53234bb 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -536,6 +536,8 @@ image: height: # range: 1~65535; unit: points # if only one dimension (width/height) is specified, the image is scaled proportionally. # if both width and height are specified, the image is stretched to fit. + scale: # Which dimension to scale ['false', 'true', 'width', 'height', 'both'] + fixedsize: # If only one dimension is specified, compute the other ``` For more fine grained control over the image parameters, please see [`advanced_image_usage.md`](advanced_image_usage.md).