From 19eb5c6d6ae5b660b309d7a9704a3352ffb3cc5f Mon Sep 17 00:00:00 2001
From: Christophe Dervieux <christophe.dervieux@gmail.com>
Date: Fri, 5 Nov 2021 12:39:10 +0100
Subject: [PATCH] Add disableLayout variable in revealjs template

This allows to modify it using Pandoc variable. Default value is correctly set to false by Pandoc.
---
 data/templates/default.revealjs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/templates/default.revealjs b/data/templates/default.revealjs
index 45727e2d2..e1ca8b824 100644
--- a/data/templates/default.revealjs
+++ b/data/templates/default.revealjs
@@ -137,7 +137,7 @@ $endif$
 
         // Disables the default reveal.js slide layout (scaling and centering)
         // so that you can use custom CSS layout
-        disableLayout: false,
+        disableLayout: $disableLayout$,
 
         // Vertical centering of slides
         center: $center$,