From c5023cabc52dad088af267a21155f5dd455d1f05 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Mon, 17 Apr 2017 07:20:27 -0300 Subject: [PATCH] Fix broken Markdown headings --- Pods/Masonry/README.md | 2 +- README.md | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Pods/Masonry/README.md b/Pods/Masonry/README.md index 3d9013c..833b744 100644 --- a/Pods/Masonry/README.md +++ b/Pods/Masonry/README.md @@ -1,4 +1,4 @@ -#Masonry [![Build Status](https://travis-ci.org/SnapKit/Masonry.svg?branch=master)](https://travis-ci.org/SnapKit/Masonry) [![Coverage Status](https://img.shields.io/coveralls/SnapKit/Masonry.svg?style=flat-square)](https://coveralls.io/r/SnapKit/Masonry) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +# Masonry [![Build Status](https://travis-ci.org/SnapKit/Masonry.svg?branch=master)](https://travis-ci.org/SnapKit/Masonry) [![Coverage Status](https://img.shields.io/coveralls/SnapKit/Masonry.svg?style=flat-square)](https://coveralls.io/r/SnapKit/Masonry) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) **Masonry is still actively maintained, we are committed to fixing bugs and merging good quality PRs from the wider community. However if you're using Swift in your project, we recommend using [SnapKit](https://github.com/SnapKit/SnapKit) as it provides better type safety with a simpler API.** diff --git a/README.md b/README.md index 02093cd..48a3820 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ * 对常用的控制器类的通用功能集成到基类中,如通知监听及释放、导航条配置、测试入口类、base url列表选择入口等 * 对常用的控件封装成block版本 -#目录划分 +# 目录划分 * CommonKit:将常用的宏和短代码简化成宏或者block定义 * UIBlockKit:将常用的UI控件变成block版本,以辅助UIMasonryMaker生成最简单的版本 @@ -26,23 +26,23 @@ -#单元测试 +# 单元测试 对于FoundationKit是经过单元测试的!对于UI组件,并没有进行单元测试,不过已在某项目中使用,目前未出现问题。 -#使用 +# 使用 ``` pod 'HYBHelperKit' ``` -#API风格 +# API风格 * 所有扩展公开API及属性都有hyb_前缀 * 部分类公开API及属性也有hyb_前缀 * 所有API都有详细的注释 -#基础使用 +# 基础使用 ``` // 非系统返回按钮 @@ -62,7 +62,7 @@ kWeakObject(self); }]; ``` -##创建tableview +## 创建tableview 提供了多种API,这只是其中一种: @@ -73,7 +73,7 @@ kWeakObject(self); }]; ``` -##创建按钮 +## 创建按钮 ``` UIButton *enterButton = [UIButton hyb_buttonWithTitle:@"立即进入" superView:itemView1 constraints:^(MASConstraintMaker *make) { @@ -88,11 +88,11 @@ kWeakObject(self); 更多还是查看源代码吧! -#声明 +# 声明 本开源项目会持续维护,如果有bug或者觉得可以抽一个轮子的,请拉一个issue或者pull request过来!如果想到博客中阅读,欢迎访问[http://www.huangyibiao.com/ios-hybhelperkit/](http://www.huangyibiao.com/ios-hybhelperkit/) -#History Versions +# History Versions * V0.1.0 - Fix bugs @@ -105,7 +105,7 @@ kWeakObject(self); - Fix hyb_trimLeft crash bug when not enough length string. - Fix hyb_leftMarginOfCursor using _cmd will get nil because of getter and setter _cmd is not the same. -#LICENSE +# LICENSE MIT