Skip to content

Commit

Permalink
Merge pull request #2264 from h5bp/v8-whitespace-no-closing-tags
Browse files Browse the repository at this point in the history
Consistent code formatting fix
  • Loading branch information
roblarsen authored Jun 4, 2020
2 parents 14f8653 + f9bfe5b commit e060848
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 26 deletions.
8 changes: 4 additions & 4 deletions dist/doc/html.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ preview image, URL, and [type](https://ogp.me/#types) (e.g., video, music,
website, article).

``` html
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
```

In addition to these four attributes there are many more attributes you can use
Expand Down
5 changes: 2 additions & 3 deletions dist/doc/misc.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ if you're interested. The fields we provide are as follows:
also define custom scripts for use with your application development. We
provide three custom scripts that work with Parcel to get you up and running
quickly with a bundler for your assets and a simple development server.

* `start` builds your site and starts a server
* `build` builds your `index.html` using Parcel
* `dev` serves your `index.html` with a simple development server

* `keywords` - an array of keywords used to discover your app in the npm
registry
* `author` - defines the author (via `name`, `email` and `url` fields) of a
Expand All @@ -201,4 +201,3 @@ if you're interested. The fields we provide are as follows:
* `devDependencies` - development dependencies for your package. In our case
it's a single dependency, Parcel, which we use to bundle files and run a
simple web server.

12 changes: 6 additions & 6 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />

<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">

<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
Expand All @@ -33,7 +33,7 @@
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set','transport','beacon'); ga('send', 'pageview')
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
Expand Down
8 changes: 4 additions & 4 deletions src/doc/html.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ preview image, URL, and [type](https://ogp.me/#types) (e.g., video, music,
website, article).

``` html
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
```

In addition to these four attributes there are many more attributes you can use
Expand Down
5 changes: 2 additions & 3 deletions src/doc/misc.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ if you're interested. The fields we provide are as follows:
also define custom scripts for use with your application development. We
provide three custom scripts that work with Parcel to get you up and running
quickly with a bundler for your assets and a simple development server.

* `start` builds your site and starts a server
* `build` builds your `index.html` using Parcel
* `dev` serves your `index.html` with a simple development server

* `keywords` - an array of keywords used to discover your app in the npm
registry
* `author` - defines the author (via `name`, `email` and `url` fields) of a
Expand All @@ -201,4 +201,3 @@ if you're interested. The fields we provide are as follows:
* `devDependencies` - development dependencies for your package. In our case
it's a single dependency, Parcel, which we use to bundle files and run a
simple web server.

12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />

<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">

<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
Expand All @@ -33,7 +33,7 @@
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set','transport','beacon'); ga('send', 'pageview')
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
Expand Down

0 comments on commit e060848

Please sign in to comment.