doc: update document.
This commit is contained in:
		@@ -36,7 +36,7 @@ double doubleNum = 99.999;
 | 
			
		||||
decimal decimalNum = 99.9999M;
 | 
			
		||||
char letter = 'D';
 | 
			
		||||
bool @bool = true;
 | 
			
		||||
string site = "quickref.me";
 | 
			
		||||
string site = "jaywcjlove.github.io";
 | 
			
		||||
var num = 999;
 | 
			
		||||
var str = "999";
 | 
			
		||||
var bo = false;
 | 
			
		||||
 
 | 
			
		||||
@@ -855,7 +855,7 @@ meta 标记描述 HTML 文档中的元数据。它解释了关于 HTML 的其他
 | 
			
		||||
<meta property="og:type" content="website">
 | 
			
		||||
<meta property="og:locale" content="en_CA">
 | 
			
		||||
<meta property="og:title" content="HTML cheatsheet">
 | 
			
		||||
<meta property="og:url" content="https://quickref.me/html">
 | 
			
		||||
<meta property="og:url" content="https://jaywcjlove.github.io/">
 | 
			
		||||
<meta property="og:image" content="https://xxx.com/image.jpg">
 | 
			
		||||
<meta property="og:site_name" content="Name of your website">
 | 
			
		||||
<meta property="og:description" content="Description of this page">
 | 
			
		||||
@@ -869,7 +869,7 @@ Facebook、Instagram、Pinterest、LinkedIn 等使用。
 | 
			
		||||
<meta name="twitter:card" content="summary">
 | 
			
		||||
<meta name="twitter:site" content="@QuickRef_ME">
 | 
			
		||||
<meta name="twitter:title" content="HTML cheatsheet">
 | 
			
		||||
<meta name="twitter:url" content="https://quickref.me/html">
 | 
			
		||||
<meta name="twitter:url" content="https://jaywcjlove.github.io/">
 | 
			
		||||
<meta name="twitter:description" content="Description of this page">
 | 
			
		||||
<meta name="twitter:image" content="https://xxx.com/image.jpg">
 | 
			
		||||
```
 | 
			
		||||
 
 | 
			
		||||
@@ -35,7 +35,7 @@ int num = 5;
 | 
			
		||||
float floatNum = 5.99f;
 | 
			
		||||
char letter = 'D';
 | 
			
		||||
boolean bool = true;
 | 
			
		||||
String site = "quickref.me";
 | 
			
		||||
String site = "jaywcjlove.github.io";
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### 原始数据类型
 | 
			
		||||
 
 | 
			
		||||
@@ -64,8 +64,8 @@ JSON 备忘清单
 | 
			
		||||
 | 
			
		||||
```json
 | 
			
		||||
{
 | 
			
		||||
  "url": "https://quickref.me",
 | 
			
		||||
  "msg" : "Hi,\n\"QuickRef.ME\"",
 | 
			
		||||
  "url": "https://jaywcjlove.github.io",
 | 
			
		||||
  "msg" : "Hi,\n\"Quick Reference\"",
 | 
			
		||||
  "intro": "Share quick reference and cheat sheet for developers."
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 
 | 
			
		||||
@@ -11,7 +11,7 @@ PHP 备忘清单
 | 
			
		||||
```php
 | 
			
		||||
<?php // 以 PHP 开放标签开头
 | 
			
		||||
echo "Hello World\n";
 | 
			
		||||
print("Hello quickref.me");
 | 
			
		||||
print("Hello jaywcjlove.github.io");
 | 
			
		||||
?>
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
@@ -38,7 +38,7 @@ $str2 = 'Fine, thanks';
 | 
			
		||||
### 字符串 Strings
 | 
			
		||||
 | 
			
		||||
```php
 | 
			
		||||
$url = "quickref.me";
 | 
			
		||||
$url = "jaywcjlove.github.io";
 | 
			
		||||
echo "I'm learning PHP at $url";
 | 
			
		||||
// 连接字符串
 | 
			
		||||
echo "I'm learning PHP at " . $url;
 | 
			
		||||
@@ -938,7 +938,7 @@ if (is_null($repo)) {
 | 
			
		||||
### 常用表达
 | 
			
		||||
 | 
			
		||||
```php
 | 
			
		||||
$str = "Visit Quickref.me";
 | 
			
		||||
$str = "Visit jaywcjlove.github.io";
 | 
			
		||||
echo preg_match("/qu/i", $str); # => 1
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,7 @@ Python 备忘单是 [Python 3](https://www.python.org/) 编程语言的单页参
 | 
			
		||||
 | 
			
		||||
- [Python](https://www.python.org/)  _(python.org)_
 | 
			
		||||
- [Learn X in Y minutes](https://learnxinyminutes.com/docs/python/) _(learnxinyminutes.com)_
 | 
			
		||||
- [Regex in python](./regex.md#python-中的正则表达式) _(quickref.me)_
 | 
			
		||||
- [Regex in python](./regex.md#python-中的正则表达式) _(jaywcjlove.github.io)_
 | 
			
		||||
 | 
			
		||||
### Hello World
 | 
			
		||||
 | 
			
		||||
@@ -144,9 +144,9 @@ message += "Part 2."
 | 
			
		||||
### f-字符串(Python 3.6+)
 | 
			
		||||
 | 
			
		||||
```python
 | 
			
		||||
>>> website = 'Quickref.ME'
 | 
			
		||||
>>> website = 'Quick Reference'
 | 
			
		||||
>>> f"Hello, {website}"
 | 
			
		||||
"Hello, Quickref.ME"
 | 
			
		||||
"Hello, Quick Reference"
 | 
			
		||||
>>> num = 10
 | 
			
		||||
>>> f'{num} + 10 = {num + 10}'
 | 
			
		||||
'10 + 10 = 20'
 | 
			
		||||
@@ -1238,4 +1238,4 @@ finally:                 # 在所有情况下执行
 | 
			
		||||
 | 
			
		||||
- [Python](https://www.python.org/)  _(python.org)_
 | 
			
		||||
- [Learn X in Y minutes](https://learnxinyminutes.com/docs/python/) _(learnxinyminutes.com)_
 | 
			
		||||
- [Regex in python](./regex.md#python-中的正则表达式) _(quickref.me)_
 | 
			
		||||
- [Regex in python](./regex.md#python-中的正则表达式) _(jaywcjlove.github.io)_
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user