From 694b04e6dcb4b986085bfaf61528a809c412fb4d Mon Sep 17 00:00:00 2001 From: James Kiesel Date: Thu, 30 Nov 2017 10:02:09 +1300 Subject: [PATCH] Fix markdown headers --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8e1b683..46143fc 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ You can find the source code for this demo on branch "gh-pages". Also see the changelog [here](https://github.com/kamilkp/angular-sortable-view/blob/master/CHANGELOG.md) -###DESCRIPTION: +### DESCRIPTION: This is a simple library written as a module for [AngularJS](https://github.com/angular/angular.js) for sorting elements in the UI. It supports both single elements list, and multiple connected lists, where an element can be moved from one to another. @@ -51,7 +51,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne * `sv-helper` - the element with this attribute will serve as a custom helper for sorting operations * `sv-placeholder` - the element with this attribute will serve as a custom placeholder for sorting operations -###Example of single sortable list +### Example of single sortable list ```html
@@ -61,7 +61,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of multiple sortable lists with common ancestor +### Example of multiple sortable lists with common ancestor ```html
@@ -78,7 +78,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of multiple sortable lists without common ancestor +### Example of multiple sortable lists without common ancestor ```html
@@ -95,7 +95,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of using handles +### Example of using handles ```html
@@ -106,7 +106,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of using custom helpers per part +### Example of using custom helpers per part ```html
@@ -119,7 +119,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of using custom helpers per element +### Example of using custom helpers per element ```html
@@ -132,7 +132,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of using custom placeholders per part +### Example of using custom placeholders per part ```html
@@ -145,7 +145,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of using custom placeholders per element +### Example of using custom placeholders per element ```html
@@ -158,7 +158,7 @@ The API is declarative. There are four directives (hooked on attributes) that ne
``` -###Example of sorting with images +### Example of sorting with images _Because images are draggable by default the browser will trigger the default behavior of showing an image's ghost on a drag event rather than the mousedown event listener relied on by this module, disabling that drag behavior leaves the element free to move immediately._ ```html