Skip to content

Commit e5983ce

Browse files
committed
Removing all "</img>" tags
1 parent 932a622 commit e5983ce

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

generalizingD3/exampleViewer/example-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="centered">
2-
<img src="logo.png" width="400"></img>
2+
<img src="logo.png" width="400">
33
<h1 class="page-title">Generalizing D3 with Model.js</h1>
44
<h2>by <a href="http://curran.github.io/portfolio/">Curran Kelleher</a></h2>
55
</div>

introToAngular/exampleViewer/example-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="centered">
2-
<img src="angularjs-logo.png" width="400"></img>
2+
<img src="angularjs-logo.png" width="400">
33
<h1 class="page-title">50 Angular.js Examples</h1>
44
<h2>by <a href="http://curran.github.io/portfolio/">Curran Kelleher</a></h2>
55
</div>

introToAngular/examples/snapshots/snapshot28/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<tr ng-repeat="country in countries">
2323
<td>{{country.name}}</td>
2424
<td>{{country.population}}</td>
25-
<td><img ng-src="{{country.flagURL}}" width="100"></img></td>
25+
<td><img ng-src="{{country.flagURL}}" width="100"></td>
2626
</tr>
2727
</table>
2828
</body>

introToAngular/examples/snapshots/snapshot29/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<tr ng-repeat="country in countries">
2424
<td>{{country.name}}</td>
2525
<td>{{country.population}}</td>
26-
<td><img ng-src="{{country.flagURL}}" width="100"></img></td>
26+
<td><img ng-src="{{country.flagURL}}" width="100"></td>
2727
<td>{{country.capital}}</td>
2828
</tr>
2929
</table>

introToAngular/examples/snapshots/snapshot30/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<tr ng-repeat="country in countries">
2525
<td>{{country.name}}</td>
2626
<td>{{country.population}}</td>
27-
<td><img ng-src="{{country.flagURL}}" width="100"></img></td>
27+
<td><img ng-src="{{country.flagURL}}" width="100"></td>
2828
<td>{{country.capital}}</td>
2929
<td>{{country.gdp}}</td>
3030
</tr>

introToAngular/examples/snapshots/snapshot31/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<tr ng-repeat="country in countries">
2525
<td>{{country.name}}</td>
2626
<td>{{country.population}}</td>
27-
<td><img ng-src="{{country.flagURL}}" width="100"></img></td>
27+
<td><img ng-src="{{country.flagURL}}" width="100"></td>
2828
<td>{{country.capital}}</td>
2929
<td>{{country.gdp | currency }}</td>
3030
</tr>

introToAngular/examples/snapshots/snapshot32/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<tr ng-repeat="country in countries">
2525
<td>{{country.name}}</td>
2626
<td>{{country.population | number }}</td>
27-
<td><img ng-src="{{country.flagURL}}" width="100"></img></td>
27+
<td><img ng-src="{{country.flagURL}}" width="100"></td>
2828
<td>{{country.capital}}</td>
2929
<td>{{country.gdp | currency }}</td>
3030
</tr>

introToAngular/examples/snapshots/snapshot39/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot40/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot41/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot42/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot43/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot44/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot45/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot46/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot47/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>

introToAngular/examples/snapshots/snapshot48/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<img ng-src="{{flagURL}}" width="20"></img>
1+
<img ng-src="{{flagURL}}" width="20">
22
<a href="#/{{country.id}}">{{country.name}}</a>

introToAngular/examples/snapshots/snapshot49/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<img ng-src="{{flagURL}}" width="20"></img>
1+
<img ng-src="{{flagURL}}" width="20">
22
<a href="#/{{country.id}}">{{country.name}}</a>

introToAngular/examples/snapshots/snapshot50/country-detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>{{country.name}}</h1>
22
<ul>
3-
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></img></li>
3+
<li>Flag: <img ng-src="{{country.flagURL}}" width="100"></li>
44
<li>Population: {{country.population | number }}</li>
55
<li>Capital: {{country.capital}}</li>
66
<li>GDP: {{country.gdp | currency }}</li>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<img ng-src="{{flagURL}}" width="20"></img>
1+
<img ng-src="{{flagURL}}" width="20">
22
<a href="#/{{country.id}}">{{country.name}}</a>

introToKnockout/exampleViewer/example-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="centered">
2-
<img src="logo.png"></img>
2+
<img src="logo.png">
33
<h1 class="page-title">Knockout.js Examples</h1>
44
<h2>by <a href="http://curran.github.io/portfolio/">Curran Kelleher</a></h2>
55
</div>

mathPatterns/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Here's the code from the tutorial:
99

1010
Here's a more elaborate example demonstrating where you can take these concepts:
1111

12-
* <img src="circularPatterns/mathPatterns.png"></img>
12+
* <img src="circularPatterns/mathPatterns.png">
1313
([run full screen](http://jsbin.com/urecex/36), [edit in JSBin](http://jsbin.com/urecex/31/edit), [in GitHub](circularPatterns))
1414

1515
Content of the tutorial:

reactiveDataVis/examples/viewer/example-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="centered">
2-
<img src="logo.png"></img>
2+
<img src="logo.png">
33
<h1 class="page-title">Reactive Data Visualization</h1>
44
<h2>with <a href="http://d3js.org">D3</a> and <a href="https://github.com/curran/model">Model.js</a></h2>
55
<h2>by <a href="http://curran.github.io/portfolio/">Curran Kelleher</a> July 2014</h2>

reactiveDataVis/presentation/slides/bertin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<footer>Enrico Bertini in [The hidden legacy of Bertin and “The Semiology of Graphics”](http://fellinlovewithdata.com/guides/the-hidden-legacy-of-bertin-and-the-semiology-of-graphics)</footer>
66
</blockquote>
77

8-
<center><img height="500" src="images/bertin.gif"></img></center>
8+
<center><img height="500" src="images/bertin.gif"></center>
99

1010
From Jaque Bertin's book: [Semiology of Graphics](http://www.amazon.com/Semiology-Graphics-Diagrams-Networks-Maps/dp/1589482611)
1111

reactiveDataVis/presentation/slides/mackinlay.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Mackinlay's Theory
2-
<center><img height="500" src="images/mackinlay.png"></img></center>
2+
<center><img height="500" src="images/mackinlay.png"></center>
33

44
from Jock Mackinlay's 1986 paper:
55

0 commit comments

Comments
 (0)