dead links changed and version bumped

pull/23/head
ericchiang 10 years ago
parent 40f7f533c4
commit c1e6f93da9

@ -22,14 +22,13 @@ Or if you can run `go get` to download via git.
## Quick start ## Quick start
```bash ```bash
$ curl http://www.pro-football-reference.com/years/2013/games.htm $ curl -s https://news.ycombinator.com/
``` ```
Ew, HTML. Let's run that through some pup selectors: Ew, HTML. Let's run that through some pup selectors:
```bash ```bash
$ curl http://www.pro-football-reference.com/years/2013/games.htm | \ $ curl -s https://news.ycombinator.com/ | pup 'td.title a[href^=http] attr{href}'
pup table#games 'a[href*=boxscores]' attr{href}
``` ```
## Basic Usage ## Basic Usage
@ -159,25 +158,6 @@ $ pup < robots.html a slice{:3}
</a> </a>
``` ```
The `by` indexer works particularly well with tables.
```bash
$ curl -s http://www.pro-football-reference.com/boxscores/201402020den.htm | \
pup table#linescore td slice{::6}
<td align="left">
<a href="/teams/sea/2013.htm">
Seattle Seahawks
</a>
(13-3-0)
</td>
<td align="left">
<a href="/teams/den/2013.htm">
Denver Broncos
</a>
(13-3-0)
</td>
```
## Implemented Selectors ## Implemented Selectors
For further examples of these selectors head over to [w3schools]( For further examples of these selectors head over to [w3schools](

@ -12,7 +12,7 @@ import (
"strings" "strings"
) )
const VERSION string = "0.2.2" const VERSION string = "0.3.0"
var ( var (
// Flags // Flags

Loading…
Cancel
Save