diff --git a/docs/awk.html b/docs/awk.html index 329605d6..a5112eef 100644 --- a/docs/awk.html +++ b/docs/awk.html @@ -1,6 +1,6 @@ -
chmod 命令代表“更改模式”
chmod
<div> -权限:<input type="text" id="num" placeholder="777" maxlength="3" style="padding: 0.3rem 0.3rem;" /> <input type="text" id="let" placeholder="rwxrwxrwx" maxlength="9" style="padding: 0.3rem 0.3rem;" /> -</div> -
+权限: + +
<!-- Chmod 生成器 JS 代码 --> -<script type="text/javascript"> - const reg_num = /^[0-7]{3}$/; // 一些正则表达式来检查 num 输入 - const reg_let = /^([r\-]{1}[w\-]{1}[x\-]{1}){3}$/; // 一些正则表达式来检查文本输入 - function checkBoxHandle() { - change_occured(true, false, false); - // get rid of bad input classes - document.getElementById('num').classList.remove('bad-input'); - document.getElementById('let').classList.remove('bad-input'); - } - window.addEventListener("DOMContentLoaded", function () { - // loop over all the check boxes - for (let i = 1; i < 10; i++) { - let checkBox = document.getElementById(`${i}`); - checkBox.addEventListener('change', function () { - change_occured(true, false, false); - - // get rid of bad input classes - document.getElementById('num').classList.remove('bad-input'); - - document.getElementById('let').classList.remove('bad-input'); - }); - } - // the octal input - let num_input = document.getElementById('num'); - let num_fn = function () { - // check for bad input - if (!reg_num.test(this.value)) { - this.classList.add('bad-input'); - } else { - this.classList.remove('bad-input'); - change_occured(false, true, false); - } - }; - num_input.addEventListener('change', num_fn); - num_input.addEventListener('keyup', num_fn); - // the let input - let let_input = document.getElementById('let'); - let let_fn = function () { - // check for bad input - if (!reg_let.test(this.value)) { - this.classList.add('bad-input'); - } else { - this.classList.remove('bad-input'); - change_occured(false, false, true); - } - }; - let_input.addEventListener('change',let_fn); - let_input.addEventListener('keyup',let_fn); - }); - /* SETUP - r-4-1 r-4-4 r-4-7 - w-2-2 w-2-5 w-2-8 - x-1-3 x-1-6 x-1-9 - */ - // define a function that runs when a change occures - function change_occured(caller_was_check, caller_was_num, caller_was_let) { - let num1 = 0, num2 = 0, num3 = 0; // these are the three numbers for the octal - let perm_string = ''; // holds the permision string ex. rw-x--r-- - if (caller_was_check) { - // loop over all the check boxes and get the permisions - for (let i = 1; i < 10; i++) { - let checkBox = document.getElementById(`${i}`); - if (checkBox.checked) { // if checked - let current_perm = check_to_octal_and_text(i); - perm_string += `${current_perm.perm_let}`; - if (i <= 3) { - num1 += current_perm.perm_num; - } else if (i <= 6) { - num2 += current_perm.perm_num; - } else { - num3 += current_perm.perm_num; - } - } else { // if not checked - perm_string += '-'; - } - } - // set the permision input text - document.getElementById('let').value = perm_string; - document.getElementById('num').value = `${num1}${num2}${num3}`; - } else if (caller_was_num) { - // get the individual numbers - let num_input_val = document.getElementById('num').value; - num1 = num_input_val.substring(0, 1); - num2 = num_input_val.substring(1, 2); - num3 = num_input_val.substring(2, 3); - // set the checkboxes and get the perm string - perm_string += octal_to_check_and_txt(num1, 0); //Owner - perm_string += octal_to_check_and_txt(num2, 1); //Owner - perm_string += octal_to_check_and_txt(num3, 2); //Owner - // set the permision input text - document.getElementById('let').value = perm_string; - } else if (caller_was_let) { - // get the text input - let perm_text = document.getElementById('let').value; - num1 = text_to_check_and_octal(perm_text.substring(0, 3), 0) - num2 = text_to_check_and_octal(perm_text.substring(3, 6), 3) - num3 = text_to_check_and_octal(perm_text.substring(6, 9), 6) - // set the octal value - document.getElementById('num').value = `${num1}${num2}${num3}`; - } - } - // define a function to converts the checkbox # to the respective permissions - // returns perm_num, perm_let - function check_to_octal_and_text(check_num) { - let perm_num = 0; - let perm_let = '-'; - switch (check_num) { - case 1: - case 4: - case 7: - perm_num = 4; - perm_let = 'r'; - break; - case 2: - case 5: - case 8: - perm_num = 2; - perm_let = 'w'; - break; - case 3: - case 6: - case 9: - perm_num = 1; - perm_let = 'x'; - break; - default: - perm_num = 0; - perm_let = '-'; - } - // return values - return { - perm_num, - perm_let - }; - } - /** - Takes a number 1-7 and which class it is in: - 0 = owner - 1 = Group - 2 = Public - Returns: perm text (ex. "rwx") and sets the appropriate checkboxes - */ - function octal_to_check_and_txt(octal_num, class_num) { - let perm_text = ''; - let offset = class_num * 3; - switch (octal_num) { - case '1': - document.getElementById(`${1 + offset}`).checked = false; - document.getElementById(`${2 + offset}`).checked = false; - document.getElementById(`${3 + offset}`).checked = true; - perm_text = '--x'; - break; - case '2': - document.getElementById(`${1 + offset}`).checked = false; - document.getElementById(`${2 + offset}`).checked = true; - document.getElementById(`${3 + offset}`).checked = false; - perm_text = '-w-'; - break; - case '3': - document.getElementById(`${1 + offset}`).checked = false; - document.getElementById(`${2 + offset}`).checked = true; - document.getElementById(`${3 + offset}`).checked = true; - perm_text = '-wx'; - break; - case '4': - document.getElementById(`${1 + offset}`).checked = true; - document.getElementById(`${2 + offset}`).checked = false; - document.getElementById(`${3 + offset}`).checked = false; - perm_text = 'r--'; - break; - case '5': - document.getElementById(`${1 + offset}`).checked = true; - document.getElementById(`${2 + offset}`).checked = false; - document.getElementById(`${3 + offset}`).checked = true; - perm_text = 'r-x'; - break; - case '6': - document.getElementById(`${1 + offset}`).checked = true; - document.getElementById(`${2 + offset}`).checked = true; - document.getElementById(`${3 + offset}`).checked = false; - perm_text = 'rw-'; - break; - case '7': - document.getElementById(`${1 + offset}`).checked = true; - document.getElementById(`${2 + offset}`).checked = true; - document.getElementById(`${3 + offset}`).checked = true; - perm_text = 'rwx'; - break; - default: - document.getElementById(`${1 + offset}`).checked = false; - document.getElementById(`${2 + offset}`).checked = false; - document.getElementById(`${3 + offset}`).checked = false; - perm_text = '---'; - } - return perm_text; - } - /** - Takes 3 letters (r, w, x, - ex. 'rw-') and an offset (0,3,6) - Returns the octal num and sets the appropriate checkboxes - */ - function text_to_check_and_octal(letters, offset) { - let perm_num = 0; // the octal number to return - // add up the oct num and set the check boxes - for (let i = 0; i < 3; i++) { - current_let = letters.substring(i, i + 1); - if (current_let == 'r') { - document.getElementById(`${i + 1 + offset}`).checked = true; - perm_num += 4; - } else if (current_let == 'w') { - document.getElementById(`${i + 1 + offset}`).checked = true; - perm_num += 2; - } else if (current_let == 'x') { - document.getElementById(`${i + 1 + offset}`).checked = true; - perm_num += 1; - } else { - document.getElementById(`${i + 1 + offset}`).checked = false; - } - } - return perm_num; - } -</script> -
+ +
CSS 功能丰富,不仅仅是布局页面
<link +<link href="./path/to/stylesheet/style.css" rel="stylesheet" type="text/css" @@ -61,7 +61,7 @@ </style>
<link href="./path/to/stylesheet/style.css" rel="stylesheet" type="text/css" @@ -61,7 +61,7 @@
<h2 style="text-align: center;"> +<h2 style="text-align: center;"> 居中文本 </h2> <p style="color: blue; font-size: 18px;"> @@ -1016,7 +1016,7 @@ ╰┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈╯
<h2 style="text-align: center;"> 居中文本 </h2> <p style="color: blue; font-size: 18px;"> @@ -1016,7 +1016,7 @@ ╰┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈╯
align-content: flex-start | flex-end | center | space-between | space-around | stretch; +align-content: flex-start | flex-end | center | space-between | space-around | stretch; @@ -1199,7 +1199,7 @@
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
.grid { +.grid { display: grid; grid-template-columns: 100px minmax(100px, 500px) 100px; } @@ -1329,7 +1329,7 @@ 有助于在不同的浏览器之间强制样式一致性,并为样式元素提供干净的盒子
.grid { display: grid; grid-template-columns: 100px minmax(100px, 500px) 100px; } @@ -1329,7 +1329,7 @@
有助于在不同的浏览器之间强制样式一致性,并为样式元素提供干净的盒子
div { +div { cursor: url('path-to-image.png'), url('path-to-fallback-image.png'), auto; /* 表情符号作为光标 */ cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🚀</text></svg>"), auto; @@ -1434,6 +1434,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/curl.html b/docs/curl.html index 28594262..23feabe7 100644 --- a/docs/curl.html +++ b/docs/curl.html @@ -1,6 +1,6 @@ - - - + + + Curl 备忘清单 & curl cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -63,7 +63,7 @@ -I # --head: 仅标头
div { cursor: url('path-to-image.png'), url('path-to-fallback-image.png'), auto; /* 表情符号作为光标 */ cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🚀</text></svg>"), auto; @@ -1434,6 +1434,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/curl.html b/docs/curl.html index 28594262..23feabe7 100644 --- a/docs/curl.html +++ b/docs/curl.html @@ -1,6 +1,6 @@ - - - + + + Curl 备忘清单 & curl cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -63,7 +63,7 @@ -I # --head: 仅标头
-X POST # --request +-X POST # --request -L # 如果页面重定向,请点击链接 -F # --form: multipart/form-data 的 HTTP POST 数据 @@ -152,7 +152,7 @@
-X POST # --request -L # 如果页面重定向,请点击链接 -F # --form: multipart/form-data 的 HTTP POST 数据
$ curl -XGET http://${elasticsearch_ip}:9200/_cluster/nodes | python -m json.tool +$ curl -XGET http://${elasticsearch_ip}:9200/_cluster/nodes | python -m json.tool
$ curl -XGET http://${elasticsearch_ip}:9200/_cluster/nodes | python -m json.tool
curl -s -w \ +curl -s -w \ '\nLookup time:\t%{time_namelookup}\nConnect time:\t%{time_connect}\nAppCon time:\t%{time_appconnect}\nRedirect time:\t%{time_redirect}\nPreXfer time:\t%{time_pretransfer}\nStartXfer time:\t%{time_starttransfer}\n\nTotal time:\t%{time_total}\n' \ -o /dev/null https://www.google.com
curl -s -w \ '\nLookup time:\t%{time_namelookup}\nConnect time:\t%{time_connect}\nAppCon time:\t%{time_appconnect}\nRedirect time:\t%{time_redirect}\nPreXfer time:\t%{time_pretransfer}\nStartXfer time:\t%{time_starttransfer}\n\nTotal time:\t%{time_total}\n' \ -o /dev/null https://www.google.com
curl -o /dev/null --silent -Iw "%{http_code}" https://example.com/my.remote.tarball.gz +curl -o /dev/null --silent -Iw "%{http_code}" https://example.com/my.remote.tarball.gz
curl -o /dev/null --silent -Iw "%{http_code}" https://example.com/my.remote.tarball.gz
curl --remote-name --continue-at - "https://example.com/linux-distro.iso" +curl --remote-name --continue-at - "https://example.com/linux-distro.iso"
curl --remote-name --continue-at - "https://example.com/linux-distro.iso"
curl "https://www.{example,w3,iana}.org/index.html" --output "file_#1.html" +curl "https://www.{example,w3,iana}.org/index.html" --output "file_#1.html"
curl "https://www.{example,w3,iana}.org/index.html" --output "file_#1.html"
curl "https://{foo,bar}.com/file_[1-4].webp" --output "#1_#2.webp" +curl "https://{foo,bar}.com/file_[1-4].webp" --output "#1_#2.webp" 下载一系列文件(输出foo_file1.webp、foo_file2.webp…bar_file1_webp等) @@ -303,6 +303,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/docker.html b/docs/docker.html index 33801e23..3bdc2b50 100644 --- a/docs/docker.html +++ b/docs/docker.html @@ -1,6 +1,6 @@ - - - + + + Docker 备忘清单 & docker cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -651,6 +651,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/dockerfile.html b/docs/dockerfile.html index 8634c1cb..a65e0c70 100644 --- a/docs/dockerfile.html +++ b/docs/dockerfile.html @@ -1,6 +1,6 @@ - - - + + + Dockerfile 备忘清单 & dockerfile cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ 使用 -f 指向文件系统中任何位置的 Dockerfile。 继承 -FROM [--platform=<platform>] <image> [AS <name>] +FROM [--platform=<platform>] <image> [AS <name>] 示例 @@ -78,13 +78,13 @@ VOLUME ["/data"] # 安装点规范 -ADD file.xyz /file.xyz +ADD file.xyz /file.xyz # 复制 COPY --chown=user:group host_file.xyz /path/container_file.xyz Onbuild -ONBUILD RUN bundle install +ONBUILD RUN bundle install # 与另一个文件一起使用时 ONBUILD ADD . /app/src @@ -93,7 +93,7 @@ 指令将触发指令添加到镜像中,以便稍后执行,此时镜像用作另一个构建的基础。 在严格的 shell 中运行命令 -ENV my_var +ENV my_var SHELL ["/bin/bash", "-euo", "pipefail", "-c"] # 使用严格模式: RUN false # ails 像使用 && 一样构建 @@ -131,7 +131,7 @@ CMD ["bundle", "exec", "rails", "server"] 入口点 ENTRYPOINT -ENTRYPOINT ["executable", "param1", "param2"] +ENTRYPOINT ["executable", "param1", "param2"] ENTRYPOINT command param1 param2 @@ -142,7 +142,7 @@ 元数据 LABEL LABEL version="1.0" -LABEL "com.example.vendor"="ACME Incorporated" +LABEL "com.example.vendor"="ACME Incorporated" LABEL com.example.label-with-value="foo" LABEL version="1.0" @@ -308,6 +308,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/electron.html b/docs/electron.html index 53f740d6..7a740b59 100644 --- a/docs/electron.html +++ b/docs/electron.html @@ -1,6 +1,6 @@ - - - + + + Electron 备忘清单 & electron cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2039,6 +2039,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emmet.html b/docs/emmet.html index 4d618242..96eb3243 100644 --- a/docs/emmet.html +++ b/docs/emmet.html @@ -1,6 +1,6 @@ - - - + + + Emmet 备忘清单 & emmet cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -278,11 +278,11 @@ <link rel="apple-touch-icon" href="favicon.png" /> link:rss -<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> +<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> link:atom -<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> +<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> link:import, link:im @@ -295,11 +295,11 @@ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> meta:win -<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> +<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> meta:vp -<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; animation @@ -3564,7 +3564,7 @@ Alias of command XSL XSL tmatch, tm -<xsl:template match="" mode=""></xsl:template> +<xsl:template match="" mode=""></xsl:template> tname, tn @@ -3623,7 +3623,7 @@ Alias of command <xsl:attribute name=""></xsl:attribute> attrs -<xsl:attribute-set name=""></xsl:attribute-set> +<xsl:attribute-set name=""></xsl:attribute-set> cp @@ -3655,7 +3655,7 @@ Alias of command <xsl:number value="" /> nam -<namespace-alias stylesheet-prefix="" result-prefix="" /> +<namespace-alias stylesheet-prefix="" result-prefix="" /> pres @@ -3665,7 +3665,7 @@ Alias of command <xsl:strip-space elements="" /> proc -<xsl:processing-instruction name=""></xsl:processing-instruction> +<xsl:processing-instruction name=""></xsl:processing-instruction> sort @@ -3678,7 +3678,7 @@ Alias of command </xsl:choose> xsl 别名 !!!+xsl:stylesheet[version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform]>{ | } -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet> @@ -3727,6 +3727,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emoji.html b/docs/emoji.html index f88a76ca..9abfd39e 100644 --- a/docs/emoji.html +++ b/docs/emoji.html @@ -1,6 +1,6 @@ - - - + + + Emoji 备忘清单 & emoji cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -3528,6 +3528,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/expressjs.html b/docs/expressjs.html index a31fed4e..2b27cfad 100644 --- a/docs/expressjs.html +++ b/docs/expressjs.html @@ -1,6 +1,6 @@ - - - + + + Express 备忘清单 & expressjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -72,7 +72,7 @@ express -h -Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt" 多个文件名 -$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件 多个目录 -$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@ 常用实例 获取版本信息 -- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build 修改 package.json -- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。 同步 Gitee -- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag 生成 git 提交日志 -- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现 接口实例 -func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
curl "https://{foo,bar}.com/file_[1-4].webp" --output "#1_#2.webp"
下载一系列文件(输出foo_file1.webp、foo_file2.webp…bar_file1_webp等)
foo_file1.webp
foo_file2.webp…bar_file1_webp
使用 -f 指向文件系统中任何位置的 Dockerfile。
-f
Dockerfile
FROM [--platform=<platform>] <image> [AS <name>] +FROM [--platform=<platform>] <image> [AS <name>] 示例 @@ -78,13 +78,13 @@ VOLUME ["/data"] # 安装点规范 -ADD file.xyz /file.xyz +ADD file.xyz /file.xyz # 复制 COPY --chown=user:group host_file.xyz /path/container_file.xyz
FROM [--platform=<platform>] <image> [AS <name>]
示例
VOLUME ["/data"] # 安装点规范
ADD file.xyz /file.xyz +ADD file.xyz /file.xyz # 复制 COPY --chown=user:group host_file.xyz /path/container_file.xyz
ADD file.xyz /file.xyz # 复制 COPY --chown=user:group host_file.xyz /path/container_file.xyz
ONBUILD RUN bundle install +ONBUILD RUN bundle install # 与另一个文件一起使用时 ONBUILD ADD . /app/src @@ -93,7 +93,7 @@ 指令将触发指令添加到镜像中,以便稍后执行,此时镜像用作另一个构建的基础。
ONBUILD RUN bundle install # 与另一个文件一起使用时 ONBUILD ADD . /app/src @@ -93,7 +93,7 @@ 指令将触发指令添加到镜像中,以便稍后执行,此时镜像用作另一个构建的基础。
指令将触发指令添加到镜像中,以便稍后执行,此时镜像用作另一个构建的基础。
ENV my_var +ENV my_var SHELL ["/bin/bash", "-euo", "pipefail", "-c"] # 使用严格模式: RUN false # ails 像使用 && 一样构建 @@ -131,7 +131,7 @@ CMD ["bundle", "exec", "rails", "server"]
ENV my_var SHELL ["/bin/bash", "-euo", "pipefail", "-c"] # 使用严格模式: RUN false # ails 像使用 && 一样构建 @@ -131,7 +131,7 @@ CMD ["bundle", "exec", "rails", "server"]
ENTRYPOINT ["executable", "param1", "param2"] +ENTRYPOINT ["executable", "param1", "param2"] ENTRYPOINT command param1 param2 @@ -142,7 +142,7 @@
ENTRYPOINT ["executable", "param1", "param2"] ENTRYPOINT command param1 param2
LABEL version="1.0"
LABEL "com.example.vendor"="ACME Incorporated" +LABEL "com.example.vendor"="ACME Incorporated" LABEL com.example.label-with-value="foo" LABEL version="1.0" @@ -308,6 +308,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/electron.html b/docs/electron.html index 53f740d6..7a740b59 100644 --- a/docs/electron.html +++ b/docs/electron.html @@ -1,6 +1,6 @@ - - - + + + Electron 备忘清单 & electron cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2039,6 +2039,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emmet.html b/docs/emmet.html index 4d618242..96eb3243 100644 --- a/docs/emmet.html +++ b/docs/emmet.html @@ -1,6 +1,6 @@ - - - + + + Emmet 备忘清单 & emmet cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -278,11 +278,11 @@ <link rel="apple-touch-icon" href="favicon.png" /> link:rss -<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> +<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> link:atom -<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> +<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> link:import, link:im @@ -295,11 +295,11 @@ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> meta:win -<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> +<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> meta:vp -<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; animation @@ -3564,7 +3564,7 @@ Alias of command
LABEL "com.example.vendor"="ACME Incorporated" LABEL com.example.label-with-value="foo" LABEL version="1.0"
<link rel="apple-touch-icon" href="favicon.png" />
link:rss
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> +<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> link:atom -<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> +<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> link:import, link:im @@ -295,11 +295,11 @@ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> meta:win -<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> +<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> meta:vp -<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" />
link:atom
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> +<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> link:import, link:im @@ -295,11 +295,11 @@ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> meta:win -<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> +<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> meta:vp -<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" />
link:import, link:im
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
meta:win
<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> +<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> meta:vp -<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" />
meta:vp
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> meta:compat @@ -345,7 +345,7 @@ <source sizes="" srcset="" /> source:media:type, src:mt -<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
meta:compat
<source sizes="" srcset="" />
source:media:type, src:mt
<source media="(min-width: )" srcset="" type="image/" /> +<source media="(min-width: )" srcset="" type="image/" /> source:media:sizes, src:mz @@ -479,14 +479,14 @@ <select name="" id=""></select> select:disabled, select:d 别名 select[disabled.] -<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<source media="(min-width: )" srcset="" type="image/" />
source:media:sizes, src:mz
<select name="" id=""></select>
select:disabled, select:d 别名 select[disabled.]
<select name="" id="" disabled="disabled"></select> +<select name="" id="" disabled="disabled"></select> option, opt <option value=""></option> textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<select name="" id="" disabled="disabled"></select>
option, opt
<option value=""></option>
textarea
<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> marquee @@ -505,7 +505,7 @@ <audio src=""></audio> html:xml -<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<textarea name="" id="" cols="30" rows="10"></textarea>
marquee
<audio src=""></audio>
html:xml
<html xmlns="http://www.w3.org/1999/xhtml"></html> +<html xmlns="http://www.w3.org/1999/xhtml"></html> keygen @@ -563,7 +563,7 @@ <optgroup></optgroup> tarea 别名 textarea -<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<html xmlns="http://www.w3.org/1999/xhtml"></html>
keygen
<optgroup></optgroup>
tarea 别名 textarea
<textarea name="" id="" cols="30" rows="10"></textarea> +<textarea name="" id="" cols="30" rows="10"></textarea> leg 别名 legend @@ -619,7 +619,7 @@ Alias of command <command /> -doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body +doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body <html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html> -doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body +doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body -<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
leg 别名 legend
<command />
doc 别名 html>(head>meta[charset=${charset}]+title{${1:Document}})+body
<html> <head> @@ -631,9 +631,9 @@ Alias of command </body> </html>
doc4 别名 html>(head>meta[http-equiv="Content-Type" content="text/html;charset=${charset}"]+title{${1:Document}})+body
<html> +<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture> html:4t 别名 !!!4t+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> @@ -663,7 +663,7 @@ Alias of command </picture>
html:4t 别名 !!!4t+doc4[lang=${lang}]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command html:4s 别名 !!!4s+doc4[lang=${lang}] -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -676,7 +676,7 @@ Alias of command
html:4s 别名 !!!4s+doc4[lang=${lang}]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html> -html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] +html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -688,9 +688,9 @@ Alias of command </html>
html:xt 别名 !!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -703,7 +703,7 @@ Alias of command
html:xs 别名 !!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}] -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -716,7 +716,7 @@ Alias of command
html:xxs 别名 !!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl> map+ 别名 map>area -<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> @@ -757,7 +757,7 @@ Alias of command </dl>
map+ 别名 map>area
<map name=""> +<map name=""> <area shape="" coords="" href="" alt="" /> </map> @@ -799,23 +799,23 @@ Alias of command <!DOCTYPE html> !!!4t -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<map name=""> <area shape="" coords="" href="" alt="" /> </map>
<!DOCTYPE html>
!!!4t
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> !!!4s -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
!!!4s
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> !!!xt -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
!!!xt
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> !!!xs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
!!!xs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> !!!xxs -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
!!!xxs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> c @@ -3377,7 +3377,7 @@ Alias of command -:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl; +:-:-acalign-content:;ac:calign-content:center;ac:fealign-content:flex-end;ac:fsalign-content:flex-start;ac:salign-content:stretch;ac:saalign-content:space-around;ac:sbalign-content:space-between;aialign-items:;ai:balign-items:baseline;ai:calign-items:center;ai:fealign-items:flex-end;ai:fsalign-items:flex-start;ai:salign-items:stretch;apappearance:${none};asalign-self:;as:aalign-self:auto;as:balign-self:baseline;as:calign-self:center;as:fealign-self:flex-end;as:fsalign-self:flex-start;as:salign-self:stretch;bfvbackface-visibility:;bfv:hbackface-visibility:hidden;bfv:vbackface-visibility:visible;bg:iefilter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop');cm/* ${child} */colmcolumns:;colmccolumn-count:;colmfcolumn-fill:;colmgcolumn-gap:;colmrcolumn-rule:;colmrccolumn-rule-color:;colmrscolumn-rule-style:;colmrwcolumn-rule-width:;colmscolumn-span:;colmwcolumn-width:;d:ib+display: inline-block; *display: inline; *zoom: 1;jcjustify-content:;jc:cjustify-content:center;jc:fejustify-content:flex-end;jc:fsjustify-content:flex-start;jc:sajustify-content:space-around;jc:sbjustify-content:space-between;marmax-resolution:res;mirmin-resolution:res;op+opacity: ; filter: alpha(opacity=);op:iefilter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);op:ms-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';ordorder:;oriorientation:;ori:lorientation:landscape;ori:porientation:portrait;tovtext-overflow:${ellipsis};tov:ctext-overflow:clip;tov:etext-overflow:ellipsis;trstransition:prop time;trsdetransition-delay:time;trsdutransition-duration:time;trsptransition-property:prop;trstftransition-timing-function:tfunc;ususer-select:${none};wfsm-webkit-font-smoothing:${antialiased};wfsm:a-webkit-font-smoothing:antialiased;wfsm:n-webkit-font-smoothing:none;wfsm:s, wfsm:sa-webkit-font-smoothing:subpixel-antialiased;wmwriting-mode:lr-tb;wm:btlwriting-mode:bt-lr;wm:btrwriting-mode:bt-rl;wm:lrbwriting-mode:lr-bt;wm:lrtwriting-mode:lr-tb;wm:rlbwriting-mode:rl-bt;wm:rltwriting-mode:rl-tb;wm:tblwriting-mode:tb-lr;wm:tbrwriting-mode:tb-rl;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
c
ac
ac:c
ac:fe
ac:fs
ac:s
ac:sa
ac:sb
ai
ai:b
ai:c
ai:fe
ai:fs
ai:s
ap
as
as:a
as:b
as:c
as:fe
as:fs
as:s
bfv
bfv:h
bfv:v
bg:ie
cm
colm
colmc
colmf
colmg
colmr
colmrc
colmrs
colmrw
colms
colmw
d:ib+
jc
jc:c
jc:fe
jc:fs
jc:sa
jc:sb
mar
mir
op+
op:ie
op:ms
ord
ori
ori:l
ori:p
tov
tov:c
tov:e
trs
trsde
trsdu
trsp
trstf
us
wfsm
wfsm:a
wfsm:n
wfsm:s, wfsm:sa
wm
wm:btl
wm:btr
wm:lrb
wm:lrt
wm:rlb
wm:rlt
wm:tbl
wm:tbr
tmatch, tm
<xsl:template match="" mode=""></xsl:template> +<xsl:template match="" mode=""></xsl:template> tname, tn @@ -3623,7 +3623,7 @@ Alias of command <xsl:attribute name=""></xsl:attribute> attrs -<xsl:attribute-set name=""></xsl:attribute-set> +<xsl:attribute-set name=""></xsl:attribute-set> cp @@ -3655,7 +3655,7 @@ Alias of command <xsl:number value="" /> nam -<namespace-alias stylesheet-prefix="" result-prefix="" /> +<namespace-alias stylesheet-prefix="" result-prefix="" /> pres @@ -3665,7 +3665,7 @@ Alias of command <xsl:strip-space elements="" /> proc -<xsl:processing-instruction name=""></xsl:processing-instruction> +<xsl:processing-instruction name=""></xsl:processing-instruction> sort @@ -3678,7 +3678,7 @@ Alias of command </xsl:choose> xsl 别名 !!!+xsl:stylesheet[version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform]>{ | } -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet> @@ -3727,6 +3727,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emoji.html b/docs/emoji.html index f88a76ca..9abfd39e 100644 --- a/docs/emoji.html +++ b/docs/emoji.html @@ -1,6 +1,6 @@ - - - + + + Emoji 备忘清单 & emoji cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -3528,6 +3528,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/expressjs.html b/docs/expressjs.html index a31fed4e..2b27cfad 100644 --- a/docs/expressjs.html +++ b/docs/expressjs.html @@ -1,6 +1,6 @@ - - - + + + Express 备忘清单 & expressjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -72,7 +72,7 @@ express -h -Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt" 多个文件名 -$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件 多个目录 -$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@ 常用实例 获取版本信息 -- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build 修改 package.json -- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。 同步 Gitee -- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag 生成 git 提交日志 -- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现 接口实例 -func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
<xsl:template match="" mode=""></xsl:template>
tname, tn
<xsl:attribute name=""></xsl:attribute>
attrs
<xsl:attribute-set name=""></xsl:attribute-set> +<xsl:attribute-set name=""></xsl:attribute-set> cp @@ -3655,7 +3655,7 @@ Alias of command <xsl:number value="" /> nam -<namespace-alias stylesheet-prefix="" result-prefix="" /> +<namespace-alias stylesheet-prefix="" result-prefix="" /> pres @@ -3665,7 +3665,7 @@ Alias of command <xsl:strip-space elements="" /> proc -<xsl:processing-instruction name=""></xsl:processing-instruction> +<xsl:processing-instruction name=""></xsl:processing-instruction> sort @@ -3678,7 +3678,7 @@ Alias of command </xsl:choose> xsl 别名 !!!+xsl:stylesheet[version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform]>{ | } -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet> @@ -3727,6 +3727,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emoji.html b/docs/emoji.html index f88a76ca..9abfd39e 100644 --- a/docs/emoji.html +++ b/docs/emoji.html @@ -1,6 +1,6 @@ - - - + + + Emoji 备忘清单 & emoji cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -3528,6 +3528,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/expressjs.html b/docs/expressjs.html index a31fed4e..2b27cfad 100644 --- a/docs/expressjs.html +++ b/docs/expressjs.html @@ -1,6 +1,6 @@ - - - + + + Express 备忘清单 & expressjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -72,7 +72,7 @@ express -h -Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt" 多个文件名 -$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件 多个目录 -$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@ 常用实例 获取版本信息 -- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build 修改 package.json -- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。 同步 Gitee -- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag 生成 git 提交日志 -- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现 接口实例 -func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
<xsl:attribute-set name=""></xsl:attribute-set>
cp
<xsl:number value="" />
nam
<namespace-alias stylesheet-prefix="" result-prefix="" /> +<namespace-alias stylesheet-prefix="" result-prefix="" /> pres @@ -3665,7 +3665,7 @@ Alias of command <xsl:strip-space elements="" /> proc -<xsl:processing-instruction name=""></xsl:processing-instruction> +<xsl:processing-instruction name=""></xsl:processing-instruction> sort @@ -3678,7 +3678,7 @@ Alias of command </xsl:choose> xsl 别名 !!!+xsl:stylesheet[version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform]>{ | } -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet> @@ -3727,6 +3727,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emoji.html b/docs/emoji.html index f88a76ca..9abfd39e 100644 --- a/docs/emoji.html +++ b/docs/emoji.html @@ -1,6 +1,6 @@ - - - + + + Emoji 备忘清单 & emoji cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -3528,6 +3528,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/expressjs.html b/docs/expressjs.html index a31fed4e..2b27cfad 100644 --- a/docs/expressjs.html +++ b/docs/expressjs.html @@ -1,6 +1,6 @@ - - - + + + Express 备忘清单 & expressjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -72,7 +72,7 @@ express -h -Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt" 多个文件名 -$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件 多个目录 -$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@ 常用实例 获取版本信息 -- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build 修改 package.json -- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。 同步 Gitee -- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag 生成 git 提交日志 -- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现 接口实例 -func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
<namespace-alias stylesheet-prefix="" result-prefix="" />
pres
<xsl:strip-space elements="" />
proc
<xsl:processing-instruction name=""></xsl:processing-instruction> +<xsl:processing-instruction name=""></xsl:processing-instruction> sort @@ -3678,7 +3678,7 @@ Alias of command </xsl:choose>
<xsl:processing-instruction name=""></xsl:processing-instruction>
sort
xsl 别名 !!!+xsl:stylesheet[version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform]>{ | }
<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet> @@ -3727,6 +3727,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/emoji.html b/docs/emoji.html index f88a76ca..9abfd39e 100644 --- a/docs/emoji.html +++ b/docs/emoji.html @@ -1,6 +1,6 @@ - - - + + + Emoji 备忘清单 & emoji cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -3528,6 +3528,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/expressjs.html b/docs/expressjs.html index a31fed4e..2b27cfad 100644 --- a/docs/expressjs.html +++ b/docs/expressjs.html @@ -1,6 +1,6 @@ - - - + + + Express 备忘清单 & expressjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -72,7 +72,7 @@ express -h -Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt" 多个文件名 -$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件 多个目录 -$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@ 常用实例 获取版本信息 -- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build 修改 package.json -- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。 同步 Gitee -- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag 生成 git 提交日志 -- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现 接口实例 -func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet>
Usage: express [options] [dir] +Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt"
Usage: express [options] [dir] Options: -h, --help 输出使用信息 --version 输出版本号 @@ -714,6 +714,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/find.html b/docs/find.html index d46f4964..8f6bbbd7 100644 --- a/docs/find.html +++ b/docs/find.html @@ -1,6 +1,6 @@ - - - + + + Find 备忘清单 & find cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -250,12 +250,12 @@ $ find /home -user tecmint -iname "*.txt"
$ find /home -user tecmint -iname "*.txt"
$ find . -type f \( -name "*.sh" -o -name "*.txt" \) +$ find . -type f \( -name "*.sh" -o -name "*.txt" \) 查找带有 .sh 和 .txt 扩展名的文件
$ find . -type f \( -name "*.sh" -o -name "*.txt" \)
查找带有 .sh 和 .txt 扩展名的文件
.sh
.txt
$ find /opt /usr /var -name foo.scala -type f +$ find /opt /usr /var -name foo.scala -type f 查找具有多个目录的文件 @@ -459,6 +459,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/git.html b/docs/git.html index 28a7b9f5..ba72b2a5 100644 --- a/docs/git.html +++ b/docs/git.html @@ -1,6 +1,6 @@ - - - + + + Git 备忘清单 & git cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -385,6 +385,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/github-actions.html b/docs/github-actions.html index c964abf1..879fe8a1 100644 --- a/docs/github-actions.html +++ b/docs/github-actions.html @@ -1,6 +1,6 @@ - - - + + + Github Actions 备忘清单 & github-actions cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -475,7 +475,7 @@ contains('Hello world', 'llo') // 返回 true 使用对象过滤器的示例返回 true -contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@ 另见: 函数 startsWith,此函数不区分大小写 函数 format -format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@
$ find /opt /usr /var -name foo.scala -type f
查找具有多个目录的文件
contains('Hello world', 'llo') // 返回 true
使用对象过滤器的示例返回 true
contains(github.event.issue.labels.*.name, 'bug') +contains(github.event.issue.labels.*.name, 'bug') 另见: 函数 contains @@ -484,7 +484,7 @@
contains(github.event.issue.labels.*.name, 'bug')
另见: 函数 contains
另见: 函数 startsWith,此函数不区分大小写
format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') +format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'. @@ -550,7 +550,7 @@
format('{{Hello {0} {1} {2}!}}', 'Mona', 'the', 'Octocat') // 返回 '{Hello Mona the Octocat!}'.
- name: Test +- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build
- name: Test run: | # Strip git ref prefix from version echo "${{ github.ref }}" @@ -569,7 +569,7 @@ publish_dir: ./build
- name: Modify Version +- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。
- name: Modify Version shell: bash run: | node -e 'var pkg = require("./package.json"); pkg.version= (new Date().getFullYear().toString().substr(2)) + "." + (new Date().getMonth() + 1) + "." + (new Date().getDate()); require("fs").writeFileSync("./package.json", JSON.stringify(pkg, null, 2))' @@ -623,7 +623,7 @@ 在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。
在此示例中,job3 使用 always() 条件表达式,因此它始终在 job1 和 job2 完成后运行,不管它们是否成功。
job3
always()
job1
job2
- name: Sync to Gitee +- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 获取 NPM_TOKEN,可以通过 npm 账号创建 token -npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@ 根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag
- name: Sync to Gitee run: | mirror() { git clone "https://github.com/$1/$2" @@ -642,7 +642,7 @@ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
获取 NPM_TOKEN,可以通过 npm 账号创建 token
NPM_TOKEN
token
npm token list [--json|--parseable] # 查看 +npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销 @@ -728,7 +728,7 @@
npm token list [--json|--parseable] # 查看 npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16] # 创建 npm token revoke <id|token> # 撤销
根据 package-path 指定的 package.json 检测 version 是否发生变化来创建 tag
package-path
package.json
version
tag
- name: Generate Changelog +- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现
- name: Generate Changelog id: changelog uses: jaywcjlove/changelog-generator@main with: @@ -939,6 +939,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/golang.html b/docs/golang.html index 3e2733ed..123d9b2d 100644 --- a/docs/golang.html +++ b/docs/golang.html @@ -1,6 +1,6 @@ - - - + + + Golang 备忘清单 & golang cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -730,7 +730,7 @@ 在 Shape 中定义的方法在Rectangle中实现
在 Shape 中定义的方法在Rectangle中实现
Shape
Rectangle
func main() { +func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
func main() { var r Shape = Rectangle{Length: 3, Width: 4} fmt.Printf("Type of r: %T, Area: %v, Perimeter: %v.", r, r.Area(), r.Perimeter()) } @@ -899,6 +899,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/grep.html b/docs/grep.html index 5853e7fc..ad10ae52 100644 --- a/docs/grep.html +++ b/docs/grep.html @@ -1,6 +1,6 @@ - - - + + + Grep 备忘清单 & grep cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -357,6 +357,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/homebrew.html b/docs/homebrew.html index c3f53cd7..a9b8b2a8 100644 --- a/docs/homebrew.html +++ b/docs/homebrew.html @@ -1,6 +1,6 @@ - - - + + + Homebrew 备忘清单 & homebrew cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -44,11 +44,11 @@ Homebrew安装命令更多包命令Brew Cask 命令全局命令Brew 清理brew 源码仓库搜索查看帮助命令另见Homebrew 安装 -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。 HTML5 Audio -<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。 HTML5 Ruby -<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记 Textarea 标签 -<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea> ↓ 预览 @@ -1179,6 +1179,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/htop.html b/docs/htop.html index 7022839e..83268e12 100644 --- a/docs/htop.html +++ b/docs/htop.html @@ -1,6 +1,6 @@ - - - + + + htop 备忘清单 & htop cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -353,6 +353,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/http-status-code.html b/docs/http-status-code.html index abfeb086..76cb8860 100644 --- a/docs/http-status-code.html +++ b/docs/http-status-code.html @@ -1,6 +1,6 @@ - - - + + + HTTP 状态码备忘清单 & http-status-code cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -43,72 +43,72 @@ HTTP 状态码Means2xx. 成功的4xx. 客户端错误1xx. 信息3xx. 重定向5xx. 服务器错误RESTful API5xx 永久性否定另见HTTP 状态码 Means -1xx: Informational 这意味着已收到请求并且该过程正在继续 -2xx: Success 这意味着该操作已成功接收、理解和接受 -3xx: Redirection 这意味着必须采取进一步行动才能完成请求 -4xx: Client Error 这意味着请求包含不正确的语法或无法完成 -5xx: Server Error 这意味着服务器未能满足明显有效的请求 +1xx: Informational这意味着已收到请求并且该过程正在继续 +2xx: Success这意味着该操作已成功接收、理解和接受 +3xx: Redirection这意味着必须采取进一步行动才能完成请求 +4xx: Client Error这意味着请求包含不正确的语法或无法完成 +5xx: Server Error这意味着服务器未能满足明显有效的请求 2xx. 成功的 -200: OK 请求没问题 -201: Created 请求完成,并创建了一个新资源 -202: Accepted 接受请求进行处理,但处理未完成 -203: Non-Authoritative Information 实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 -204: No Content 响应中给出了状态码和标头,但响应中没有实体主体 -205: Reset Content 浏览器应清除用于此事务的表单以获取其他输入 -206: Partial Content 服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 +200: OK请求没问题 +201: Created请求完成,并创建了一个新资源 +202: Accepted接受请求进行处理,但处理未完成 +203: Non-Authoritative Information实体标头中的信息来自本地或第三方副本,而不是来自原始服务器 +204: No Content响应中给出了状态码和标头,但响应中没有实体主体 +205: Reset Content浏览器应清除用于此事务的表单以获取其他输入 +206: Partial Content服务器正在返回请求大小的部分数据。 用于响应指定 Range 标头的请求。 服务器必须使用 Content-Range 标头指定响应中包含的范围 4xx. 客户端错误 -400: Bad Request 服务器不理解该请求 -401: Unauthorized 请求的页面需要用户名和密码 -402: Payment Required 您还不能使用此代码 -403: Forbidden 禁止访问请求的页面 -404: Not Found 服务器找不到请求的页面 -405: Method Not Allowed 请求中指定的方法是不允许的 -406: Not Acceptable 服务器只能生成客户端不接受的响应 -407: Proxy Authentication Required 您必须先通过代理服务器进行身份验证,然后才能提供此请求 -408: Request Timeout 请求花费的时间比服务器准备等待的时间长 -409: Conflict 由于冲突,请求无法完成 -410: Gone 请求的页面不再可用 -411: Length Required “Content-Length”未定义。 没有它,服务器将不会接受请求 -412: Precondition Failed 请求中给出的前提条件被服务器评估为 false -413: Payload Too Large 服务器不会接受请求,因为请求实体太大 -414: URI Too Long 服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 -415: Unsupported Media Type 服务器不会接受请求,因为不支持媒体类型 -416: Range Not Satisfiable 请求的字节范围不可用且超出范围 -417: Expectation Failed 此服务器无法满足在 Expect 请求标头字段中给出的期望 -426: Upgrade Required 服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 -451: Unavailable For Legal Reasons 此状态代码表示服务器拒绝访问资源作为法律要求的结果 +400: Bad Request服务器不理解该请求 +401: Unauthorized请求的页面需要用户名和密码 +402: Payment Required您还不能使用此代码 +403: Forbidden禁止访问请求的页面 +404: Not Found服务器找不到请求的页面 +405: Method Not Allowed请求中指定的方法是不允许的 +406: Not Acceptable服务器只能生成客户端不接受的响应 +407: Proxy Authentication Required您必须先通过代理服务器进行身份验证,然后才能提供此请求 +408: Request Timeout请求花费的时间比服务器准备等待的时间长 +409: Conflict由于冲突,请求无法完成 +410: Gone请求的页面不再可用 +411: Length Required“Content-Length”未定义。 没有它,服务器将不会接受请求 +412: Precondition Failed请求中给出的前提条件被服务器评估为 false +413: Payload Too Large服务器不会接受请求,因为请求实体太大 +414: URI Too Long服务器不会接受请求,因为 url 太长。 当您将“发布”请求转换为具有长查询信息的“获取”请求时发生 +415: Unsupported Media Type服务器不会接受请求,因为不支持媒体类型 +416: Range Not Satisfiable请求的字节范围不可用且超出范围 +417: Expectation Failed此服务器无法满足在 Expect 请求标头字段中给出的期望 +426: Upgrade Required服务器拒绝使用当前协议执行请求,但在客户端升级到不同协议后可能愿意这样做 +451: Unavailable For Legal Reasons此状态代码表示服务器拒绝访问资源作为法律要求的结果 1xx. 信息 -100: Continue 服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 -101: Switching Protocols 服务器切换协议 -102: Processing 用于通知客户端服务器已接受完整请求但尚未完成的临时响应 +100: Continue服务器只收到了请求的一部分,但只要没有被拒绝,客户端就应该继续请求 +101: Switching Protocols服务器切换协议 +102: Processing用于通知客户端服务器已接受完整请求但尚未完成的临时响应 3xx. 重定向 -300: Multiple Choices 一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 -301: Moved Permanently 请求的页面已移至新的 url -302: Found 请求的页面已临时移动到新的 url -303: See Other 请求的页面可以在不同的 url 下找到 -304: Not Modified 这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 -305: Use Proxy 请求的 URL 必须通过 Location 标头中提到的代理访问 -306: Unused 此代码在以前的版本中使用过。 它不再使用,但代码被保留 -307: Temporary Redirect 请求的页面已临时移动到新的 url +300: Multiple Choices一个链接列表。 用户可以选择一个链接并转到该位置。 最多五个地址 +301: Moved Permanently请求的页面已移至新的 url +302: Found请求的页面已临时移动到新的 url +303: See Other请求的页面可以在不同的 url 下找到 +304: Not Modified这是对 If-Modified-Since 或 If-None-Match 标头的响应代码,其中 URL 自指定日期以来未修改 +305: Use Proxy请求的 URL 必须通过 Location 标头中提到的代理访问 +306: Unused此代码在以前的版本中使用过。 它不再使用,但代码被保留 +307: Temporary Redirect请求的页面已临时移动到新的 url 5xx. 服务器错误 -500: Internal Server Error 请求未完成。服务器遇到了意外情况 -501: Not Implemented 请求未完成。服务器不支持所需的功能 -502: Bad Gateway 请求未完成。服务器收到来自上游服务器的无效响应 -503: Service Unavailable 请求未完成。服务器暂时超载或停机 -504: Gateway Timeout 网关已超时 -505: HTTP Version Not Supported 服务器不支持“http 协议”版本 +500: Internal Server Error请求未完成。服务器遇到了意外情况 +501: Not Implemented请求未完成。服务器不支持所需的功能 +502: Bad Gateway请求未完成。服务器收到来自上游服务器的无效响应 +503: Service Unavailable请求未完成。服务器暂时超载或停机 +504: Gateway Timeout网关已超时 +505: HTTP Version Not Supported服务器不支持“http 协议”版本 RESTful API @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/ini.html b/docs/ini.html index 356a9bd5..b5b19923 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -1,6 +1,6 @@ - - - + + + INI 备忘清单 & ini cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -263,6 +263,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/iso-639-1.html b/docs/iso-639-1.html index 468b3a7b..2f7bf9d5 100644 --- a/docs/iso-639-1.html +++ b/docs/iso-639-1.html @@ -1,6 +1,6 @@ - - - + + + ISO 639-1 Language Code 备忘清单 & iso-639-1 cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -1294,6 +1294,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/javascript.html b/docs/javascript.html index e3bfd91c..89426eee 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1,6 +1,6 @@ - - - + + + JavaScript 备忘清单 & javascript cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -830,7 +830,7 @@ // => 1 // => 2 -label 语句 +label 语句 var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana -for await...of +for await...of async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@ 模拟 模拟函数 -test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的 -# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
加速安装和更新,将仓库源码通过 gitee 同步到国内,这样速度杠杠的
# 把 Homebrew/brew 的 Git 镜像放在这里 +# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@ 在安装期间跳过克隆 (beta) -export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。
# 把 Homebrew/brew 的 Git 镜像放在这里 export HOMEBREW_BREW_GIT_REMOTE="..." # 将 Homebrew/homebrew-core 的 Git 镜像放在这里 export HOMEBREW_CORE_GIT_REMOTE="..." @@ -56,7 +56,7 @@
在安装期间跳过克隆 (beta)
export HOMEBREW_INSTALL_FROM_API=1 +export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" @@ -300,6 +300,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html-char.html b/docs/html-char.html index 9ac84440..e1c32bb6 100644 --- a/docs/html-char.html +++ b/docs/html-char.html @@ -1,6 +1,6 @@ - - - + + + HTML 字符实体备忘清单 & html-char cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -2818,6 +2818,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/html.html b/docs/html.html index bb6253cf..b04a5d1d 100644 --- a/docs/html.html +++ b/docs/html.html @@ -1,6 +1,6 @@ - - - + + + HTML 备忘清单 & html cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -106,7 +106,7 @@ :-:-href超链接指向的 URLrel链接 URL 的关系target链接目标位置:_self/_blank/_top/_parent 请参阅:<a> 属性 Image 标签 -<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分 内部框架 -<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会 HTML5 Video -<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。
export HOMEBREW_INSTALL_FROM_API=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
href
rel
target
_self
_blank
_top
_parent
请参阅:<a> 属性
<img loading="lazy" +<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分
<img loading="lazy" src="https://xxx.png" alt="在此处描述图像" width="400" height="400"> @@ -211,7 +211,7 @@ 这些标签用于将页面划分为多个部分
这些标签用于将页面划分为多个部分
<iframe +<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会
<iframe id="inlineFrameExample" title="Inline Frame Example" width="100%" @@ -416,7 +416,7 @@ :-:-article独立的内容aside次要内容audio嵌入声音或音频流bdi双向隔离元件canvas通过JavaScript绘制图形data机器可读内容datalist一组预定义选项details其他信息dialog对话框或子窗口embed嵌入外部应用程序figcaption图形的标题或图例figure插图footer页脚或最不重要的header刊头或重要信息main文件的主要内容mark突出显示的文本meter已知范围内的标量值nav导航链接的一部分output计算的结果picture用于多个图像源的容器progress任务的完成进度rp提供回退括号rt定义字符的发音ruby表示ruby注释section一系列相关内容中的组source媒体元素的资源summary元素的摘要template定义HTML片段time时间或日期track媒体元素的字幕信息video嵌入视频wbr换行机会
<video controls="" width="100%"> +<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。
<video controls="" width="100%"> <source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4"> 很抱歉,您的浏览器不支持嵌入式视频。 </video> @@ -428,7 +428,7 @@ 很抱歉,您的浏览器不支持嵌入式视频。
<audio +<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。
<audio controls src="https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3"> 您的浏览器不支持音频元素。 @@ -440,7 +440,7 @@ 您的浏览器不支持音频元素。
<ruby> +<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记
<ruby> 汉 <rp>(</rp><rt>hàn</rt><rp>)</rp> 字 <rp>(</rp><rt>zì</rt><rp>)</rp> 拼 <rp>(</rp><rt>pīn</rt><rp>)</rp> @@ -721,7 +721,7 @@ 请参阅:HTML输入标记
请参阅:HTML输入标记
<textarea rows="2" cols="30" name="address" id="address"></textarea> +<textarea rows="2" cols="30" name="address" id="address"></textarea>
<textarea rows="2" cols="30" name="address" id="address"></textarea>
var num = 0; @@ -856,7 +856,7 @@ // => orange // => banana
async function* asyncGenerator() { var i = 0; @@ -1583,6 +1583,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/jest.html b/docs/jest.html index e27c023a..74d9e83d 100644 --- a/docs/jest.html +++ b/docs/jest.html @@ -1,6 +1,6 @@ - - - + + + Jest 备忘清单 & jest cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -483,7 +483,7 @@
test('call the callback', () => { +test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
test('call the callback', () => { const callback = jest.fn() fn(callback) expect(callback).toBeCalled() @@ -772,6 +772,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/json.html b/docs/json.html index b8a34012..93353b12 100644 --- a/docs/json.html +++ b/docs/json.html @@ -1,6 +1,6 @@ - - - + + + JSON 备忘清单 & json cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -186,7 +186,7 @@ -类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E +类型说明Integer数字 1-9、0 和正数或负数Fraction0.3、3.9 等分数Exponent指数,如 e、e+、e-、E、E+、E 示例 { @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
Integer
Fraction
Exponent
{ @@ -507,6 +507,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/koajs.html b/docs/koajs.html index 9ab2eaac..71056fbb 100644 --- a/docs/koajs.html +++ b/docs/koajs.html @@ -1,6 +1,6 @@ - - - + + + Koajs 备忘清单 & koajs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -774,6 +774,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lerna.html b/docs/lerna.html index eca9a186..87e4895b 100644 --- a/docs/lerna.html +++ b/docs/lerna.html @@ -1,6 +1,6 @@ - - - + + + Lerna 备忘清单 & lerna cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -89,7 +89,7 @@ } useWorkspaces -{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
{ +{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, "version": "0.0.0" @@ -929,6 +929,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lessjs.html b/docs/lessjs.html index 491b8397..101160df 100644 --- a/docs/lessjs.html +++ b/docs/lessjs.html @@ -1,6 +1,6 @@ - - - + + + Less 备忘清单 & lessjs cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -51,7 +51,7 @@ $ lessc styles.less styles.css 在浏览器环境中使用 Less -<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ } 编译 css 为: -.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
在浏览器环境中使用 Less
Less
<link rel="stylesheet/less" type="text/css" href="styles.less" /> +<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> @@ -148,7 +148,7 @@ }
<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script>
编译 css 为:
.component { +.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +
.component { width: 300px; } @media (min-width: 768px) { @@ -931,6 +931,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/lsof.html b/docs/lsof.html index 984e4d47..97eb9761 100644 --- a/docs/lsof.html +++ b/docs/lsof.html @@ -1,6 +1,6 @@ - - - + + + Lsof 备忘清单 & lsof cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + + @@ -424,6 +424,5 @@ anchor.forEach((item) => { updateAnchor() }) }) - - - \ No newline at end of file + + diff --git a/docs/markdown.html b/docs/markdown.html index 3c3cc1bc..8ae451ed 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -1,6 +1,6 @@ - - - + + + Markdown 备忘清单 & markdown cheatsheet & Quick Reference @@ -9,8 +9,8 @@ - - + +