Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ECMobile

[ECMobile](http://www.ecmobile.cn) 是基于 [ECShop](http://www.ecshop.com) 的手机商城客户端,包括iOS、Android、PHP三个平台源代码及框架已开放下载!

#####支持开源及后续版本更新,请FORK和STAR,感谢您的支持!
##### 支持开源及后续版本更新,请FORK和STAR,感谢您的支持!

1. iOS: [https://github.com/GeekZooStudio/ECMobile_iOS](https://github.com/GeekZooStudio/ECMobile_iOS)
2. Android: [https://github.com/GeekZooStudio/ECMobile_Android](https://github.com/GeekZooStudio/ECMobile_Android)
Expand Down
4 changes: 2 additions & 2 deletions doc/ECMobile_iOS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#修改工程
# 修改工程

1. 打开工程
2. 找到[AppDelegate load]方法,修改 [ServerConfig sharedInstance].url
Expand Down Expand Up @@ -30,7 +30,7 @@ siri.config.appID = @"<Your iflyKey>";
[ExpressModel setKuaidi100Key:@"<Your kuaidi100Key>"];
</pre>

#联系方式
# 联系方式

官方论坛:http://bbs.ecmobile.cn/

Expand Down
8 changes: 4 additions & 4 deletions iOS/services/bee.services.location/bee.services.location.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.location` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.location.h"

#Step 2
# Step 2

<pre>
bee.services.location.whenUpdate = ^
Expand All @@ -13,11 +13,11 @@ bee.services.location.whenUpdate = ^
};
</pre>

#Step 3
# Step 3

<pre>
bee.services.location.ON();
bee.services.location.OFF();
</pre>

#Good luck
# Good luck
8 changes: 4 additions & 4 deletions iOS/services/bee.services.push/bee.services.push.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.push` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.push.h"

#Step 2
# Step 2

<pre>
bee.services.push.whenRegistered = ^
Expand All @@ -20,7 +20,7 @@ bee.services.push.whenReceived = ^
};
</pre>

#Step 3
# Step 3

<pre>
bee.services.push.ON();
Expand All @@ -32,4 +32,4 @@ bee.services.push.CLEAR();
bee.services.push.CHECK();
</pre>

#Good luck
# Good luck
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.share.sinaweibo` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.share.sinaweibo.h"

#Step 2
# Step 2

<pre>
bee.services.share.sinaweibo.config.appKey = @"<Your app key>";
Expand All @@ -13,15 +13,15 @@ bee.services.share.sinaweibo.config.redirectURI = @"<Your redirect url>";
bee.services.share.sinaweibo.ON();
</pre>

#Step 3
# Step 3

####Authorize
#### Authorize

<pre>
bee.services.share.sinaweibo.AUTHORIZE();
</pre>

####Share
#### Share

<pre>
bee.services.share.sinaweibo.post.text = @"<Text>";
Expand All @@ -41,4 +41,4 @@ bee.services.share.sinaweibo.whenCancelled = ^
bee.services.share.sinaweibo.SHARE();
</pre>

#Good luck
# Good luck
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.share.tencentweibo` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.share.tencentweibo.h"

#Step 2
# Step 2

<pre>
bee.services.share.tencentweibo.config.appKey = @"<Your app key>";
Expand All @@ -13,15 +13,15 @@ bee.services.share.tencentweibo.config.redirectURI = @"<Your redirect url>";
bee.services.share.tencentweibo.ON();
</pre>

#Step 3
# Step 3

####Authorize
#### Authorize

<pre>
bee.services.share.tencentweibo.AUTHORIZE();
</pre>

####Share
#### Share

<pre>
bee.services.share.tencentweibo.post.text = @"<Text>";
Expand All @@ -41,4 +41,4 @@ bee.services.share.tencentweibo.whenCancelled = ^
bee.services.share.tencentweibo.SHARE();
</pre>

#Good luck
# Good luck
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.share.tencentweibo` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.share.tencentweibo.h"

#Step 2
# Step 2

Add below into your .plist file

Expand All @@ -23,15 +23,15 @@ Add below into your .plist file
</dict>
</array>

#Step 2
# Step 2

<pre>
bee.services.share.weixin.config.appId = @"<Your app id>";
bee.services.share.weixin.config.appKey = @"<Your app key>";
bee.services.share.weixin.ON();
</pre>

#Step 4
# Step 4

<pre>
if ( bee.services.share.weixin.installed )
Expand All @@ -53,4 +53,4 @@ else
}
</pre>

#Good luck
# Good luck
4 changes: 2 additions & 2 deletions iOS/services/bee.services.siri/bee.services.siri.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Step 1
# Step 1

1. Locate `bee.services.siri` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.siri.h"

#Good luck
# Good luck
8 changes: 4 additions & 4 deletions iOS/services/bee.services.wizard/bee.services.wizard.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Step 1
# Step 1

1. Locate `bee.services.wizard` under `/services`
2. Then drag and drop it into your project.
3. \#import "bee.services.wizard.h"

#Step 2
# Step 2

<pre>
bee.services.wizard.config.showPageControl = YES;
Expand All @@ -26,11 +26,11 @@ bee.services.wizard.whenSkipped = ^{
};
</pre>

#Step 3
# Step 3

<pre>
bee.services.wizard.ON();
bee.services.wizard.OFF();
</pre>

#Good luck
# Good luck