Skip to content

Commit 10ec6f6

Browse files
getaaronwessmith
authored andcommitted
Fix README formatting
1 parent fd8cd25 commit 10ec6f6

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

README.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,14 @@ Add deep link support to your app in 5 minutes or less following these simple st
5454

5555

5656

57-
<br /><br />
5857
**1. Make sure you have a URL scheme registered for your app in your Info.plist**
5958
<img src="https://cloud.githubusercontent.com/assets/1057077/5710380/8d913f3e-9a6f-11e4-83a2-49f6564d7a8f.png" width="410" />
6059

61-
<br />
62-
6360
**2. Import DeepLinkKit**
6461

6562
```objc
6663
#import <DeepLinkKit/DeepLinkKit.h>
6764
```
68-
<br />
6965

7066
**3. Create an instance of `DPLDeepLinkRouter` in your app delegate**
7167

@@ -78,7 +74,6 @@ Add deep link support to your app in 5 minutes or less following these simple st
7874
return YES;
7975
}
8076
````
81-
<br />
8277

8378
**4. Register a route handler**
8479

@@ -98,8 +93,6 @@ self.router.register("/log/:message") { link in
9893
}
9994
````
10095

101-
<br />
102-
10396
**5. Pass incoming URLs to the router**
10497

10598
```objc
@@ -113,7 +106,7 @@ self.router.register("/log/:message") { link in
113106
```
114107

115108
**6. Passing `NSUserActivity` objects to the router** (optional)
116-
<br/>
109+
117110
_**Note:** If your application supports [Apple's new universal links](https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS9.html#//apple_ref/doc/uid/TP40016198-DontLinkElementID_2), implement the following in your app delegate:_
118111

119112
```objc

0 commit comments

Comments
 (0)