diff --git a/doc/recipes.rst b/doc/recipes.rst index ddc697569..b3ba7f4d7 100644 --- a/doc/recipes.rst +++ b/doc/recipes.rst @@ -551,7 +551,7 @@ include in your templates: ``interpolateProvider`` service, for instance at the module initialization time: - ..code-block:: javascript + .. code-block:: javascript angular.module('myApp', []).config(function($interpolateProvider) { $interpolateProvider.startSymbol('{[').endSymbol(']}'); @@ -559,7 +559,7 @@ include in your templates: * For Twig, change the delimiters via the ``tag_variable`` Lexer option: - ..code-block:: php + .. code-block:: php $env->setLexer(new Twig_Lexer($env, array( 'tag_variable' => array('{[', ']}'),