We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d9411 commit ed81e89Copy full SHA for ed81e89
packages/typo3-api/template/components/deprecation.html.twig
@@ -0,0 +1,10 @@
1
+{% if node.deprecated %}
2
+ {% for deprecation in node.deprecations %}
3
+ <div class="phpdocumentor-admonition">
4
+ <svg class="phpdocumentor-admonition__icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"></path></svg>
5
+ <article>
6
+ <strong>Deprecated</strong> {{ deprecation.description|description|markdown}}
7
+ </article>
8
+ </div>
9
+ {% endfor %}
10
+{% endif %}
0 commit comments