improved readme maybe

master
Ondřej Hruška 9 years ago
parent b2b45dc5a0
commit 51b97ac5dd
  1. 12
      README.md

@ -5,9 +5,10 @@ Abbr is a JavaScript library / function for finding, highlighting and annotating
It needs no extra markup, all is done automatically. Just tell it what words you want to explain, and it'll do it. It needs no extra markup, all is done automatically. Just tell it what words you want to explain, and it'll do it.
Abbr takes the following arguments: Abbr takes the following (default) arguments:
var opts = { ```js
{
// selector in which to search for abbreviations // selector in which to search for abbreviations
where: 'body', where: 'body',
// abbreviation list - word: explanation // abbreviation list - word: explanation
@ -22,18 +23,22 @@ Abbr takes the following arguments:
excluded: ['script', 'style', 'code', 'head', 'textarea', 'embed'], excluded: ['script', 'style', 'code', 'head', 'textarea', 'embed'],
// Extra excluded (doesn't overwrite the original list) // Extra excluded (doesn't overwrite the original list)
exclude: [] exclude: []
}; }
```
All config options are optional (though, obviously, you don't want to leave `words` empty). All config options are optional (though, obviously, you don't want to leave `words` empty).
To run it, simply call: To run it, simply call:
```js
abbr({ abbr({
// Your options here // Your options here
}); });
```
For example: For example:
```js
abbr({ abbr({
where: 'article', where: 'article',
words: { words: {
@ -41,4 +46,5 @@ For example:
'Putin': 'Bear rider' 'Putin': 'Bear rider'
} }
}); });
```

Loading…
Cancel
Save