Change bold color

This commit is contained in:
PinkR1ver 2024-03-06 18:12:14 +08:00
parent b84c81906b
commit c0a93fb7f9
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
---
title: Web Server Gateway Interface
tags:
- flask
- python
- web
date: 2024-03-06
---
WSGI 的全程是 **Web Server Gateway Interface**,中文翻译为 **Web 服务器网关接口**。它是一种规范,定义了 Web 服务器和 Python Web 应用程序或框架之间的一种简单而通用的接口。
WSGI 规范的目的是使 Python Web 开发人员能够编写可移植和可扩展的 Web 应用程序。WSGI 应用程序可以与任何兼容 WSGI 的 Web 服务器一起使用,而无需进行任何修改。

View File

@ -55,6 +55,7 @@ ul,
strong {
font-weight: $semiBoldWeight;
color: #F596AA;
}
a {