We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db9fdc commit a537bffCopy full SHA for a537bff
src/block_math.rs
@@ -27,5 +27,5 @@ pub fn block_formula(Json(args): Json<Vec<Value>>) -> FnResult<String> {
27
))
28
}
29
};
30
- Ok(format!("<BlockMath>{}</BlockMath>", formula))
+ Ok(format!("<BlockMath math=\"{}\" />", formula))
31
src/inline_math.rs
@@ -27,5 +27,5 @@ pub fn inline_math(Json(args): Json<Vec<Value>>) -> FnResult<String> {
- Ok(format!("<InlineMath>{}</InlineMath>", formula))
+ Ok(format!("<InlineMath math=\"{}\" />", formula))
0 commit comments