Wiki source code of Deprecated Macro
Last modified by Vincent Massol on 2026/04/06 20:41
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | = Example 1: Basic usage = | ||
| 2 | |||
| 3 | {{code}} | ||
| 4 | {{deprecated since='11.10.5' useInstead='the New Feature'}} | ||
| 5 | Content that was deprecated... | ||
| 6 | {{/deprecated}} | ||
| 7 | {{/code}} | ||
| 8 | |||
| 9 | Results in: | ||
| 10 | |||
| 11 | {{deprecated since="11.10.5" useInstead="the New Feature"}} | ||
| 12 | Content that was deprecated... | ||
| 13 | {{/deprecated}} | ||
| 14 | |||
| 15 | = Example 2: Different product = | ||
| 16 | |||
| 17 | {{code}} | ||
| 18 | {{deprecated product='Latex' since='11.10.5' useInstead='the New Feature'}} | ||
| 19 | Content that was deprecated... | ||
| 20 | {{/deprecated}} | ||
| 21 | {{/code}} | ||
| 22 | |||
| 23 | Results in: | ||
| 24 | |||
| 25 | {{deprecated product="Latex" since="11.10.5" useInstead="the New Feature"}} | ||
| 26 | Content that was deprecated... | ||
| 27 | {{/deprecated}} |