docs(fix): widget example code layout on Site (#1606)

* Fix widget example layout

* Stop running MarkDown through Prettier.
This commit is contained in:
Tony Alves
2018-08-14 07:37:07 -07:00
committed by Caleb
parent 05622b8eee
commit 583377bc92
16 changed files with 136 additions and 162 deletions

View File

@ -14,13 +14,12 @@ The number widget uses an HTML number input, saving the value as a string, integ
- `min`: accepts a number for minimum value accepted; unset by default
- `max`: accepts a number for maximum value accepted; unset by default
- **Example:**
```yaml
- label: 'Puppy Count'
name: 'puppies'
widget: 'number'
default: 2
valueType: 'int'
min: 1
max: 101
```
```yaml
- label: 'Puppy Count'
name: 'puppies'
widget: 'number'
default: 2
valueType: 'int'
min: 1
max: 101
```