@@ -96,7 +96,7 @@ Returns an instance of ``ControllerReference`` to be used with functions
96
96
like :ref: `render() <reference-twig-function-render >` and
97
97
:ref: `render_esi() <reference-twig-function-render-esi >`.
98
98
99
- .. code-block :: html+ twig
99
+ .. code-block :: twig
100
100
101
101
{{ render(controller('App\\Controller\\BlogController:latest', {max: 3})) }}
102
102
{# output: the content returned by the controller method; e.g. a rendered Twig template #}
@@ -851,23 +851,21 @@ Consider the following as the content of ``file.txt``:
851
851
d
852
852
e
853
853
854
- .. code-block :: twig
854
+ .. code-block :: html+ twig
855
855
856
856
{{ '/path/to/file.txt'|file_excerpt(line = 4, srcContext = 1) }}
857
- {# output:
858
- <ol start="3">
859
- <li><a class="anchor" id="line3"></a><code>c</code></li>
860
- <li class="selected"><a class="anchor" id="line4"></a><code>d</code></li>
861
- <li><a class="anchor" id="line5"></a><code>e</code></li>
862
- </ol>
863
- #}
857
+ {# output: #}
858
+ <ol start="3">
859
+ <li><a class="anchor" id="line3"></a><code>c</code></li>
860
+ <li class="selected"><a class="anchor" id="line4"></a><code>d</code></li>
861
+ <li><a class="anchor" id="line5"></a><code>e</code></li>
862
+ </ol>
864
863
865
864
{{ '/path/to/file.txt'|file_excerpt(line = 1, srcContext = 0) }}
866
- {# output:
867
- <ol start="1">
868
- <li class="selected"><a class="anchor" id="line1"></a><code>a</code></li>
869
- </ol>
870
- #}
865
+ {# output: #}
866
+ <ol start="1">
867
+ <li class="selected"><a class="anchor" id="line1"></a><code>a</code></li>
868
+ </ol>
871
869
872
870
format_file
873
871
~~~~~~~~~~~
@@ -887,21 +885,19 @@ Generates the file path inside an ``<a>`` element. If the path is inside
887
885
the kernel root directory, the kernel root directory path is replaced by
888
886
``kernel.project_dir `` (showing the full path in a tooltip on hover).
889
887
890
- .. code-block :: twig
888
+ .. code-block :: html+ twig
891
889
892
890
{{ '/path/to/file.txt'|format_file(line = 1, text = "my_text") }}
893
- {# output:
894
- <a href="/path/to/file.txt#L1"
895
- title="Click to open this file" class="file_link">my_text at line 1
896
- </a>
897
- #}
891
+ {# output: #}
892
+ <a href="/path/to/file.txt#L1"
893
+ title="Click to open this file" class="file_link">my_text at line 1
894
+ </a>
898
895
899
896
{{ "/path/to/file.txt"|format_file(line = 3) }}
900
- {# output:
901
- <a href="/path/to/file.txt&line=3"
902
- title="Click to open this file" class="file_link">/path/to/file.txt at line 3
903
- </a>
904
- #}
897
+ {# output: #}
898
+ <a href="/path/to/file.txt&line=3"
899
+ title="Click to open this file" class="file_link">/path/to/file.txt at line 3
900
+ </a>
905
901
906
902
.. tip ::
907
903
0 commit comments