1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-05 01:44:41 +04:00

Fix prettier silently skipping preview's built HTML (#2736)

This commit is contained in:
Paweł Kuna
2026-07-30 23:11:46 +02:00
committed by GitHub
parent bc949c414c
commit ced821db1d
5 changed files with 48 additions and 20 deletions
+8 -1
View File
@@ -36,7 +36,14 @@ Use an input mask in the fields where users have to enter their phone number, to
To create an input mask, add the `data-mask` attribute to the input element:
```html
<input type="text" name="input-mask" class="form-control" data-mask="(00) 0000-0000" placeholder="(00) 0000-0000" autocomplete="off" />
<input
type="text"
name="input-mask"
class="form-control"
data-mask="(00) 0000-0000"
placeholder="(00) 0000-0000"
autocomplete="off"
/>
```
Look at the example below to see how the input mask works: