Skip to content

Commit 574961c

Browse files
author
Matthew McCullough
committed
Merge pull request #48 from randomecho/journey-into-html-entity-island
Chevrons in Git outputs disappear if not encoded
2 parents 292167e + 300f517 commit 574961c

File tree

4 files changed

+31
-31
lines changed

4 files changed

+31
-31
lines changed

basic/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,14 @@ <h2>
162162
# Initial commit
163163
#
164164
# Changes to be committed:
165-
# (use "git rm --cached <file>..." to unstage)
165+
# (use "git rm --cached &lt;file>..." to unstage)
166166
#
167167
# <span class="green">new file: README</span>
168168
# <span class="green">new file: hello.rb</span>
169169
#
170170
# Changed but not updated:
171-
# (use "git add <file>..." to update what will be committed)
172-
# (use "git checkout -- <file>..." to discard changes in working directory)
171+
# (use "git add &lt;file>..." to update what will be committed)
172+
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
173173
#
174174
# <span class="red">modified: README</span>
175175
#
@@ -474,7 +474,7 @@ <h2>
474474
# with '#' will be ignored, and an empty message aborts the commit.
475475
# On branch master
476476
# Changes to be committed:
477-
# (use "git reset HEAD <file>..." to unstage)
477+
# (use "git reset HEAD &lt;file>..." to unstage)
478478
#
479479
# modified: hello.rb
480480
#
@@ -514,7 +514,7 @@ <h2>
514514
# with '#' will be ignored, and an empty message aborts the commit.
515515
# On branch master
516516
# Changes to be committed:
517-
# (use "git reset HEAD <file>..." to unstage)
517+
# (use "git reset HEAD &lt;file>..." to unstage)
518518
#
519519
# modified: hello.rb
520520
#
@@ -558,8 +558,8 @@ <h4>
558558
<b>$ git commit -m 'changes to hello file'</b>
559559
# On branch master
560560
# Changed but not updated:
561-
# (use "git add <file>..." to update what will be committed)
562-
# (use "git checkout -- <file>..." to discard changes in working directory)
561+
# (use "git add &lt;file>..." to update what will be committed)
562+
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
563563
#
564564
# modified: hello.rb
565565
#
@@ -680,7 +680,7 @@ <h4>
680680
<b>$ git status</b>
681681
# On branch master
682682
# Changes to be committed:
683-
# <span class="hl">(use "git reset HEAD <file>..." to unstage)</span>
683+
# <span class="hl">(use "git reset HEAD &lt;file>..." to unstage)</span>
684684
#
685685
# <span class="green">modified: README</span>
686686
# <span class="green">modified: hello.rb</span>
@@ -735,13 +735,13 @@ <h4>
735735
<b>$ git status</b>
736736
# On branch master
737737
# Changes to be committed:
738-
# (use "git reset HEAD <file>..." to unstage)
738+
# (use "git reset HEAD &lt;file>..." to unstage)
739739
#
740740
# <span class="green">modified: README</span>
741741
#
742742
# Changes not staged for commit:
743-
# (use "git add <file>..." to update what will be committed)
744-
# (use "git checkout -- <file>..." to discard changes in working directory)
743+
# (use "git add &lt;file>..." to update what will be committed)
744+
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
745745
#
746746
# <span class="red">modified: README</span>
747747
#

inspect/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ <h4>
123123
preferred editor for use in perforce. Since we are displaying a
124124
perforce changelog to the user we should use it when it is defined.
125125

126-
Signed-off-by: Shawn Bohrer <shawn[email protected]>
127-
Signed-off-by: Simon Hausmann <simon@lst.de>
126+
Signed-off-by: Shawn Bohrer &lt;[email protected]>
127+
Signed-off-by: Simon Hausmann &lt;[email protected]>
128128
</pre>
129129

130130
<p>
@@ -229,7 +229,7 @@ <h4>
229229
<pre>
230230
<b>$ git log -p --no-merges -2</b>
231231
<span class="yellow">commit 594f90bdee4faf063ad07a4a6f503fdead3ef606</span>
232-
Author: Scott Chacon [email protected]
232+
Author: Scott Chacon &lt;[email protected]>
233233
Date: Fri Jun 4 15:46:55 2010 +0200
234234

235235
reverted to old class name
@@ -250,7 +250,7 @@ <h4>
250250
<span class="green">+HelloWorld.hello</span>
251251

252252
<span class="yellow">commit 3cbb6aae5c0cbd711c098e113ae436801371c95e</span>
253-
Author: Scott Chacon [email protected]
253+
Author: Scott Chacon &lt;[email protected]>
254254
Date: Fri Jun 4 12:58:53 2010 +0200
255255

256256
fixed readme title differently
@@ -282,7 +282,7 @@ <h4>
282282
<pre>
283283
<b>$ git log --stat --no-merges -2</b>
284284
<span class="yellow">commit 594f90bdee4faf063ad07a4a6f503fdead3ef606</span>
285-
Author: Scott Chacon [email protected]
285+
Author: Scott Chacon &lt;[email protected]>
286286
Date: Fri Jun 4 15:46:55 2010 +0200
287287

288288
reverted to old class name
@@ -291,7 +291,7 @@ <h4>
291291
1 files changed, 2 insertions(+), 2 deletions(-)
292292

293293
<span class="yellow">commit 3cbb6aae5c0cbd711c098e113ae436801371c95e</span>
294-
Author: Scott Chacon [email protected]
294+
Author: Scott Chacon &lt;[email protected]>
295295
Date: Fri Jun 4 12:58:53 2010 +0200
296296

297297
fixed readme title differently

zh/basic/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,14 +134,14 @@ <h2>
134134
# Initial commit
135135
#
136136
# Changes to be committed:
137-
# (use "git rm --cached <file>..." to unstage)
137+
# (use "git rm --cached &lt;file>..." to unstage)
138138
#
139139
# <span class="green">new file: README</span>
140140
# <span class="green">new file: hello.rb</span>
141141
#
142142
# Changed but not updated:
143-
# (use "git add <file>..." to update what will be committed)
144-
# (use "git checkout -- <file>..." to discard changes in working directory)
143+
# (use "git add &lt;file>..." to update what will be committed)
144+
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
145145
#
146146
# <span class="red">modified: README</span>
147147
#
@@ -415,7 +415,7 @@ <h2>
415415
# with '#' will be ignored, and an empty message aborts the commit.
416416
# On branch master
417417
# Changes to be committed:
418-
# (use "git reset HEAD <file>..." to unstage)
418+
# (use "git reset HEAD &lt;file>..." to unstage)
419419
#
420420
# modified: hello.rb
421421
#
@@ -449,7 +449,7 @@ <h2>
449449
# with '#' will be ignored, and an empty message aborts the commit.
450450
# On branch master
451451
# Changes to be committed:
452-
# (use "git reset HEAD <file>..." to unstage)
452+
# (use "git reset HEAD &lt;file>..." to unstage)
453453
#
454454
# modified: hello.rb
455455
#
@@ -485,8 +485,8 @@ <h4>
485485
<b>$ git commit -m 'changes to hello file'</b>
486486
# On branch master
487487
# Changed but not updated:
488-
# (use "git add <file>..." to update what will be committed)
489-
# (use "git checkout -- <file>..." to discard changes in working directory)
488+
# (use "git add &lt;file>..." to update what will be committed)
489+
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
490490
#
491491
# modified: hello.rb
492492
#
@@ -578,7 +578,7 @@ <h2>
578578
<b>$ git status</b>
579579
# On branch master
580580
# Changes to be committed:
581-
# <span class="hl">(use "git reset HEAD <file>..." to unstage)</span>
581+
# <span class="hl">(use "git reset HEAD &lt;file>..." to unstage)</span>
582582
#
583583
# <span class="green">modified: README</span>
584584
# <span class="green">modified: hello.rb</span>

zh/inspect/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ <h4>
110110
preferred editor for use in perforce. Since we are displaying a
111111
perforce changelog to the user we should use it when it is defined.
112112

113-
Signed-off-by: Shawn Bohrer <shawn[email protected]>
114-
Signed-off-by: Simon Hausmann <simon@lst.de>
113+
Signed-off-by: Shawn Bohrer &lt;[email protected]>
114+
Signed-off-by: Simon Hausmann &lt;[email protected]>
115115
</pre>
116116

117117
<p>
@@ -210,7 +210,7 @@ <h4>
210210
<pre>
211211
<b>$ git log -p --no-merges -2</b>
212212
<span class="yellow">commit 594f90bdee4faf063ad07a4a6f503fdead3ef606</span>
213-
Author: Scott Chacon [email protected]
213+
Author: Scott Chacon &lt;[email protected]>
214214
Date: Fri Jun 4 15:46:55 2010 +0200
215215

216216
reverted to old class name
@@ -231,7 +231,7 @@ <h4>
231231
<span class="green">+HelloWorld.hello</span>
232232

233233
<span class="yellow">commit 3cbb6aae5c0cbd711c098e113ae436801371c95e</span>
234-
Author: Scott Chacon [email protected]
234+
Author: Scott Chacon &lt;[email protected]>
235235
Date: Fri Jun 4 12:58:53 2010 +0200
236236

237237
fixed readme title differently
@@ -265,7 +265,7 @@ <h4>
265265
<pre>
266266
<b>$ git log --stat --no-merges -2</b>
267267
<span class="yellow">commit 594f90bdee4faf063ad07a4a6f503fdead3ef606</span>
268-
Author: Scott Chacon [email protected]
268+
Author: Scott Chacon &lt;[email protected]>
269269
Date: Fri Jun 4 15:46:55 2010 +0200
270270

271271
reverted to old class name
@@ -274,7 +274,7 @@ <h4>
274274
1 files changed, 2 insertions(+), 2 deletions(-)
275275

276276
<span class="yellow">commit 3cbb6aae5c0cbd711c098e113ae436801371c95e</span>
277-
Author: Scott Chacon [email protected]
277+
Author: Scott Chacon &lt;[email protected]>
278278
Date: Fri Jun 4 12:58:53 2010 +0200
279279

280280
fixed readme title differently

0 commit comments

Comments
 (0)