Skip to content

Commit ed81e89

Browse files
authored
[BUGFIX] Fix deprecation notice in api.typo3.org (#652)
Resolves #648
1 parent 12d9411 commit ed81e89

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)