index.html 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. <!doctype html>
  2. <html lang="zh" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <meta name="author" content="Wcowin">
  7. <link rel="canonical" href="http://wcowin.work/Mkdocs-Wcowin/liuyanban/">
  8. <link rel="prev" href="../tag/">
  9. <link rel="next" href="../blog/">
  10. <link rel="icon" href="../img/apple-line.png">
  11. <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.4.2">
  12. <title>留言板 - Mkdocs-Wcowin中文主题</title>
  13. <link rel="stylesheet" href="../assets/stylesheets/main.d451bc0e.min.css">
  14. <link rel="stylesheet" href="../assets/stylesheets/palette.a5377069.min.css">
  15. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  16. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  17. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  18. <link rel="stylesheet" href="../stylesheets/extra.css">
  19. <link rel="stylesheet" href="../stylesheets/link.css">
  20. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@latest/dist/gitalk.css">
  21. <link rel="stylesheet" href="../ckplayer/css/ckplayer.css">
  22. <link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css">
  23. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lxgw-wenkai-webfont@1.1.0/style.css">
  24. <script>__md_scope=new URL("..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  25. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config",""),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  26. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  27. <link rel="stylesheet" href="../assets/stylesheets/custom.00c04c01.min.css">
  28. </head>
  29. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="blue-grey" data-md-color-accent="indigo">
  30. <script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
  31. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  32. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  33. <label class="md-overlay" for="__drawer"></label>
  34. <div data-md-component="skip">
  35. <a href="#畅所欲言" class="md-skip">
  36. 跳转至
  37. </a>
  38. </div>
  39. <div data-md-component="announce">
  40. <aside class="md-banner">
  41. <div class="md-banner__inner md-grid md-typeset">
  42. <button class="md-banner__button md-icon" aria-label="不再显示此消息">
  43. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  44. </button>
  45. Follow <strong>@Wcowin</strong> on
  46. <a rel="me" href="https://space.bilibili.com/1407028951?spm_id_from=333.1007.0.0">
  47. <span class="twemoji bilibili">
  48. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M488.6 104.1c16.7 18.1 24.4 39.7 23.3 65.7v202.4c-.4 26.4-9.2 48.1-26.5 65.1-17.2 17-39.1 25.9-65.5 26.7H92.02c-26.45-.8-48.21-9.8-65.28-27.2C9.682 419.4.767 396.5 0 368.2V169.8c.767-26 9.682-47.6 26.74-65.7C43.81 87.75 65.57 78.77 92.02 78h29.38L96.05 52.19c-5.75-5.73-8.63-13-8.63-21.79 0-8.8 2.88-16.06 8.63-21.797C101.8 2.868 109.1 0 117.9 0s16.1 2.868 21.9 8.603L213.1 78h88l74.5-69.397C381.7 2.868 389.2 0 398 0c8.8 0 16.1 2.868 21.9 8.603 5.7 5.737 8.6 12.997 8.6 21.797 0 8.79-2.9 16.06-8.6 21.79L394.6 78h29.3c26.4.77 48 9.75 64.7 26.1zm-38.8 69.7c-.4-9.6-3.7-17.4-10.7-23.5-5.2-6.1-14-9.4-22.7-9.8H96.05c-9.59.4-17.45 3.7-23.58 9.8-6.14 6.1-9.4 13.9-9.78 23.5v194.4c0 9.2 3.26 17 9.78 23.5s14.38 9.8 23.58 9.8H416.4c9.2 0 17-3.3 23.3-9.8 6.3-6.5 9.7-14.3 10.1-23.5V173.8zm-264.3 42.7c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2-6.2 6.3-14 9.5-23.6 9.5-9.6 0-17.5-3.2-23.6-9.5-6.1-6.3-9.4-14-9.8-23.2v-33.3c.4-9.1 3.8-16.9 10.1-23.2 6.3-6.3 13.2-9.6 23.3-10 9.2.4 17 3.7 23.3 10zm191.5 0c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2-6.1 6.3-14 9.5-23.6 9.5-9.6 0-17.4-3.2-23.6-9.5-7-6.3-9.4-14-9.7-23.2v-33.3c.3-9.1 3.7-16.9 10-23.2 6.3-6.3 14.1-9.6 23.3-10 9.2.4 17 3.7 23.3 10z"/></svg>
  49. </span>
  50. <strong>Bilibili</strong>
  51. </a>
  52. and
  53. <a href="https://twitter.com/Wcowin_">
  54. <span class="twemoji twitter">
  55. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
  56. </span>
  57. <strong>Twitter</strong>
  58. </a>
  59. </div>
  60. <script>var content,el=document.querySelector("[data-md-component=announce]");el&&(content=el.querySelector(".md-typeset"),__md_hash(content.innerHTML)===__md_get("__announce")&&(el.hidden=!0))</script>
  61. </aside>
  62. </div>
  63. <header class="md-header" data-md-component="header">
  64. <nav class="md-header__inner md-grid" aria-label="页眉">
  65. <a href=".." title="Mkdocs-Wcowin中文主题" class="md-header__button md-logo" aria-label="Mkdocs-Wcowin中文主题" data-md-component="logo">
  66. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  67. </a>
  68. <label class="md-header__button md-icon" for="__drawer">
  69. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  70. </label>
  71. <div class="md-header__title" data-md-component="header-title">
  72. <div class="md-header__ellipsis">
  73. <div class="md-header__topic">
  74. <span class="md-ellipsis">
  75. Mkdocs-Wcowin中文主题
  76. </span>
  77. </div>
  78. <div class="md-header__topic" data-md-component="header-topic">
  79. <span class="md-ellipsis">
  80. 留言板
  81. </span>
  82. </div>
  83. </div>
  84. </div>
  85. <form class="md-header__option" data-md-component="palette">
  86. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="blue-grey" data-md-color-accent="indigo" aria-label="切换至夜间模式" type="radio" name="__palette" id="__palette_1">
  87. <label class="md-header__button md-icon" title="切换至夜间模式" for="__palette_2" hidden>
  88. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 4.09-2.53 1.94.91 3.06-2.63-1.81-2.63 1.81.91-3.06-2.53-1.94L12.44 4l1.06-3 1.06 3 3.19.09m3.5 6.91-1.64 1.25.59 1.98-1.7-1.17-1.7 1.17.59-1.98L15.75 11l2.06-.05L18.5 9l.69 1.95 2.06.05m-2.28 4.95c.83-.08 1.72 1.1 1.19 1.85-.32.45-.66.87-1.08 1.27C15.17 23 8.84 23 4.94 19.07c-3.91-3.9-3.91-10.24 0-14.14.4-.4.82-.76 1.27-1.08.75-.53 1.93.36 1.85 1.19-.27 2.86.69 5.83 2.89 8.02a9.96 9.96 0 0 0 8.02 2.89m-1.64 2.02a12.08 12.08 0 0 1-7.8-3.47c-2.17-2.19-3.33-5-3.49-7.82-2.81 3.14-2.7 7.96.31 10.98 3.02 3.01 7.84 3.12 10.98.31Z"/></svg>
  89. </label>
  90. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="black" data-md-color-accent="indigo" aria-label="切换至日间模式" type="radio" name="__palette" id="__palette_2">
  91. <label class="md-header__button md-icon" title="切换至日间模式" for="__palette_1" hidden>
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0-7 2.39 3.42C13.65 5.15 12.84 5 12 5c-.84 0-1.65.15-2.39.42L12 2M3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29L3.34 7m.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14L3.36 17M20.65 7l-1.77 3.79a7.023 7.023 0 0 0-2.38-4.15l4.15.36m-.01 10-4.14.36c.59-.51 1.12-1.14 1.54-1.86.42-.73.69-1.5.83-2.29L20.64 17M12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44L12 22Z"/></svg>
  93. </label>
  94. </form>
  95. <label class="md-header__button md-icon" for="__search">
  96. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  97. </label>
  98. <div class="md-search" data-md-component="search" role="dialog">
  99. <label class="md-search__overlay" for="__search"></label>
  100. <div class="md-search__inner" role="search">
  101. <form class="md-search__form" name="search">
  102. <input type="text" class="md-search__input" name="query" aria-label="搜索" placeholder="搜索" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  103. <label class="md-search__icon md-icon" for="__search">
  104. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  106. </label>
  107. <nav class="md-search__options" aria-label="查找">
  108. <a href="javascript:void(0)" class="md-search__icon md-icon" title="分享" aria-label="分享" data-clipboard data-clipboard-text="" data-md-component="search-share" tabindex="-1">
  109. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7 0-.24-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.15c-.05.21-.08.43-.08.66 0 1.61 1.31 2.91 2.92 2.91 1.61 0 2.92-1.3 2.92-2.91A2.92 2.92 0 0 0 18 16.08Z"/></svg>
  110. </a>
  111. <button type="reset" class="md-search__icon md-icon" title="清空当前内容" aria-label="清空当前内容" tabindex="-1">
  112. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  113. </button>
  114. </nav>
  115. <div class="md-search__suggest" data-md-component="search-suggest"></div>
  116. </form>
  117. <div class="md-search__output">
  118. <div class="md-search__scrollwrap" data-md-scrollfix>
  119. <div class="md-search-result" data-md-component="search-result">
  120. <div class="md-search-result__meta">
  121. 正在初始化搜索引擎
  122. </div>
  123. <ol class="md-search-result__list" role="presentation"></ol>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. <div class="md-header__source">
  130. <a href="https://github.com/Wcowin/Mkdocs-Wcowin" title="前往仓库" class="md-source" data-md-component="source">
  131. <div class="md-source__icon md-icon">
  132. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
  133. </div>
  134. <div class="md-source__repository">
  135. Mkdocs-Wcowin
  136. </div>
  137. </a>
  138. </div>
  139. </nav>
  140. </header>
  141. <div class="md-container" data-md-component="container">
  142. <nav class="md-tabs" aria-label="标签" data-md-component="tabs">
  143. <div class="md-grid">
  144. <ul class="md-tabs__list">
  145. <li class="md-tabs__item">
  146. <a href="../blog/Mkdocs/mkdocs1/" class="md-tabs__link">
  147. MKdocs中文教程
  148. </a>
  149. </li>
  150. <li class="md-tabs__item">
  151. <a href="../develop/Markdown/markdown/" class="md-tabs__link">
  152. 建设MKdocs技能指北
  153. </a>
  154. </li>
  155. <li class="md-tabs__item">
  156. <a href="../tag/" class="md-tabs__link">
  157. 标签
  158. </a>
  159. </li>
  160. <li class="md-tabs__item md-tabs__item--active">
  161. <a href="./" class="md-tabs__link">
  162. 留言板
  163. </a>
  164. </li>
  165. <li class="md-tabs__item">
  166. <a href="../blog/" class="md-tabs__link">
  167. Blogger
  168. </a>
  169. </li>
  170. <li class="md-tabs__item">
  171. <a href="../about/link/" class="md-tabs__link">
  172. 友链
  173. </a>
  174. </li>
  175. <li class="md-tabs__item">
  176. <a href="../about/geren/" class="md-tabs__link">
  177. 关于
  178. </a>
  179. </li>
  180. </ul>
  181. </div>
  182. </nav>
  183. <main class="md-main" data-md-component="main">
  184. <div class="md-main__inner md-grid">
  185. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  186. <div class="md-sidebar__scrollwrap">
  187. <div class="md-sidebar__inner">
  188. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="导航栏" data-md-level="0">
  189. <label class="md-nav__title" for="__drawer">
  190. <a href=".." title="Mkdocs-Wcowin中文主题" class="md-nav__button md-logo" aria-label="Mkdocs-Wcowin中文主题" data-md-component="logo">
  191. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  192. </a>
  193. Mkdocs-Wcowin中文主题
  194. </label>
  195. <div class="md-nav__source">
  196. <a href="https://github.com/Wcowin/Mkdocs-Wcowin" title="前往仓库" class="md-source" data-md-component="source">
  197. <div class="md-source__icon md-icon">
  198. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
  199. </div>
  200. <div class="md-source__repository">
  201. Mkdocs-Wcowin
  202. </div>
  203. </a>
  204. </div>
  205. <ul class="md-nav__list" data-md-scrollfix>
  206. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  207. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  208. <label class="md-nav__link" for="__nav_1" id="__nav_1_label" tabindex="">
  209. <span class="md-ellipsis">
  210. MKdocs中文教程
  211. </span>
  212. <span class="md-nav__icon md-icon"></span>
  213. </label>
  214. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  215. <label class="md-nav__title" for="__nav_1">
  216. <span class="md-nav__icon md-icon"></span>
  217. MKdocs中文教程
  218. </label>
  219. <ul class="md-nav__list" data-md-scrollfix>
  220. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  221. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1_1" >
  222. <label class="md-nav__link" for="__nav_1_1" id="__nav_1_1_label" tabindex="">
  223. <span class="md-ellipsis">
  224. MKdocs教程
  225. </span>
  226. <span class="md-nav__icon md-icon"></span>
  227. </label>
  228. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_1_1_label" aria-expanded="false">
  229. <label class="md-nav__title" for="__nav_1_1">
  230. <span class="md-nav__icon md-icon"></span>
  231. MKdocs教程
  232. </label>
  233. <ul class="md-nav__list" data-md-scrollfix>
  234. <li class="md-nav__item">
  235. <a href="../blog/Mkdocs/mkdocs1/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. 利用mkdocs部署静态网页至GitHub pages
  238. </span>
  239. </a>
  240. </li>
  241. <li class="md-nav__item">
  242. <a href="../blog/Mkdocs/mkdocs2/" class="md-nav__link">
  243. <span class="md-ellipsis">
  244. Mkdocs部署静态网页至GitHub pages配置说明(mkdocs.yml)
  245. </span>
  246. </a>
  247. </li>
  248. <li class="md-nav__item">
  249. <a href="../blog/Mkdocs/mkdocs3/" class="md-nav__link">
  250. <span class="md-ellipsis">
  251. 解决 mkdocs部署 Github Pages 自定义域名失效的问题
  252. </span>
  253. </a>
  254. </li>
  255. <li class="md-nav__item">
  256. <a href="../blog/Mkdocs/mkdocsblog/" class="md-nav__link">
  257. <span class="md-ellipsis">
  258. 网站添加Mkdocs博客
  259. </span>
  260. </a>
  261. </li>
  262. </ul>
  263. </nav>
  264. </li>
  265. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1_2" >
  267. <label class="md-nav__link" for="__nav_1_2" id="__nav_1_2_label" tabindex="">
  268. <span class="md-ellipsis">
  269. Mkdocs美化
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_1_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_1_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Mkdocs美化
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../blog/websitebeauty/mkcomments/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. 添加评论系统(giscus为例)
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../blog/websitebeauty/webtalknow/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. 添加在线聊天
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../blog/websitebeauty/linktech/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. 添加友链
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../blog/websitebeauty/mkdocsfont/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. 修改网站字体
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../blog/websitebeauty/shubiao/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. JS实现鼠标样式
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../blog/websitebeauty/backgroud/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. 背景特效
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. </ul>
  325. </nav>
  326. </li>
  327. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  328. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  329. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  330. <span class="md-ellipsis">
  331. 建设MKdocs技能指北
  332. </span>
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  336. <label class="md-nav__title" for="__nav_2">
  337. <span class="md-nav__icon md-icon"></span>
  338. 建设MKdocs技能指北
  339. </label>
  340. <ul class="md-nav__list" data-md-scrollfix>
  341. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  342. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_1" >
  343. <label class="md-nav__link" for="__nav_2_1" id="__nav_2_1_label" tabindex="">
  344. <span class="md-ellipsis">
  345. Markdown
  346. </span>
  347. <span class="md-nav__icon md-icon"></span>
  348. </label>
  349. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_1_label" aria-expanded="false">
  350. <label class="md-nav__title" for="__nav_2_1">
  351. <span class="md-nav__icon md-icon"></span>
  352. Markdown
  353. </label>
  354. <ul class="md-nav__list" data-md-scrollfix>
  355. <li class="md-nav__item">
  356. <a href="../develop/Markdown/markdown/" class="md-nav__link">
  357. <span class="md-ellipsis">
  358. Markdown指南
  359. </span>
  360. </a>
  361. </li>
  362. <li class="md-nav__item">
  363. <a href="../develop/Markdown/MWeb/" class="md-nav__link">
  364. <span class="md-ellipsis">
  365. MWeb Pro
  366. </span>
  367. </a>
  368. </li>
  369. </ul>
  370. </nav>
  371. </li>
  372. <li class="md-nav__item">
  373. <a href="../develop/git/" class="md-nav__link">
  374. <span class="md-ellipsis">
  375. Git 实用技巧
  376. </span>
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../develop/lighthouse/" class="md-nav__link">
  381. <span class="md-ellipsis">
  382. 利用Lighthouse测试网站性能
  383. </span>
  384. </a>
  385. </li>
  386. <li class="md-nav__item">
  387. <a href="../develop/vercel/" class="md-nav__link">
  388. <span class="md-ellipsis">
  389. 如何将 github pages 迁移到 vercel 上托管
  390. </span>
  391. </a>
  392. </li>
  393. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  394. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_5" >
  395. <label class="md-nav__link" for="__nav_2_5" id="__nav_2_5_label" tabindex="">
  396. <span class="md-ellipsis">
  397. 设计美学
  398. </span>
  399. <span class="md-nav__icon md-icon"></span>
  400. </label>
  401. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_5_label" aria-expanded="false">
  402. <label class="md-nav__title" for="__nav_2_5">
  403. <span class="md-nav__icon md-icon"></span>
  404. 设计美学
  405. </label>
  406. <ul class="md-nav__list" data-md-scrollfix>
  407. <li class="md-nav__item">
  408. <a href="../develop/designbeauty/db1/" class="md-nav__link">
  409. <span class="md-ellipsis">
  410. 唐·诺曼—情感设计的三个层次
  411. </span>
  412. </a>
  413. </li>
  414. <li class="md-nav__item">
  415. <a href="../develop/designbeauty/my-to-desihn/" class="md-nav__link">
  416. <span class="md-ellipsis">
  417. 我对设计的一些观点
  418. </span>
  419. </a>
  420. </li>
  421. </ul>
  422. </nav>
  423. </li>
  424. </ul>
  425. </nav>
  426. </li>
  427. <li class="md-nav__item">
  428. <a href="../tag/" class="md-nav__link">
  429. <span class="md-ellipsis">
  430. 标签
  431. </span>
  432. </a>
  433. </li>
  434. <li class="md-nav__item md-nav__item--active">
  435. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  436. <a href="./" class="md-nav__link md-nav__link--active">
  437. <span class="md-ellipsis">
  438. 留言板
  439. </span>
  440. </a>
  441. </li>
  442. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  443. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  444. <div class="md-nav__link md-nav__container">
  445. <a href="../blog/" class="md-nav__link ">
  446. <span class="md-ellipsis">
  447. Blogger
  448. </span>
  449. </a>
  450. <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
  451. <span class="md-nav__icon md-icon"></span>
  452. </label>
  453. </div>
  454. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  455. <label class="md-nav__title" for="__nav_5">
  456. <span class="md-nav__icon md-icon"></span>
  457. Blogger
  458. </label>
  459. <ul class="md-nav__list" data-md-scrollfix>
  460. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  461. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5_2" >
  462. <label class="md-nav__link" for="__nav_5_2" id="__nav_5_2_label" tabindex="">
  463. <span class="md-ellipsis">
  464. 归档
  465. </span>
  466. <span class="md-nav__icon md-icon"></span>
  467. </label>
  468. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_5_2_label" aria-expanded="false">
  469. <label class="md-nav__title" for="__nav_5_2">
  470. <span class="md-nav__icon md-icon"></span>
  471. 归档
  472. </label>
  473. <ul class="md-nav__list" data-md-scrollfix>
  474. <li class="md-nav__item">
  475. <a href="../blog/archive/2023/" class="md-nav__link">
  476. <span class="md-ellipsis">
  477. 2023
  478. </span>
  479. </a>
  480. </li>
  481. </ul>
  482. </nav>
  483. </li>
  484. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  485. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5_3" >
  486. <label class="md-nav__link" for="__nav_5_3" id="__nav_5_3_label" tabindex="">
  487. <span class="md-ellipsis">
  488. 分类
  489. </span>
  490. <span class="md-nav__icon md-icon"></span>
  491. </label>
  492. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_5_3_label" aria-expanded="false">
  493. <label class="md-nav__title" for="__nav_5_3">
  494. <span class="md-nav__icon md-icon"></span>
  495. 分类
  496. </label>
  497. <ul class="md-nav__list" data-md-scrollfix>
  498. <li class="md-nav__item">
  499. <a href="../blog/category/%E7%BD%91%E7%AB%99%E6%9B%B4%E6%96%B0%E8%AE%B0%E5%BD%95/" class="md-nav__link">
  500. <span class="md-ellipsis">
  501. 网站更新记录
  502. </span>
  503. </a>
  504. </li>
  505. <li class="md-nav__item">
  506. <a href="../blog/category/hello/" class="md-nav__link">
  507. <span class="md-ellipsis">
  508. Hello
  509. </span>
  510. </a>
  511. </li>
  512. </ul>
  513. </nav>
  514. </li>
  515. </ul>
  516. </nav>
  517. </li>
  518. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  519. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  520. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="">
  521. <span class="md-ellipsis">
  522. 友链
  523. </span>
  524. <span class="md-nav__icon md-icon"></span>
  525. </label>
  526. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  527. <label class="md-nav__title" for="__nav_6">
  528. <span class="md-nav__icon md-icon"></span>
  529. 友链
  530. </label>
  531. <ul class="md-nav__list" data-md-scrollfix>
  532. <li class="md-nav__item">
  533. <a href="../about/link/" class="md-nav__link">
  534. <span class="md-ellipsis">
  535. 友链
  536. </span>
  537. </a>
  538. </li>
  539. </ul>
  540. </nav>
  541. </li>
  542. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  543. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_7" >
  544. <label class="md-nav__link" for="__nav_7" id="__nav_7_label" tabindex="">
  545. <span class="md-ellipsis">
  546. 关于
  547. </span>
  548. <span class="md-nav__icon md-icon"></span>
  549. </label>
  550. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  551. <label class="md-nav__title" for="__nav_7">
  552. <span class="md-nav__icon md-icon"></span>
  553. 关于
  554. </label>
  555. <ul class="md-nav__list" data-md-scrollfix>
  556. <li class="md-nav__item">
  557. <a href="../about/geren/" class="md-nav__link">
  558. <span class="md-ellipsis">
  559. 作者个人简介
  560. </span>
  561. </a>
  562. </li>
  563. <li class="md-nav__item">
  564. <a href="../about/test/" class="md-nav__link">
  565. <span class="md-ellipsis">
  566. 功能测试
  567. </span>
  568. </a>
  569. </li>
  570. </ul>
  571. </nav>
  572. </li>
  573. </ul>
  574. </nav>
  575. </div>
  576. </div>
  577. </div>
  578. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  579. <div class="md-sidebar__scrollwrap">
  580. <div class="md-sidebar__inner">
  581. <nav class="md-nav md-nav--secondary" aria-label="目录">
  582. </nav>
  583. </div>
  584. </div>
  585. </div>
  586. <div class="md-content" data-md-component="content">
  587. <article class="md-content__inner md-typeset">
  588. <a href="https://github.com/Wcowin/Mkdocs-Wcowin/edit/main/docs/liuyanban.md" title="编辑此页" class="md-content__button md-icon">
  589. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20H6V4h7v5h5v3.1l2-2V8l-6-6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h4v-2m10.2-7c.1 0 .3.1.4.2l1.3 1.3c.2.2.2.6 0 .8l-1 1-2.1-2.1 1-1c.1-.1.2-.2.4-.2m0 3.9L14.1 23H12v-2.1l6.1-6.1 2.1 2.1Z"/></svg>
  590. </a>
  591. <a href="https://github.com/Wcowin/Mkdocs-Wcowin/raw/main/docs/liuyanban.md" title="查看本页的源代码" class="md-content__button md-icon">
  592. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5M9.27 20H6V4h7v5h5v4.07c.7.08 1.36.25 2 .49V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.5a8.15 8.15 0 0 1-1.23-2Z"/></svg>
  593. </a>
  594. <h1 id="畅所欲言">畅所欲言<a class="headerlink" href="#畅所欲言" title="Permanent link"></a></h1>
  595. <!--
  596. Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
  597. Permission is hereby granted, free of charge, to any person obtaining a copy
  598. of this software and associated documentation files (the "Software"), to
  599. deal in the Software without restriction, including without limitation the
  600. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  601. sell copies of the Software, and to permit persons to whom the Software is
  602. furnished to do so, subject to the following conditions:
  603. The above copyright notice and this permission notice shall be included in
  604. all copies or substantial portions of the Software.
  605. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  606. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  607. FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
  608. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  609. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  610. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  611. IN THE SOFTWARE.
  612. -->
  613. <!-- Determine feedback configuration -->
  614. <!-- Determine whether to show feedback -->
  615. <!-- Was this page helpful? -->
  616. <!--
  617. Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
  618. Permission is hereby granted, free of charge, to any person obtaining a copy
  619. of this software and associated documentation files (the "Software"), to
  620. deal in the Software without restriction, including without limitation the
  621. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  622. sell copies of the Software, and to permit persons to whom the Software is
  623. furnished to do so, subject to the following conditions:
  624. The above copyright notice and this permission notice shall be included in
  625. all copies or substantial portions of the Software.
  626. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  627. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  628. FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
  629. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  630. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  631. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  632. IN THE SOFTWARE.
  633. -->
  634. <!-- Comment system -->
  635. <h2 id="__comments">评论</h2>
  636. <!-- Insert generated snippet here -->
  637. <script src="https://giscus.app/client.js"
  638. data-repo="Wcowin/Mkdocs-Wcowin"
  639. data-repo-id="R_kgDOKf920A"
  640. data-category="Show and tell"
  641. data-category-id="DIC_kwDOKf920M4CaHEM"
  642. data-mapping="pathname"
  643. data-strict="0"
  644. data-reactions-enabled="1"
  645. data-emit-metadata="0"
  646. data-input-position="bottom"
  647. data-theme="light"
  648. data-lang="zh-CN"
  649. crossorigin="anonymous"
  650. async>
  651. </script>
  652. <!-- Synchronize Giscus theme with palette -->
  653. <script>
  654. var giscus = document.querySelector("script[src*=giscus]")
  655. // Set palette on initial load
  656. var palette = __md_get("__palette")
  657. if (palette && typeof palette.color === "object") {
  658. var theme = palette.color.scheme === "slate"
  659. ? "transparent_dark"
  660. : "light"
  661. // Instruct Giscus to set theme
  662. giscus.setAttribute("data-theme", theme)
  663. }
  664. // Register event handlers after documented loaded
  665. document.addEventListener("DOMContentLoaded", function() {
  666. var ref = document.querySelector("[data-md-component=palette]")
  667. ref.addEventListener("change", function() {
  668. var palette = __md_get("__palette")
  669. if (palette && typeof palette.color === "object") {
  670. var theme = palette.color.scheme === "slate"
  671. ? "transparent_dark"
  672. : "light"
  673. // Instruct Giscus to change theme
  674. var frame = document.querySelector(".giscus-frame")
  675. frame.contentWindow.postMessage(
  676. { giscus: { setConfig: { theme } } },
  677. "https://giscus.app"
  678. )
  679. }
  680. })
  681. })
  682. </script>
  683. </article>
  684. </div>
  685. <script>var tabs=__md_get("__tabs");if(Array.isArray(tabs))e:for(var set of document.querySelectorAll(".tabbed-set")){var tab,labels=set.querySelector(".tabbed-labels");for(tab of tabs)for(var label of labels.getElementsByTagName("label"))if(label.innerText.trim()===tab){var input=document.getElementById(label.htmlFor);input.checked=!0;continue e}}</script>
  686. </div>
  687. <button type="button" class="md-top md-icon" data-md-component="top" hidden>
  688. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12Z"/></svg>
  689. 回到页面顶部
  690. </button>
  691. </main>
  692. <!--
  693. Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
  694. Permission is hereby granted, free of charge, to any person obtaining a copy
  695. of this software and associated documentation files (the "Software"), to
  696. deal in the Software without restriction, including without limitation the
  697. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  698. sell copies of the Software, and to permit persons to whom the Software is
  699. furnished to do so, subject to the following conditions:
  700. The above copyright notice and this permission notice shall be included in
  701. all copies or substantial portions of the Software.
  702. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  703. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  704. FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
  705. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  706. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  707. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  708. IN THE SOFTWARE.
  709. -->
  710. <!-- Footer -->
  711. <footer class="md-footer">
  712. <!-- Link to previous and/or next page -->
  713. <nav
  714. class="md-footer__inner md-grid"
  715. aria-label="页脚"
  716. hidden
  717. >
  718. <!-- Link to previous page -->
  719. <a
  720. href="../tag/"
  721. class="md-footer__link md-footer__link--prev"
  722. aria-label="上一页: 标签"
  723. >
  724. <div class="md-footer__button md-icon">
  725. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  726. </div>
  727. <div class="md-footer__title">
  728. <span class="md-footer__direction">
  729. 上一页
  730. </span>
  731. <div class="md-ellipsis">
  732. 标签
  733. </div>
  734. </div>
  735. </a>
  736. <!-- Link to next page -->
  737. <a
  738. href="../blog/"
  739. class="md-footer__link md-footer__link--next"
  740. aria-label="下一页: Blog"
  741. >
  742. <div class="md-footer__title">
  743. <span class="md-footer__direction">
  744. 下一页
  745. </span>
  746. <div class="md-ellipsis">
  747. Blog
  748. </div>
  749. </div>
  750. <div class="md-footer__button md-icon">
  751. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4Z"/></svg>
  752. </div>
  753. </a>
  754. </nav>
  755. <!-- Further information -->
  756. <div class="md-footer-meta md-typeset">
  757. <div class="md-footer-meta__inner md-grid">
  758. <div class="md-copyright">
  759. <div class="md-copyright__highlight">
  760. Copyright &copy; 2022~2023 Wcowin/All Rights Reserved.
  761. </div>
  762. Made with
  763. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  764. Material for MkDocs
  765. </a>
  766. </div>
  767. <!-- Social links -->
  768. <center>
  769. <footer>
  770. <a href="https://icp.gov.moe/?keyword=20230640" target="_blank">萌ICP备20230640号</a>
  771. </footer>
  772. </center>
  773. <div class="md-social">
  774. <a href="https://twitter.com/wcowin_" target="_blank" rel="noopener" title="twitter.com" class="md-social__link">
  775. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9L389.2 48zm-24.8 373.8h39.1L151.1 88h-42l255.3 333.8z"/></svg>
  776. </a>
  777. <a href="https://github.com/Wcowin" target="_blank" rel="noopener" title="github.com" class="md-social__link">
  778. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
  779. </a>
  780. <a href="mailto:<wangkewen821@gmail.com>" target="_blank" rel="noopener" title="" class="md-social__link">
  781. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M64 112c-8.8 0-16 7.2-16 16v22.1l172.5 141.6c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z"/></svg>
  782. </a>
  783. <a href="https://space.bilibili.com/1407028951?spm_id_from=333.1007.0.0" target="_blank" rel="noopener" title="space.bilibili.com" class="md-social__link">
  784. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M488.6 104.1c16.7 18.1 24.4 39.7 23.3 65.7v202.4c-.4 26.4-9.2 48.1-26.5 65.1-17.2 17-39.1 25.9-65.5 26.7H92.02c-26.45-.8-48.21-9.8-65.28-27.2C9.682 419.4.767 396.5 0 368.2V169.8c.767-26 9.682-47.6 26.74-65.7C43.81 87.75 65.57 78.77 92.02 78h29.38L96.05 52.19c-5.75-5.73-8.63-13-8.63-21.79 0-8.8 2.88-16.06 8.63-21.797C101.8 2.868 109.1 0 117.9 0s16.1 2.868 21.9 8.603L213.1 78h88l74.5-69.397C381.7 2.868 389.2 0 398 0c8.8 0 16.1 2.868 21.9 8.603 5.7 5.737 8.6 12.997 8.6 21.797 0 8.79-2.9 16.06-8.6 21.79L394.6 78h29.3c26.4.77 48 9.75 64.7 26.1zm-38.8 69.7c-.4-9.6-3.7-17.4-10.7-23.5-5.2-6.1-14-9.4-22.7-9.8H96.05c-9.59.4-17.45 3.7-23.58 9.8-6.14 6.1-9.4 13.9-9.78 23.5v194.4c0 9.2 3.26 17 9.78 23.5s14.38 9.8 23.58 9.8H416.4c9.2 0 17-3.3 23.3-9.8 6.3-6.5 9.7-14.3 10.1-23.5V173.8zm-264.3 42.7c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2-6.2 6.3-14 9.5-23.6 9.5-9.6 0-17.5-3.2-23.6-9.5-6.1-6.3-9.4-14-9.8-23.2v-33.3c.4-9.1 3.8-16.9 10.1-23.2 6.3-6.3 13.2-9.6 23.3-10 9.2.4 17 3.7 23.3 10zm191.5 0c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2-6.1 6.3-14 9.5-23.6 9.5-9.6 0-17.4-3.2-23.6-9.5-7-6.3-9.4-14-9.7-23.2v-33.3c.3-9.1 3.7-16.9 10-23.2 6.3-6.3 14.1-9.6 23.3-10 9.2.4 17 3.7 23.3 10z"/></svg>
  785. </a>
  786. </div>
  787. </div>
  788. </div>
  789. </footer>
  790. </div>
  791. <div class="md-dialog" data-md-component="dialog">
  792. <div class="md-dialog__inner md-typeset"></div>
  793. </div>
  794. <script id="__config" type="application/json">{"base": "..", "features": ["announce.dismiss", "navigation.tracking", "navigation.tabs", "navigation.sections", "navigation.top", "navigation.footer", "search.suggest", "search.highlight", "search.share", "navigation.expand", "navigation.indexes", "content.tabs.link", "content.tooltips", "content.code.copy", "content.action.edit", "content.action.view", "content.code.annotate"], "search": "../assets/javascripts/workers/search.a264c092.min.js", "translations": {"clipboard.copied": "\u5df2\u590d\u5236", "clipboard.copy": "\u590d\u5236", "search.result.more.one": "\u5728\u8be5\u9875\u4e0a\u8fd8\u6709 1 \u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u7ed3\u679c", "search.result.more.other": "\u5728\u8be5\u9875\u4e0a\u8fd8\u6709 # \u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u7ed3\u679c", "search.result.none": "\u6ca1\u6709\u627e\u5230\u7b26\u5408\u6761\u4ef6\u7684\u7ed3\u679c", "search.result.one": "\u627e\u5230 1 \u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u7ed3\u679c", "search.result.other": "# \u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u7ed3\u679c", "search.result.placeholder": "\u952e\u5165\u4ee5\u5f00\u59cb\u641c\u7d22", "search.result.term.missing": "\u7f3a\u5c11", "select.version": "\u9009\u62e9\u5f53\u524d\u7248\u672c"}}</script>
  795. <script src="../assets/javascripts/bundle.726fbb30.min.js"></script>
  796. <script src="../javascripts/extra.js"></script>
  797. <script src="../javascripts/mathjax.js"></script>
  798. <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
  799. <script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
  800. <script src="../ckplayer/js/ckplayer.js"></script>
  801. <script src="https://cdn.jsdelivr.net/npm/gitalk@latest/dist/gitalk.min.js"></script>
  802. <script src="https://cdn.jsdelivr.net/npm/mermaid@10.0.2/dist/add-html-label-6e56ed67.min.js"></script>
  803. <script src="../assets/javascripts/custom.9458f965.min.js"></script>
  804. </body>
  805. </html>