Loop through all jbake configuration options

65 Views Asked by At

Is there any way to loop through all jbake configuration options? I know that you can do config.[option] for single options. But is there a way to get all of them?

1

There are 1 best solutions below

0
On BEST ANSWER

You can use the following code to loop through all the config options:

<%
config.each{ k, v -> println "${k}:${v}<br>"}
%>