diff --git a/模板-支持数学公式/card-demo-test.html b/模板-支持数学公式/card-demo-test.html
new file mode 100644
index 0000000..5abfb89
--- /dev/null
+++ b/模板-支持数学公式/card-demo-test.html
@@ -0,0 +1,118 @@
+
+
+
+
+> 呵呵呵
+
+# 一级标题
+## 二级标题
+### 三级标题
+---
+**加粗**
+*斜体*
+***加粗斜体***
+***
+> 引用
+---
+- 无序列表
+---
+1. 有序列表
+---
+[链接](https://www.baidu.com)
+***
+
+
+---
+`行内代码`
+***
+```javascript
+// 代码块
+console.log('hello world')
+```
+
+```java
+/**
+* @param src 待拷贝的数组.
+* @param srcPos 待拷贝数组开始位置.
+* @param dest 目标数组.
+* @param destPos 目标数组开始位置.
+* @param length 拷贝长度.
+*/
+@HotSpotIntrinsicCandidate
+public static native void arraycopy(Object src, int srcPos, Object dest, int destPos, int length);
+```
+
+
+
+
+ ***
+超长代码换行显示
+```js
+const example = "This is a very long string that will wrap automatically when exceeding screen
+width.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbccccccccccccccccccccccccccccccccccccccddddddddddddddddddddd";
+```
+
+
+
+
+行内公式:$E=mc^2$
+***
+块级公式:
+$$\frac{d}{dx}(x^n) = nx^{n-1}$$
+***
+矩阵:
+$$\begin{pmatrix} a & b \\ c & d \end{pmatrix}$$
+***
+积分:
+$$\int_{a}^{b} f(x) \, dx$$
+
+
+
+***
+配置 config_showMathError 为 false 时忽略数学公式转换异常
+$2^{层数-1}$ (有异常:unicodeTextInMathMode)
+$E=mc^2%$ (有异常:commentAtEnd %)
+***
+
+
+
+
+
+
+- 下面代码的 HTML 格式中
> 与 < 不能转义为 > 和 <,否则会有异常的下划线
+- 不转换
<code></code>包裹的内容
+
+
public class NumberPair<U extends Number, V extends Number> extends Pair<U,V> {
+
+ public NumberPair(U first, V second) {
+ super(first, second);
+ }
+}
+
+
+
+
+
+