Skip to content

Commit 741492e

Browse files
committed
Fix unicode chars not showing in inline code blocks.
1 parent 3fe00bb commit 741492e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ Here is a screenshot of the result:
9999

100100
### data
101101

102-
| Key | Description | Type | Required | Default |
103-
| :--: | :-------------------------: | :-------------------: | :------: | :-----: |
104-
| data | Data to be displayed/edited | `Object | Array` | True | None |
102+
| Key | Description | Type | Required | Default |
103+
| :--: | :-------------------------: | :------------------------------: | :------: | :-----: |
104+
| data | Data to be displayed/edited | <code>Object &#124; Array</code> | True | None |
105105

106106
### rootName
107107

@@ -131,9 +131,9 @@ Function parameters:
131131

132132
Function parameters:
133133

134-
| Key | Description | Type |
135-
| :--: | :----------: | :--------------------------------------------------: |
136-
| data | Updated data | `Object &#124; Array` (same type as the `data` prop) |
134+
| Key | Description | Type |
135+
| :--: | :----------: | :-------------------------------------------------------------: |
136+
| data | Updated data | <code>Object &#124; Array</code> (same type as the `data` prop) |
137137

138138
### onDeltaUpdate
139139

@@ -160,9 +160,9 @@ Delta data structure:
160160

161161
### readOnly
162162

163-
| Key | Description | Type | Required | Default |
164-
| :------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------: | :------: | :-------------------------------------------------: |
165-
| readOnly | If a boolean, whether the entire structure should be read-only. If a function, whether the node/value supplied to the function should be read-only (called for all nodes/values). | `boolean &#124; Function` | False | `(keyName, data, keyPath, deep, dataType) => false` |
163+
| Key | Description | Type | Required | Default |
164+
| :------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------: | :------: | :-------------------------------------------------: |
165+
| readOnly | If a boolean, whether the entire structure should be read-only. If a function, whether the node/value supplied to the function should be read-only (called for all nodes/values). | <code>boolean &#124; Function</code> | False | `(keyName, data, keyPath, deep, dataType) => false` |
166166

167167
This function must return a boolean.
168168

@@ -246,9 +246,9 @@ The library will add an `onClick` handler to the element.
246246

247247
### inputElement
248248

249-
| Key | Description | Type | Required | Default |
250-
| :----------: | :-----------------------------------------: | :---------------------------: | :------: | :------------------------------------------------------------: |
251-
| inputElement | Custom text input element (to edit a value) | `JSX.Element &#124; Function` | False | `(usage, keyPath, deep, keyName, data, dataType) => <input />` |
249+
| Key | Description | Type | Required | Default |
250+
| :----------: | :-----------------------------------------: | :--------------------------------------: | :------: | :------------------------------------------------------------: |
251+
| inputElement | Custom text input element (to edit a value) | <code>JSX.Element &#124; Function</code> | False | `(usage, keyPath, deep, keyName, data, dataType) => <input />` |
252252

253253
The library will add a `placeholder`, `ref`, and `defaultValue` prop to the
254254
element. This element will be focused when possible.
@@ -266,9 +266,9 @@ Function parameters:
266266

267267
### textareaElement
268268

269-
| Key | Description | Type | Required | Default |
270-
| :-------------: | :------------------------------------------------------------: | :---------------------------: | :------: | :---------------------------------------------------------------: |
271-
| textareaElement | Custom textarea element (to edit a long value, like functions) | `JSX.Element &#124; Function` | False | `(usage, keyPath, deep, keyName, data, dataType) => <textarea />` |
269+
| Key | Description | Type | Required | Default |
270+
| :-------------: | :------------------------------------------------------------: | :--------------------------------------: | :------: | :---------------------------------------------------------------: |
271+
| textareaElement | Custom textarea element (to edit a long value, like functions) | <code>JSX.Element &#124; Function</code> | False | `(usage, keyPath, deep, keyName, data, dataType) => <textarea />` |
272272

273273
The library will add a `ref` and `defaultValue` prop to the element. This
274274
element will be focused when possible.

0 commit comments

Comments
 (0)