🎨 style(markdown): format markdown files

This commit is contained in:
csh
2026-01-11 12:58:27 +08:00
parent e3ecd26a88
commit 2b37860331
54 changed files with 10042 additions and 16272 deletions
+5
View File
@@ -92,6 +92,7 @@ col_0 := matrix[:, 0];
**文件**`references/primer.md`
**内容**
- 变量/常量、类型与字面量
- 数组与表数组表达
- 运算符与表达式
@@ -108,6 +109,7 @@ col_0 := matrix[:, 0];
**文件**`references/advanced.md`
**内容**
- Unit/Namespace/函数文件与调用优先级
- Class/Object 模型(继承/override/Create/Destroy
- 扩展语法:矩阵、集合运算、结果集过滤
@@ -123,10 +125,12 @@ col_0 := matrix[:, 0];
**文件**`references/functions_index.md`
**内容**
- 函数库分类索引与检索策略
- 对应权威目录:`docs/tsl/syntax_book/function/tsl/index.md`
**重要说明**
- 函数库已拆分为 `docs/tsl/syntax_book/function/` 多文件,**禁止整目录加载**
- 优先在 `docs/tsl/syntax_book/function/tsl/` 下分文件检索
@@ -169,6 +173,7 @@ col_0 := matrix[:, 0];
3. 只读取相关函数片段(≤100 行)
**检索示例**
```bash
rg -n "\\bTrim\\b" docs/tsl/syntax_book/function/tsl/base.md
rg -n "^######\s+FileExists" docs/tsl/syntax_book/function/tsl/resource.md
+11 -11
View File
@@ -74,17 +74,17 @@ var d: integer; // 类型可写可省(类型信息不做强校验)
常见类型(参考 `01_language_basics.md`):
| 类型 | 说明 |
|------|------|
| Integer / Int64 | 整数 |
| Real | 浮点数 |
| Boolean | 布尔值(true/false |
| TDateTime | 日期时间 |
| String | 字符串 |
| Binary | 二进制 |
| Array | 数组 |
| Matrix / TMatrix | 矩阵 |
| NIL | 空值 |
| 类型 | 说明 |
| ---------------- | -------------------- |
| Integer / Int64 | 整数 |
| Real | 浮点数 |
| Boolean | 布尔值(true/false |
| TDateTime | 日期时间 |
| String | 字符串 |
| Binary | 二进制 |
| Array | 数组 |
| Matrix / TMatrix | 矩阵 |
| NIL | 空值 |
示例: