-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDeprecated.md.twig
More file actions
24 lines (21 loc) · 838 Bytes
/
Deprecated.md.twig
File metadata and controls
24 lines (21 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
**Navigation**
{% for element in project.indexes.elements if element.deprecated %}
{% if element.file.path != previousPath %}
* [{{ element.file.path }}](#{{ element.file.path|replace({'/': "", '.': ""}) }})
{% endif %}
{% set previousPath = element.file.path %}
{% endfor %}
{% for element in project.indexes.elements if element.deprecated %}
{% if element.file.path != previousPath %}
## [{{ element.file.path }}](file-{{ element.file.name }})
{{ element.tags.deprecated.count }} Deprecated elements
{% endif %}
{% for tag in element.tags.deprecated %}
- {{ element.fullyQualifiedStructuralElementName }} (line {{ element.line }}): {{ tag.description|raw }}
{% endfor %}
{% set previousPath = element.file.path %}
{% else %}
`No deprecated elements have been found in this project.`
{% endfor %}
***
[\\](Home) » Deprecated elements