Skip to content

Commit e420d00

Browse files
authoredJul 19, 2024··
docs: update the syntax highlighting for angular (#5668)
1 parent 3f0e5d2 commit e420d00

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎docs/framework/angular/angular-table.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Example:
4949
})
5050
```
5151

52-
```angular2html
52+
```angular-html
5353
5454
<tbody>
5555
@for (row of table.getRowModel().rows; track row.id) {
@@ -89,7 +89,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu
8989
- Cell: `CellContext<T, ?>`,
9090
- Footer: `HeaderContext<T, ?>`
9191

92-
```angular17html
92+
```angular-html
9393
9494
<ng-container
9595
*flexRender="
@@ -111,7 +111,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu
111111

112112
Full example:
113113

114-
```ts
114+
```angular-ts
115115
import type {
116116
CellContext,
117117
ColumnDef,
@@ -251,7 +251,7 @@ is then defined to be used in the component. If any of the context properties ar
251251
needed in your component, feel free to use them. Please take note that only input signal is supported,
252252
when defining access to context properties, using this approach.
253253

254-
```ts
254+
```angular-ts
255255
@Component({
256256
template: `
257257
<input

0 commit comments

Comments
 (0)
Please sign in to comment.