From 0580f192ca370256882b1607acb6ae2d70d12616 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sun, 31 Jul 2011 02:25:43 +0200 Subject: [PATCH] fix highlighting of snippet in recipes doc --- doc/recipes.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/recipes.rst b/doc/recipes.rst index 633f4f09fa..9701f70d5b 100644 --- a/doc/recipes.rst +++ b/doc/recipes.rst @@ -246,14 +246,14 @@ Validating the Template Syntax When template code is providing by a third-party (through a web interface for instance), it might be interesting to validate the template syntax before saving it. If the template code is stored in a `$template` variable, here is -how you can do it: +how you can do it:: -try { - $twig->parse($twig->tokenize($template)); + try { + $twig->parse($twig->tokenize($template)); - // the $template is valid -} catch (Twig_Error_Syntax $e) { - // $template contains one or more syntax errors -} + // the $template is valid + } catch (Twig_Error_Syntax $e) { + // $template contains one or more syntax errors + } .. _callback: http://www.php.net/manual/en/function.is-callable.php