Skip to content

Commit 167e1c6

Browse files
committed
Moved the "Available UFM filters" higher up
1 parent e68543b commit 167e1c6

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

15/umbraco-cms/reference/umbraco-flavored-markdown.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,16 @@ To display a rich text value, stripping out the HTML markup and limiting it to t
5151
{umbValue: bodyText | strip-html | word-limit:15}
5252
```
5353

54-
A list of available UFM filters is detailed below.
54+
The following UFM filters are available to use.
55+
56+
| Name | Alias | Example syntax |
57+
| ---------- | ------------ | -------------------------------------- |
58+
| Lowercase | `lowercase` | `{umbValue: headline | lowercase}` |
59+
| Strip HTML | `strip-html` | `{umbValue: bodyText | strip-html}` |
60+
| Title Case | `title-case` | `{umbValue: headline | title-case}` |
61+
| Truncate | `truncate` | `{umbValue: intro | truncate:30:...}` |
62+
| Uppercase | `uppercase` | `{umbValue: headline | uppercase}` |
63+
| Word Limit | `word-limit` | `{umbValue: intro | word-limit:15}` |
5564

5665

5766
## UFM components
@@ -94,21 +103,6 @@ The alias prefix is `umbContentName` An example of the syntax is `{umbContentNa
94103
As of Umbraco 15.0.0, the Content Name component supports the content-based pickers, e.g. Document Picker, Content Picker (formerly known as Multinode Treepicker) and Member Picker. Support for the advanced Media Picker will be available in upcoming Umbraco release.
95104

96105

97-
### Available UFM filters
98-
99-
The following UFM filters are available to use.
100-
101-
| Name | Alias | Example syntax |
102-
| ---------- | ------------ | -------------------------------------- |
103-
| Lowercase | `lowercase` | `{umbValue: headline | lowercase}` |
104-
| Strip HTML | `strip-html` | `{umbValue: bodyText | strip-html}` |
105-
| Title Case | `title-case` | `{umbValue: headline | title-case}` |
106-
| Truncate | `truncate` | `{umbValue: intro | truncate:30:...}` |
107-
| Uppercase | `uppercase` | `{umbValue: headline | uppercase}` |
108-
| Word Limit | `word-limit` | `{umbValue: intro | word-limit:15}` |
109-
110-
111-
112106
### Custom UFM components
113107

114108
If you wish to develop your own custom UFM component, you can use the `ufmComponent` extension type:

0 commit comments

Comments
 (0)