title: Weekly 2020-12-0x03description: [hackettyu’weekly]

RT

  1. https://twitter.com/xianzheshijian/status/1337713656356765697

weekly-2020-12-0x03 - 图1

  1. https://twitter.com/Linmiv/status/1336573220665737216

weekly-2020-12-0x03 - 图2

  1. https://twitter.com/Manjusaka_Lee/status/1336595607704629254

weekly-2020-12-0x03 - 图3

  1. https://twitter.com/JavaScriptDaily/status/1269756275535097856

weekly-2020-12-0x03 - 图4

  1. https://twitter.com/waylybaye/status/1335564975155204098

weekly-2020-12-0x03 - 图5

  1. https://twitter.com/yftzeng/status/1331931390959448064

weekly-2020-12-0x03 - 图6

Share

一组图片

杜扬Seatory的广播

国内开发资源镜像一览

国内开发资源镜像一览

Documents

OAI OpenAPI 原则

OpenAPI-Specification

Note

mkdocs-material

https://squidfunk.github.io/mkdocs-material/reference/formatting/

!!! “formatting”
```md
Text can be {—deleted—} and replacement text {}. This can also be
combined into {} operation. {Highlighting} is also
possible {>>and comments can be added inline<<}.

  1. {==
  2. Formatting can also be applied to blocks, by putting the opening and closing
  3. tags on separate lines and adding new lines between the tags and the content.
  4. ==}
!!! "formatting"<br />
Text can be {--deleted--} and replacement text {}. This can also be<br />
combined into {} operation. {Highlighting} is also<br />
possible {>>and comments can be added inline<<}.

{==

Formatting can also be applied to blocks, by putting the opening and closing tags on separate lines and adding new lines between the tags and the content.

==}


> [https://squidfunk.github.io/mkdocs-material/reference/meta-tags/#customization](https://squidfunk.github.io/mkdocs-material/reference/meta-tags/#customization)


=== "Open Graph"
{% block extrahead %}
{% set title = config.site_name %}
{% if page and page.meta and page.meta.title %}
    {% set title = title ~ " - " ~ page.meta.title %}
{% elif page and page.title and not page.is_homepage %}
    {% set title = title ~ " - " ~ page.title | striptags %}
{% endif %}
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ title }}" />
<meta property="og:description" content="{{ config.site_description }}" />
<meta property="og:url" content="{{ page.canonical_url }}" />
<meta property="og:image" content="<url>" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
{% endblock %}
=== "Twitter Cards"
{% block extrahead %}
{% set title = config.site_name %}
{% if page and page.meta and page.meta.title %}
    {% set title = title ~ " - " ~ page.meta.title %}
{% elif page and page.title and not page.is_homepage %}
    {% set title = title ~ " - " ~ page.title | striptags %}
{% endif %}
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="<username>" />
<meta name="twitter:creator" content="<username>" />
<meta name="twitter:title" content="{{ title }}" />
<meta name="twitter:description" content="{{ config.site_description }}" />
<meta name="twitter:image" content="<url>" />
{% endblock %}

```

Article

  1. 从量化到优化,详解有赞离线数据降本之路