Wiki source code of Deprecated Macro
Last modified by Vincent Massol on 2026/07/03 11:59
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}} | ||
| 28 | |||
| 29 | = Example 3: Inline usage = | ||
| 30 | |||
| 31 | {{code}} | ||
| 32 | A sentence with {{deprecated since='11.10.5' useInstead='the New Feature'}}an old feature{{/deprecated}} used inline. | ||
| 33 | {{/code}} | ||
| 34 | |||
| 35 | Results in: | ||
| 36 | |||
| 37 | A sentence with {{deprecated since="11.10.5" useInstead="the New Feature"}}an old feature{{/deprecated}} used inline. |