Skip to content

Commit e00c243

Browse files
committed
Fix broken Markdown headings
1 parent 12c2b21 commit e00c243

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ It is designed to work as well on touch devices such as mobile phones or tablets
2929
## Usage
3030
As you can see in the example files, you will need to include the JavaScript file `jquery.multiscroll.js` (or the minified version `jquery.multiscroll.min.js`) and the css file `jquery.multiscroll.css` of the plugin, as well as [jQuery](http://jquery.com/). Optionally, you can add the [jQuery UI library](http://jqueryui.com/) in case you want to use other easing effects apart from the ones included in the jQuery library which are the `linear` or `swing` effects. (`easeInQuart` is active by default, so you would need [jQuery UI library](http://jqueryui.com/) or the customized version which is included in the vendors folder under the name `jquery.easings.min.js`.)
3131

32-
###Including files:
32+
### Including files:
3333
```html
3434
<link rel="stylesheet" type="text/css" href="jquery.multiscroll.css" />
3535

@@ -42,7 +42,7 @@ As you can see in the example files, you will need to include the JavaScript fil
4242
<script type="text/javascript" src="jquery.multiscroll.js"></script>
4343
```
4444

45-
###Required HTML structure
45+
### Required HTML structure
4646
Each section will be defined with a `div` containing the `section` class.
4747
The active section by default will be the first section, which is taken as the home page.
4848
```html
@@ -67,7 +67,7 @@ This should be done for the `ms-right` and `ms-left` elements.
6767
<div class="ms-section active">Some section</div>
6868
```
6969

70-
###Initialization
70+
### Initialization
7171
All you need to do is call the plugin inside a `$(document).ready` function:
7272

7373
```javascript
@@ -244,7 +244,7 @@ $.fn.multiscroll.build();
244244

245245

246246
## Callbacks
247-
###afterLoad (`anchorLink`, `index`)
247+
### afterLoad (`anchorLink`, `index`)
248248
Callback fired once the sections have been loaded, after the scrolling has ended.
249249
Parameters:
250250

@@ -273,7 +273,7 @@ Example:
273273
});
274274
```
275275

276-
###onLeave (`index`, `nextIndex`, `direction`)
276+
### onLeave (`index`, `nextIndex`, `direction`)
277277
This callback is fired once the user leaves a section, in the transition to the new section.
278278

279279
Parameters:
@@ -300,7 +300,7 @@ Example:
300300
```
301301

302302

303-
###afterRender()
303+
### afterRender()
304304
This callback is fired just after the structure of the page is generated. This is the callback you want to use to initialize other plugins or fire any code which requires the document to be ready (as this plugin modifies the DOM to create the resulting structure).
305305

306306
Example:
@@ -313,7 +313,7 @@ Example:
313313
});
314314
```
315315

316-
###afterResize()
316+
### afterResize()
317317
This callback is fired after resizing the browser's window. Just after the sections are resized.
318318

319319
Example:

0 commit comments

Comments
 (0)