Browse Source

update readme

Robin Herbots 11 years ago
parent
commit
6cfcb7c361
1 changed files with 2 additions and 5 deletions
  1. 2 5
      README.md

+ 2 - 5
README.md

@@ -18,7 +18,7 @@ Highlights:
 - many features can be enabled/disabled/configured by options
 - supports readonly/disabled/dir="rtl" attributes
 - support data-inputmask attribute  
-<del>- multi-mask support</del>
+- multi-mask support
 - regex-mask support
 - value formatting / validating without input element
 
@@ -362,7 +362,6 @@ $(selector).inputmask({ mask: "99999[-9999]", greedy: false });
 
 The initial mask shown will be "_____" instead of "_____-____". 
 
-<del>
 ### Multiple masks
 
 You can define multiple mask for your input.  Depending on the input the masking will switch between the defined masks.  
@@ -385,7 +384,7 @@ var phones = [
 ]
 $(selector).inputmask({ mask: phones, definitions: { '#': { validator: "[0-9]", cardinality: 1}} }); //in case of inputmask-multi you need to specify the validator for #
 ```
-</del>
+
 The metadata of the actual mask provided in the mask definitions can be obtained by calling
 
 ```javascript
@@ -755,7 +754,6 @@ $(document).ready(function(){
 });
 ```
 
-<del>
 ## phone extensions
 Uses the phone mask definitions from https://github.com/andr-04/inputmask-multi
 
@@ -767,7 +765,6 @@ Uses the phone mask definitions from https://github.com/andr-04/inputmask-multi
                 } 
   });
 ```
-</del>
 
 ## other extensions