Skip to content

Commit ab2b97f

Browse files
committed
Refactor markdown
1 parent 83bf752 commit ab2b97f

File tree

1 file changed

+36
-8
lines changed

1 file changed

+36
-8
lines changed

readme.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# stmr([3](http://en.wikipedia.org/wiki/Man_page#Manual_sections)) [![Build Status](https://img.shields.io/travis/wooorm/stmr.c.svg?style=flat)](https://travis-ci.org/wooorm/stmr.c) [![Coverage Status](https://img.shields.io/coveralls/wooorm/stmr.c.svg?style=flat)](https://coveralls.io/r/wooorm/stmr.c?branch=master)
1+
# stmr(3) [![Build Status][travis-badge]][travis] [![Coverage Status][coveralls-badge]][coveralls]
22

3-
Martin Porter’s Stemming algorithm<sup>[1](http://tartarus.org/martin/PorterStemmer/)</sup> as a C library. There’s also a CLI: [stmr(1)](https://github.com/wooorm/stmr).
4-
5-
In fact, this is just a refactored version of the [initial ANCI C implementation](http://tartarus.org/martin/PorterStemmer/c.txt).
3+
Martin Porter’s [Stemming algorithm][algo] as a C library.
4+
There’s also a CLI: [stmr(1)][cli].
65

76
## Installation
87

9-
CLib:
10-
```sh
11-
$ clib install wooorm/stmr.c
8+
[clib][]:
9+
10+
```bash
11+
clib install wooorm/stmr.c
1212
```
1313

1414
Or clone the repo.
@@ -34,6 +34,34 @@ main(int argc, char **argv) {
3434
}
3535
```
3636
37+
## Related
38+
39+
* [`stemmer`][lib] — Same algorithm in JavaScript
40+
* [`stmr`][cli]
41+
— CLI in C
42+
3743
## License
3844
39-
MIT © [Titus Wormer](http://wooorm.com)
45+
[MIT][license] © [Titus Wormer][author]
46+
47+
<!-- Definitions -->
48+
49+
[travis-badge]: https://img.shields.io/travis/wooorm/stmr.c.svg
50+
51+
[travis]: https://travis-ci.org/wooorm/stmr.c
52+
53+
[coveralls-badge]: https://img.shields.io/coveralls/wooorm/stmr.c.svg
54+
55+
[coveralls]: https://coveralls.io/r/wooorm/stmr.c?branch=master
56+
57+
[license]: LICENSE
58+
59+
[author]: http://wooorm.com
60+
61+
[algo]: http://tartarus.org/martin/PorterStemmer/
62+
63+
[cli]: https://github.com/wooorm/stmr
64+
65+
[lib]: https://github.com/wooorm/stemmer
66+
67+
[clib]: https://github.com/clibs/clib

0 commit comments

Comments
 (0)