From 405c127462f928a30ebbb9143659abc50b2bcae4 Mon Sep 17 00:00:00 2001 From: G Gundam Date: Mon, 30 Dec 2024 21:23:33 -0800 Subject: [PATCH] Update index.md - from_file=true (#236) Set `from_file=true` in the Mustache.jl example. --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 50e9d2b5..a3e8554c 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -886,7 +886,7 @@ using Mustache using Oxygen # Load the Mustache template from a file and create a render function -render = mustache("./templates/greeting.txt", from_file=false) +render = mustache("./templates/greeting.txt", from_file=true) @get "/mustache/file" function() data = Dict("name" => "Chris")