Browse Source

Edit DateTime-Format-Pipe.md

pull/14473/head
Fatih KILIÇ 3 years ago
parent
commit
85071d9a13
  1. 6
      docs/en/UI/Angular/DateTime-Format-Pipe.md

6
docs/en/UI/Angular/DateTime-Format-Pipe.md

@ -8,8 +8,6 @@ Example
```html ```html
<span> {{today | date 'dd/mm/yy'}}</span> <span> {{today | date 'dd/mm/yy'}}</span>
``` ```
<span>{{today | date 'dd/mm/yy'}}</span>
ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but easier. Also the pipes get format from config service by culture. ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but easier. Also the pipes get format from config service by culture.
@ -18,7 +16,6 @@ ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but
```html ```html
<span> {{today | shortDatePipe }}</span> <span> {{today | shortDatePipe }}</span>
``` ```
<span>{{today | shortDatePipe }}</span>
# ShortTime Pipe # ShortTime Pipe
@ -26,7 +23,6 @@ ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but
```html ```html
<span> {{today | shortTimePipe }}</span> <span> {{today | shortTimePipe }}</span>
``` ```
<span>{{today | shortTimePipe }}</span>
# ShortDateTime Pipe # ShortDateTime Pipe
@ -34,7 +30,5 @@ ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but
```html ```html
<span> {{today | shortDateTimePipe }}</span> <span> {{today | shortDateTimePipe }}</span>
``` ```
<span>{{today | shortDateTimePipe }}</span>
}%} }%}
Loading…
Cancel
Save