blob: 97e75d204fefbaff9c095790b3f0a59c16329cfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Check whether whitespaces are ignored in the "separators" attribute of the mfenced tag</title>
</head>
<body>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mfenced separators=";">
<mi>a</mi>
<mi>b</mi>
<mi>c</mi>
<mi>d</mi>
</mfenced>
<mfenced separators=",;.">
<mi>a</mi>
<mi>b</mi>
<mi>c</mi>
<mi>d</mi>
</mfenced>
</math>
</body>
</html>
|