@@ -345,7 +345,7 @@ Also, there's [working](https://volicon.github.io/valuelink) [example](/example/
345345
346346### Text and number form fields
347347
348- ##### <Input type =" text " />, <TextArea />
348+ ##### ` <Input type="text"/> ` , ` <TextArea /> `
349349
350350` tags.jsx ` contains wrappers for standard ` <input> ` and ` <textarea> ` tags,
351351 which can be directly bound to the string state elements.
@@ -357,7 +357,7 @@ These wrappers will add `invalid` class to enclosed HTML element, if an error is
357357< TextArea valueLink= { link } / >
358358```
359359
360- ##### <NumberInput />
360+ ##### ` <NumberInput/> `
361361
362362There's also cross-browser implementation of * numeric input* tag. It has following differences compared to ` <Input> ` :
363363
@@ -375,7 +375,7 @@ There's also cross-browser implementation of *numeric input* tag. It has followi
375375
376376### Checkboxes
377377
378- ##### <Input type =" checkbox " >
378+ ##### ` <Input type="checkbox" /> `
379379
380380Wrapper for the standard ` <input> ` . Directly binds boolean value with ` checkedLink ` property.
381381
@@ -384,7 +384,7 @@ Wrapper for the standard `<input>`. Directly binds boolean value with `checkedLi
384384< Input type= " text" checkedLink= { arrayLink .contains ( ' option' ) } / >
385385```
386386
387- ##### <Checkbox >
387+ ##### ` <Checkbox/> `
388388
389389Internally, it's ` <div> ` element which toggles ` selected ` class on click.
390390Thus, it can be easily styled.
@@ -400,7 +400,7 @@ It passes through anything else, including `children`.
400400
401401### Radio Groups and Select list
402402
403- ##### <Select >
403+ ##### ` <Select/> `
404404
405405Wrapper for standard <select />. Regular <option /> tags must be used. All props are passed through.
406406
@@ -411,7 +411,7 @@ Wrapper for standard <select/>. Regular <option/> tags must be used. All props a
411411< / Select>
412412```
413413
414- ##### <Input type =" radio " >
414+ ##### ` <Input type="radio"/> `
415415
416416Wrapper for the standard ` <input> ` . Directly binds boolean value with ` checkedLink ` property.
417417
@@ -428,7 +428,7 @@ Can be directly bound to the state member using `valueLink` property.
428428< / label>
429429```
430430
431- ##### <Radio >
431+ ##### ` <Radio/> `
432432
433433Internally, it's ` <div> ` element which always sets ` selected ` class on click. Thus,
434434it can be easily styled.
0 commit comments