GHC 2020-05-06

3 comments.

, https://git.io/JfZ4a in jarun/googler
Pulling examples to the top of README?
======================================

Today’s issue #335 got me thinking, the README is huge right now, and whenever I see an overwhelming README that’s almost like Bash Reference Manual on one single HTML page, I want to see examples. The demo screencast is a start but not everyone is into watching “videos”.

What about pulling the examples section up? I’m thinking between the intro and the TOC (so it becomes a TOC for detailed, technical documentation).

Could also use an example showcasing search phrases being split into arbitrary command line arguments.

, https://git.io/JfZl2 in jarun/googler
For clarity: all non-option arguments are concatenated to form the query. Adding a leading space makes sure ` -site:pinterest.com -site:etsy.com` is treated as a non-argument without resorting to the `--` delimiter, so that you can still use options afterwards.

, https://git.io/JfZla in jarun/googler
```sh
alias googler='googler " -site:pinterest.com -site:etsy.com"'
```