Skip to content

Commit 2cad334

Browse files
charpenirotemmiz
authored andcommitted
Fix headers in README.md (wix-incubator#86)
1 parent 599ce3b commit 2cad334

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

README.md

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
#React Native Rich Text Editor
1+
# React Native Rich Text Editor
22

33
A fully functional Rich Text Editor for both Android and iOS, based off the [ZSSRichTextEditor](https://github.com/nnhubbard/ZSSRichTextEditor/tree/master/ZSSRichTextEditor) project.
44

5-
##Installation
5+
## Installation
66

7-
`npm i --save react-native-zss-rich-text-editor`
7+
```
8+
npm i --save react-native-zss-rich-text-editor
9+
```
810

911
On Android, add the following to the end of your `android/app/build.gradle`
1012

@@ -18,11 +20,11 @@ project.afterEvaluate {
1820
Also, follow instructions [here](https://github.com/alinz/react-native-webview-bridge) to add the native `react-native-webview-bridge-updated` dependency.
1921

2022

21-
##Usage
23+
## Usage
2224

2325
`react-native-zss-rich-text-editor` exports two Components and one const dictionary:
2426

25-
##`RichTextEditor`
27+
## `RichTextEditor`
2628

2729
The editor component. Simply place this component in your view hierarchy to receive a fully functional Rich text Editor.
2830

@@ -119,7 +121,7 @@ This method registers a function that will get called whenver the cursor positio
119121

120122
* `registerToolbar(listener)`
121123

122-
###Example Usage:
124+
### Example Usage:
123125

124126
```javascript
125127
<RichTextEditor
@@ -132,7 +134,7 @@ This method registers a function that will get called whenver the cursor positio
132134

133135
![RichTextEditor](readme/editor.png)
134136

135-
##`RichTextToolbar`
137+
## `RichTextToolbar`
136138

137139
This is a Component that provides a toolbar for easily controlling an editor. It is designed to be used together with a `RichTextEditor` component.
138140

@@ -178,7 +180,7 @@ Other props supported by the `RichTextToolbar` component are:
178180
`RichTextToolbar` comes with default icons for the default actions it renders. To override those, or to add icons for non-default actions, provide them in a dictionary to this prop.
179181

180182

181-
###Example Usage:
183+
### Example Usage:
182184

183185
```javascript
184186
<RichTextToolbar
@@ -191,7 +193,7 @@ Other props supported by the `RichTextToolbar` component are:
191193
![RichTextEditor](readme/toolbar_selected.png)
192194

193195

194-
##`actions`
196+
## `actions`
195197

196198
This is a set of consts of all supported actions. These will be passed in arrays to all callbacks registered with the editor using the `registerToolbar()` method.
197199

@@ -245,6 +247,6 @@ This is a set of consts of all supported actions. These will be passed in arrays
245247
}
246248

247249

248-
##Attribution
250+
## Attribution
249251

250-
`react-native-zss-rich-text-editor` is a wrapper around the amazing [ZSSRichTextEditor](https://github.com/nnhubbard/ZSSRichTextEditor/tree/master/ZSSRichTextEditor) project. It also communicates with the editor using (a tiny fork) of the awesome [react-native-webview-bridge](https://github.com/alinz/react-native-webview-bridge) project.
252+
`react-native-zss-rich-text-editor` is a wrapper around the amazing [ZSSRichTextEditor](https://github.com/nnhubbard/ZSSRichTextEditor/tree/master/ZSSRichTextEditor) project. It also communicates with the editor using (a tiny fork) of the awesome [react-native-webview-bridge](https://github.com/alinz/react-native-webview-bridge) project.

0 commit comments

Comments
 (0)