diff --git a/docs/components/data/34-o-list.component.md b/docs/components/data/34-o-list.component.md
index 8169919dc..205f3ab42 100644
--- a/docs/components/data/34-o-list.component.md
+++ b/docs/components/data/34-o-list.component.md
@@ -39,8 +39,8 @@ The `o-list-item-text` component is used to display list items with a maximum of
edit-button-in-row-icon="edit" detail-mode="none" pagination-controls="false"
page-size-options="5;10" insert-button-position="bottom" show-buttons-text="false">
-
+
@@ -62,8 +62,8 @@ The `o-list-item-avatar` component is used to display list items with an avatar
detail-button-in-row-icon="chevron_right" edit-button-in-row="false"
edit-button-in-row-icon="edit" detail-mode="none">
-
+
@@ -82,7 +82,7 @@ The `o-list-item-card` component is used to display a card list item with text,
[static-data]="data" refresh-button="true" quick-filter="true" insert-button="false"
row-height="medium" detail-mode="none">
-
@@ -103,8 +103,8 @@ The `o-list-item-card-image` component is used to display card list items with a
[static-data]="data" refresh-button="true" insert-button="false"
quick-filter="no" row-height="medium" detail-mode="none">
-
@@ -124,10 +124,10 @@ When building an `o-list` component you can include one of the predefined list i
-

+
- {{ row.name }}
- {{ row.body }}
+ {% raw %}{{ row.name }}{% endraw %}
+ {% raw %}{{ row.body }}{% endraw %}
@@ -141,12 +141,12 @@ The `o-list` component allows to add content in the toolbar with the selector `o
If the selector `o-list-toolbar` is used together with `position='start'` the content will always be placed to the right of the New/Refresh/Delete buttons and if used together with `position='end'` the content will always be placed to the left of the quickfilter
-```ts
-
+```html
+
-
+
-
+
```