Skip to content

Commit 1c12774

Browse files
committed
docs: remove unicode zero length character
1 parent 4c85d16 commit 1c12774

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,74 +8,74 @@ upload content to https://gist.github.com/.
88

99
## Installation
1010

11-
If you have ruby installed:
11+
If you have ruby installed:
1212

1313
gem install gist
1414

15-
If you're using Bundler:
15+
If you're using Bundler:
1616

1717
source :rubygems
1818
gem 'gist'
1919

20-
For OS X, gist lives in Homebrew
20+
For OS X, gist lives in Homebrew
2121

2222
brew install gist
2323

24-
For FreeBSD, gist lives in ports
24+
For FreeBSD, gist lives in ports
2525

2626
pkg install gist
2727

28-
<200c>For Ubuntu/Debian
28+
For Ubuntu/Debian
2929

3030
apt install gist
3131

3232
Note: Debian renames the binary to `gist-paste` to avoid a name conflict.
3333

3434
## Command
3535

36-
To upload the contents of `a.rb` just:
36+
To upload the contents of `a.rb` just:
3737

3838
gist a.rb
3939

40-
Upload multiple files:
40+
Upload multiple files:
4141

4242
gist a b c
4343
gist *.rb
4444

45-
By default it reads from STDIN, and you can set a filename with `-f`.
45+
By default it reads from STDIN, and you can set a filename with `-f`.
4646

4747
gist -f test.rb <a.rb
4848

49-
Alternatively, you can just paste from the clipboard:
49+
Alternatively, you can just paste from the clipboard:
5050

5151
gist -P
5252

53-
Use `-p` to make the gist private:
53+
Use `-p` to make the gist private:
5454

5555
gist -p a.rb
5656

57-
Use `-d` to add a description:
57+
Use `-d` to add a description:
5858

5959
gist -d "Random rbx bug" a.rb
6060

61-
You can update existing gists with `-u`:
61+
You can update existing gists with `-u`:
6262

6363
gist -u GIST_ID FILE_NAME
6464
gist -u 42f2c239d2eb57299408 test.txt
6565

66-
If you'd like to copy the resulting URL to your clipboard, use `-c`.
66+
If you'd like to copy the resulting URL to your clipboard, use `-c`.
6767

6868
gist -c <a.rb
6969

70-
If you'd like to copy the resulting embeddable URL to your clipboard, use `-e`.
70+
If you'd like to copy the resulting embeddable URL to your clipboard, use `-e`.
7171

7272
gist -e <a.rb
7373

74-
And you can just ask gist to open a browser window directly with `-o`.
74+
And you can just ask gist to open a browser window directly with `-o`.
7575

7676
gist -o <a.rb
7777

78-
To list (public gists or all gists for authed user) gists for user
78+
To list (public gists or all gists for authed user) gists for user
7979

8080
gist -l : all gists for authed user
8181
gist -l defunkt : list defunkt's public gists
@@ -85,7 +85,7 @@ To read a gist and print it to STDOUT
8585
gist -r GIST_ID
8686
gist -r 374130
8787

88-
See `gist --help` for more detail.
88+
See `gist --help` for more detail.
8989

9090
## Login
9191

@@ -104,7 +104,7 @@ This flow allows you to obtain a token by logging into GitHub in the browser and
104104
and enter code: XXXX-XXXX
105105
Success! https://github.com/settings/connections/applications/4f7ec0d4eab38e74384e
106106

107-
The returned access_token is stored in `~/.gist` and used for all future gisting. If you need to you can revoke access from https://github.com/settings/connections/applications/4f7ec0d4eab38e74384e.
107+
The returned `access_token` is stored in `~/.gist` and used for all future gisting. If you need to you can revoke access from https://github.com/settings/connections/applications/4f7ec0d4eab38e74384e.
108108

109109
### The username-password flow
110110

@@ -148,7 +148,7 @@ Once you've done this and restarted your terminal (or run `source ~/.bashrc`), g
148148
automatically use GitHub Enterprise instead of the public github.com
149149

150150
Your token for GitHub Enterprise will be stored in `.gist.<protocol>.<server.name>[.<port>]` (e.g.
151-
`~/.gist.http.github.internal.example.com` for the GITHUB_URL example above) instead of `~/.gist`.
151+
`~/.gist.http.github.internal.example.com` for the `GITHUB_URL` example above) instead of `~/.gist`.
152152

153153
If you have multiple servers or use Enterprise and public GitHub often, you can work around this by creating scripts
154154
that set the env var and then run `gist`. Keep in mind that to use the public GitHub you must unset the env var. Just
@@ -165,7 +165,7 @@ Error: Bad credentials
165165

166166
# Library
167167

168-
You can also use Gist as a library from inside your ruby code:
168+
You can also use Gist as a library from inside your ruby code:
169169

170170
Gist.gist("Look.at(:my => 'awesome').code")
171171

@@ -181,11 +181,11 @@ If you need more advanced features you can also pass:
181181

182182
NOTE: The access_token must have the `gist` scope and may also require the `user:email` scope.
183183

184-
If you want to upload multiple files in the same gist, you can:
184+
If you want to upload multiple files in the same gist, you can:
185185

186186
Gist.multi_gist("a.rb" => "Foo.bar", "a.py" => "Foo.bar")
187187

188-
If you'd rather use gist's builtin access_token, then you can force the user
188+
If you'd rather use gist's builtin access_token, then you can force the user
189189
to obtain one by calling:
190190

191191
Gist.login!
@@ -195,12 +195,12 @@ in `~/.gist`, where it can later be read by `Gist.gist`
195195

196196
## Configuration
197197

198-
If you'd like `-o` or `-c` to be the default when you use the gist executable, add an
198+
If you'd like `-o` or `-c` to be the default when you use the gist executable, add an
199199
alias to your `~/.bashrc` (or equivalent). For example:
200200

201201
alias gist='gist -c'
202202

203-
If you'd prefer gist to open a different browser, then you can export the BROWSER
203+
If you'd prefer gist to open a different browser, then you can export the BROWSER
204204
environment variable:
205205

206206
export BROWSER=google-chrome

0 commit comments

Comments
 (0)