Skip to content

Commit 74d0b4c

Browse files
committed
Fix: used updated htmd to support math.
1 parent be77db8 commit 74d0b4c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ dunce = "1.0.5"
7575
# This is also for integration testing.
7676
futures = { version = "0.3.31", optional = true }
7777
futures-util = "0.3.29"
78-
htmd = { version = "0.5" }
78+
htmd = { git = "https://github.com/bjones1/htmd.git", branch = "math-support", version = "0.5" }
7979
html5ever = "0.36.1"
8080
imara-diff = { version = "0.2", features = [] }
8181
indoc = "2.0.5"

server/src/processing/tests.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,11 +1374,7 @@ fn test_dehydrate_html_1() {
13741374
.unwrap(),
13751375
indoc!(
13761376
"
1377-
${a}_1, b_{2}$
1378-
$a*1, b*2$
1379-
$[a](b)$
1380-
$3 <a> b$
1381-
$a \\; b$
1377+
${a}_1, b_{2}$ $a*1, b*2$ $[a](b)$ $3 <a> b$ $a \\; b$
13821378
13831379
$${a}_1, b_{2}, a*1, b*2, [a](b), 3 <a> b, a \\; b$$
13841380
"

0 commit comments

Comments
 (0)