From dce75a1a22f7fb4e35abd7a04d1d821b13e8bbd4 Mon Sep 17 00:00:00 2001 From: harttle Date: Fri, 5 Feb 2021 09:48:28 +0800 Subject: [PATCH] docs: fix get started code block --- docs/themes/navy/layout/index.swig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/themes/navy/layout/index.swig b/docs/themes/navy/layout/index.swig index 32ae94a99..766ee16e1 100644 --- a/docs/themes/navy/layout/index.swig +++ b/docs/themes/navy/layout/index.swig @@ -29,8 +29,8 @@
  • import { Liquid } from 'liquidjs'
  • const engine = new Liquid()
  • const tpl = engine.parse('Welcome to {{v}}!')
  • -
  • const engine.render(tpl, {v: "Liquid"}).then(console.log)
  • -
  • // Output: "Welcome to Liquid!"
  • +
  • engine.render(tpl, {v: "Liquid"}).then(console.log)
  • +
  • // Outputs "Welcome to Liquid!"
  • {{ __('index.get_started') }}