Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
New update
Browse files Browse the repository at this point in the history
  • Loading branch information
kuriv committed Feb 28, 2020
1 parent 4d18d5d commit 50636db
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 53 deletions.
52 changes: 26 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,133 +23,133 @@ npm install @kuriv/initialize
Declare the character encoding used by the document.

```html
<meta charset="utf-8"/>
<meta charset="utf-8">
```

Enable DNS pre-resolving.

```html
<meta http-equiv="x-dns-prefetch-control" content="on"/>
<meta http-equiv="x-dns-prefetch-control" content="on">
```

DNS pre-resolved domain name.

```html
<link rel="dns-prefetch" href=""/>
<link rel="dns-prefetch" href="">
```

Give priority to the latest version of IE and Chrome.

```html
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
```

Set the browser to render the page with the webkit kernel.

```html
<meta name="renderer" content="webkit"/>
<meta name="renderer" content="webkit">
```

Add the authoritative link of the page.

```html
<link rel="canonical" href=""/>
<link rel="canonical" href="">
```

Add the viewport to mobile device.

```html
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
```

Ignore phone numbers and email addresses on the page.

```html
<meta name="format-detection" content="telephone=no, email=no"/>
<meta name="format-detection" content="telephone=no, email=no">
```

Add the Windows tile name.

```html
<meta name="application-name" content=""/>
<meta name="application-name" content="">
```

Add the Windows tile color.

```html
<meta name="msapplication-TileColor" content=""/>
<meta name="msapplication-TileColor" content="">
```

Add the Windows tile image.

```html
<meta name="msapplication-TileImage" content=""/>
<meta name="msapplication-TileImage" content="">
```

Display the download banner of the app on the page.

```html
<meta name="apple-itunes-app" content="app-id=, affiliate-data=, app-argument="/>
<meta name="apple-itunes-app" content="app-id=, affiliate-data=, app-argument=">
```

Set the title added to the home screen.

```html
<meta name="apple-mobile-web-app-title" content=""/>
<meta name="apple-mobile-web-app-title" content="">
```

Add the Standard iPhone icons, 57x57 pixels.

```html
<link rel="apple-touch-icon-precomposed" sizes="57x57" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="">
```

Add the Standard iPad icons, 72x72 pixels.

```html
<link rel="apple-touch-icon-precomposed" sizes="72x72" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="">
```

Add the Retina iPhone icons, 114x114 pixels.

```html
<link rel="apple-touch-icon-precomposed" sizes="114x114" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="">
```

Add the Retina iPad icons, 144x144 pixels.

```html
<link rel="apple-touch-icon-precomposed" sizes="144x144" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="">
```

Remove default toolbar and menu bar.

```html
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-capable" content="yes">
```

Set the background color of the status bar.

```html
<meta name="apple-mobile-web-app-status-bar-style" content="default"/>
<meta name="apple-mobile-web-app-status-bar-style" content="default">
```

Add the theme color to browser's toolbar. (Chrome for Android only)

```html
<meta name="theme-color" content=""/>
<meta name="theme-color" content="">
```

Display the search function on the browser's quick search tool.

```html
<link rel="search" type="application/opensearchdescription+xml" title="" href=""/>
<link rel="search" type="application/opensearchdescription+xml" title="" href="">
```

Add the author of the page.

```html
<meta name="author" content="kuriv"/>
<meta name="author" content="kuriv">
```

Add the title of the page.
Expand All @@ -161,19 +161,19 @@ Add the title of the page.
Add the keywords of the page.

```html
<meta name="keywords" content=""/>
<meta name="keywords" content="">
```

Add the description of the page.

```html
<meta name="description" content=""/>
<meta name="description" content="">
```

Add the icon in front of the page title.

```html
<link rel="shortcut icon" type="image/x-icon" href=""/>
<link rel="shortcut icon" type="image/x-icon" href="">
```

## License
Expand All @@ -184,7 +184,7 @@ Add the icon in front of the page title.

[build-image]: https://img.shields.io/badge/build-passing-brightgreen "build"
[build-url]: https://github.com/kuriv/initialize "build"
[version-image]: https://img.shields.io/badge/version-v1.0.2-blue "version"
[version-image]: https://img.shields.io/badge/version-v1.0.3-blue "version"
[version-url]: https://github.com/kuriv/initialize "version"
[license-image]: https://img.shields.io/badge/license-MIT-green "license"
[license-url]: https://opensource.org/licenses/MIT "license"
50 changes: 25 additions & 25 deletions initialize.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8"/>
<meta http-equiv="x-dns-prefetch-control" content="on"/>
<link rel="dns-prefetch" href=""/>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta name="renderer" content="webkit"/>
<link rel="canonical" href=""/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="format-detection" content="telephone=no, email=no"/>
<meta name="application-name" content=""/>
<meta name="msapplication-TileColor" content=""/>
<meta name="msapplication-TileImage" content=""/>
<meta name="apple-itunes-app" content="app-id=, affiliate-data=, app-argument="/>
<meta name="apple-mobile-web-app-title" content=""/>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href=""/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href=""/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="default"/>
<meta name="theme-color" content=""/>
<link rel="search" type="application/opensearchdescription+xml" title="" href=""/>
<meta name="author" content="kuriv"/>
<meta charset="utf-8">
<meta http-equiv="x-dns-prefetch-control" content="on">
<link rel="dns-prefetch" href="">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="renderer" content="webkit">
<link rel="canonical" href="">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="format-detection" content="telephone=no, email=no">
<meta name="application-name" content="">
<meta name="msapplication-TileColor" content="">
<meta name="msapplication-TileImage" content="">
<meta name="apple-itunes-app" content="app-id=, affiliate-data=, app-argument=">
<meta name="apple-mobile-web-app-title" content="">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="theme-color" content="">
<link rel="search" type="application/opensearchdescription+xml" title="" href="">
<meta name="author" content="kuriv">
<title></title>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="shortcut icon" type="image/x-icon" href=""/>
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="shortcut icon" type="image/x-icon" href="">
</head>
</html>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kuriv/initialize",
"version": "1.0.2",
"version": "1.0.3",
"description": "Build your meta-information in seconds.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 50636db

Please # to comment.