Skip to content

Commit 7620f37

Browse files
Merge pull request #164 from bryant1410/master
Fix broken headings in Markdown files
2 parents 9abd30a + 37264c3 commit 7620f37

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

MEMBERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Current Project Team Members
1+
# Current Project Team Members
22

33
The CloudBoost project team comprises a group of core collaborators and a sub-group that forms the Technical Steering Committee (TSC) which governs the project. For more information about the governance of the CloudBoost project, see GOVERNANCE.md.
44

docs/app-settings/auth.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ Example:
170170
}
171171
}
172172
```
173-
##Facebook Social Authentication
174-
###Attributes
173+
## Facebook Social Authentication
174+
### Attributes
175175
```
176176
{
177177
id:true,
@@ -389,12 +389,12 @@ Example:
389389
}
390390
```
391391

392-
##Google Social Authentication
392+
## Google Social Authentication
393393
You need to paste your CloudBoost callback URL in "Authorized redirect URIs" field in the Authentication section of the Google API console.
394394
</br>
395395
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/google/callback
396396

397-
###Attributes
397+
### Attributes
398398
```
399399
{
400400
'userinfoProfile':{
@@ -408,7 +408,7 @@ You need to paste your CloudBoost callback URL in "Authorized redirect URIs" fie
408408
}
409409
```
410410

411-
###Permissions
411+
### Permissions
412412
```
413413
{
414414
'contacts':{
@@ -474,18 +474,18 @@ You need to paste your CloudBoost callback URL in "Authorized redirect URIs" fie
474474
}
475475
```
476476

477-
##Twitter Social Authentication
477+
## Twitter Social Authentication
478478
You need to paste your CloudBoost callback URL in "Callback URL" field in the Twitter App Settings.
479479
</br>
480480
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/twitter/callback
481481

482482

483-
##LinkedIn Social Authentication
483+
## LinkedIn Social Authentication
484484
You need to paste your CloudBoost callback URL in "Authorized Redirect URLs" field in the Linkedin Developers App Sections..
485485
</br>
486486
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/linkedin/callback
487487

488-
###Permissions
488+
### Permissions
489489
```
490490
{
491491
r_basicprofile:true,
@@ -495,12 +495,12 @@ You need to paste your CloudBoost callback URL in "Authorized Redirect URLs" fie
495495
}
496496
```
497497

498-
##Github Social Authentication
498+
## Github Social Authentication
499499
You need to paste your CloudBoost callback URL in "Authorization callback URL" field in Github Developers App Section.
500500
</br>
501501
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/github/callback
502502

503-
###Attributes
503+
### Attributes
504504
```
505505
{
506506
user:{
@@ -514,7 +514,7 @@ You need to paste your CloudBoost callback URL in "Authorization callback URL" f
514514
}
515515
```
516516

517-
###Permissions
517+
### Permissions
518518
```
519519
{
520520
userFollow:{
@@ -743,7 +743,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/email, true);
743743
xhttp.send(data);
744744
```
745745

746-
##Retrieve App Settings
746+
## Retrieve App Settings
747747
Make a POST REST request to ClouBoost API to retrive your app settings
748748
</br>
749749
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
@@ -767,5 +767,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
767767
xhttp.send(data);
768768
```
769769

770-
#Contribute
770+
# Contribute
771771
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.

docs/app-settings/email.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/email, true);
7373
xhttp.send(data);
7474
```
7575

76-
##Retrieve App Settings
76+
## Retrieve App Settings
7777
Make a POST REST request to ClouBoost API to retrive your app settings
7878
</br>
7979
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
@@ -97,5 +97,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
9797
xhttp.send(data);
9898
```
9999

100-
#Contribute
100+
# Contribute
101101
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.

docs/app-settings/general.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/general, true);
4747
xhttp.send(data);
4848
```
4949

50-
##Retrieve App Settings
50+
## Retrieve App Settings
5151
Make a POST REST request to ClouBoost API to retrive your app settings
5252
</br>
5353
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
@@ -71,5 +71,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
7171
xhttp.send(data);
7272
```
7373

74-
#Contribute
74+
# Contribute
7575
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.

docs/app-settings/push.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ if(xhttp.readyState == 4 && xhttp.status == 200) {
7979
xhttp.open("PUT",<your-server-url>/settings/<your-appId>/push, true);
8080
xhttp.send(data);
8181
```
82-
##Upload Apple certificate to CloudBoost
82+
## Upload Apple certificate to CloudBoost
8383
Make PUT REST request to your CloudBoost with Apple .p12 certificate file to get file URL which can be used to save apple push settings.
8484
</br>
8585
Request: &lt;your-server-url&gt;/settings/&lt;your-appId&gt;/file/push;
@@ -104,7 +104,7 @@ xhttp.open("PUT", <your-server-url>/settings/<your-appId>/file/push, true);
104104
xhttp.send(data);
105105
```
106106

107-
##Retrieve App Settings
107+
## Retrieve App Settings
108108
Make a POST REST request to ClouBoost API to retrive your app settings
109109
</br>
110110
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
@@ -128,5 +128,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
128128
xhttp.send(data);
129129
```
130130

131-
#Contribute
131+
# Contribute
132132
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.

0 commit comments

Comments
 (0)