feat: add Guangxi cuisine — beer fish, stuffed peppers, snails & overview (#1789)

* add: 新增阳朔啤酒鱼菜谱

桂林阳朔特色菜,以漓泉啤酒代水焖煮,不去鱼鳞煎至酥脆,
搭配桂林辣椒酱、番茄、青红椒,鱼肉鲜嫩汤汁浓郁。

* add: 新增青椒酿菜谱

广西经典家常酿菜,猪肉或虾滑入馅,煎至虎皮色后焖煮入味,
咸香微辣,汤汁拌饭极佳。

* add: 新增田螺酿菜谱

阳朔"十八酿"之首,螺肉猪肉1:1配紫苏薄荷回填螺壳焖煮,
节假日重菜,上午买螺一下午吐沙即可。

* add: 新增桂林十八酿概览页

以桥接模式(Bridge Pattern)诠释"万物皆可酿"的设计哲学,
容器与馅料解耦自由组合,附十八酿类图及图鉴。

* fix: resolve lint errors — title, wording, image sizes

修正标题格式、不精准描述词(少许/适量/勺)、二级标题数量,
压缩6张超过1MB的图片至合规范围。

* fix: add plain-language description of the "酿" process

---------

Co-authored-by: youhh <youhh@1051233107@qq.com>
This commit is contained in:
huanghuoguoguo
2026-05-12 12:26:56 +08:00
committed by GitHub
parent 09c1fee7a5
commit 4b8cdae1a5
20 changed files with 428 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1856980ee2a85e82d635083fa383de02a76b8cad16827b44a4521efc9d588a4d
size 862875

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:207d01395d28fb1d4a73d8ed7cb69b3aec7d2406c3701dfeeb7ad35d9dc52327
size 721640

View File

@@ -0,0 +1,100 @@
# 桂林十八酿的做法
![架构总览](./arch.png)
桂林十八酿是广西桂林地区的经典酿菜系列,将调好味的肉馅酿入各种食材中,或煎或焖,风味各异。当地有"无酿不成席"的说法2016 年入选市级非物质文化遗产。
预估烹饪难度:★★★
## 必备原料和工具
**容器(Wrapper)—— 管状物即可:**
- 青椒、苦瓜、茄子、田螺、豆腐、香菇、南瓜花
- 柚子、笋、冬瓜、香芋、蒜、番茄、豆芽、蛋、香菌
- 原则:万物皆可酿
**馅料(Filling)—— 肉馅为主:**
- 猪肉馅(基础款,肥瘦比例 3:7
- 虾滑馅fork 版本)
- 鱼肉馅
- 混合馅(猪肉 + 虾滑,猪肉 + 螺肉等自由组合)
## 计算
18 种容器 × 4 种馅料 = 72 种组合,实际常用组合约 20 余种。
核心公式:**管状物 + 肉馅 + 煎/焖 = 酿**
## 操作
### 核心思路
所谓"酿",就是找一个中空的管状食材作为容器,把调好味的肉馅塞进去,再煎或焖熟。
以两道已收录的酿菜为例:
- **青椒酿**:青椒去籽挖空 → 塞入猪肉馅或虾滑 → 煎至虎皮色 → 酱汁焖煮
- **田螺酿**:田螺焯水取肉 → 螺肉与猪肉剁碎混合 → 塞回螺壳 → 紫苏薄荷焖煮
换成其他管状食材,同样的工序再来一遍,就是一道新菜。苦瓜酿、茄子酿、豆腐酿……皆是如此。
酿心(馅料)同样可以变化:
- **猪肉馅**:最基础通用的选择,肥瘦 3:7 口感最佳
- **虾滑馅**:鲜甜弹牙,青椒酿里常用
- **螺肉猪肉混合馅**:田螺酿的灵魂,螺肉与猪肉 1:1加紫苏薄荷
- **混合馅**:猪肉 + 虾滑混搭,鲜甜与油脂香兼得
一个容器配一种馅,换一个就是一道新酿。当地有"万物皆可酿"的说法,正是这个道理。
### 桥接模式(Bridge Pattern)
将"容器"与"馅料"解耦,二者独立变化、自由组合:
```text
抽象层Abstract Wrapper管状物CylindricalContainer
├── 青椒酿 extends CylindricalContainer
├── 苦瓜酿 extends CylindricalContainer
├── 茄子酿 extends CylindricalContainer
├── 螺蛳酿 extends CylindricalContainer
├── 豆腐酿 extends CylindricalContainer
├── 香菇酿 extends CylindricalContainer
├── 南瓜花酿 extends CylindricalContainer
├── 柚子酿 extends CylindricalContainer
├── 笋酿 extends CylindricalContainer
├── 冬瓜酿 extends CylindricalContainer
├── 香芋酿 extends CylindricalContainer
├── 蒜酿 extends CylindricalContainer
├── 番茄酿 extends CylindricalContainer
├── 豆芽酿 extends CylindricalContainer
├── 蛋酿 extends CylindricalContainer
├── 香菌酿 extends CylindricalContainer
└── ... 万物皆可酿
实现层Filling Implementation肉馅MeatFilling
├── 猪肉馅 implements MeatFilling
├── 虾滑馅 implements MeatFilling
├── 鱼肉馅 implements MeatFilling
└── 混合馅 implements MeatFilling // 猪肉 + 虾滑,猪肉 + 螺肉...
```
换一个 wrapper 就是一道新菜,换一种 filling 又是一个变体。
## 附加内容
### 已有菜谱
- [青椒酿](../青椒酿/青椒酿.md) — 青椒酿肉 / 虾滑酿青椒fork 版本)
- [田螺酿](../田螺酿/田螺酿.md) — 螺肉猪肉 1:1配紫苏薄荷
### 酿菜图鉴
![苦瓜酿](./苦瓜酿.png)
![茄子酿](./茄子酿.png)
![竹笋酿](./竹笋酿.png)
![油豆腐酿](./油豆腐酿.png)
![南瓜花酿](./南瓜花酿.png)
如果您遵循本指南的制作流程而发现有问题或可以改进的流程,请提出 Issue 或 Pull request 。

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47c2bb1d1be2fd97c4d84d75080ebc4ebdfd021ba8f857da188942f7449440b9
size 678780

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c5d8090f16301acb42ab7961cab4bde3d7d95f8ca9ecbbed30ef949ca021f18
size 603943

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd2e162eb023d50ab463098f1de1ab8f0364f8dd0cba22a0bc3ba3ef6f4b2a10
size 764382

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b12bf14e3117d09863ede0eea81f937c5f1b32f14a9e1093f75a3762c39870af
size 644820