Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions 16/umbraco-cms/reference/umbraco-flavored-markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The syntax for UFM filters uses a pipe character `|` (Vertical Line). Multiple f
To display a rich text value, stripping out the HTML markup and limiting it to the first 15 words could use the following filters:

```markdown
{umbValue: bodyText | strip-html | word-limit:15}
{umbValue: bodyText | stripHtml | wordLimit:15}
```

The following UFM filters are available to use.
Expand All @@ -62,11 +62,11 @@ The following UFM filters are available to use.
| Bytes | `bytes` | `{umbValue: umbracoBytes \| bytes}` |
| Fallback | `fallback` | `{umbValue: headline \| fallback:N/A}` |
| Lowercase | `lowercase` | `{umbValue: headline \| lowercase}` |
| Strip HTML | `strip-html` | `{umbValue: bodyText \| strip-html}` |
| Title Case | `title-case` | `{umbValue: headline \| title-case}` |
| Strip HTML | `stripHtml` | `{umbValue: bodyText \| stripHtml}` |
| Title Case | `titleCase` | `{umbValue: headline \| titleCase}` |
| Truncate | `truncate` | `{umbValue: intro \| truncate:30:...}` |
| Uppercase | `uppercase` | `{umbValue: headline \| uppercase}` |
| Word Limit | `word-limit` | `{umbValue: intro \| word-limit:15}` |
| Word Limit | `wordLimit` | `{umbValue: intro \| wordLimit:15}` |


## UFM Expressions (JavaScript-like syntax)
Expand Down