@@ -4,79 +4,79 @@ Adds support for mathematics spans:
4
4
5
5
## Math Inline
6
6
7
- Allows to define a mathematic block embraced by ` $...$ `
7
+ Allows to define a mathematic inline block embraced by ` $...$ `
8
8
9
9
```````````````````````````````` example
10
- This is a $math block $
10
+ This is a $math inline $
11
11
.
12
- <p>This is a <span class="math">\(math block \)</span></p>
12
+ <p>This is a <span class="math">\(math inline \)</span></p>
13
13
````````````````````````````````
14
14
15
15
Or by ` $$...$$ ` embracing it by:
16
16
17
17
```````````````````````````````` example
18
- This is a $$math block $$
18
+ This is a $$math inline $$
19
19
.
20
- <p>This is a <span class="math">\(math block \)</span></p>
20
+ <p>This is a <span class="math">\(math inline \)</span></p>
21
21
````````````````````````````````
22
22
23
23
Newlines inside an inline math are not allowed:
24
24
25
25
```````````````````````````````` example
26
26
This is not a $$math
27
- block $$ and? this is a $$math block $$
27
+ inline $$ and? this is a $$math inline $$
28
28
.
29
29
<p>This is not a $$math
30
- block $$ and? this is a <span class="math">\(math block \)</span></p>
30
+ inline $$ and? this is a <span class="math">\(math inline \)</span></p>
31
31
````````````````````````````````
32
32
33
33
```````````````````````````````` example
34
34
This is not a $math
35
- block $ and? this is a $math block $
35
+ inline $ and? this is a $math inline $
36
36
.
37
37
<p>This is not a $math
38
- block $ and? this is a <span class="math">\(math block \)</span></p>
38
+ inline $ and? this is a <span class="math">\(math inline \)</span></p>
39
39
````````````````````````````````
40
40
An opening ` $ ` can be followed by a space if the closing is also preceded by a space ` $ ` :
41
41
42
42
```````````````````````````````` example
43
- This is a $ math block $
43
+ This is a $ math inline $
44
44
.
45
- <p>This is a <span class="math">\(math block \)</span></p>
45
+ <p>This is a <span class="math">\(math inline \)</span></p>
46
46
````````````````````````````````
47
47
48
48
```````````````````````````````` example
49
- This is a $ math block $ after
49
+ This is a $ math inline $ after
50
50
.
51
- <p>This is a <span class="math">\(math block \)</span> after</p>
51
+ <p>This is a <span class="math">\(math inline \)</span> after</p>
52
52
````````````````````````````````
53
53
54
54
```````````````````````````````` example
55
- This is a $$ math block $$ after
55
+ This is a $$ math inline $$ after
56
56
.
57
- <p>This is a <span class="math">\(math block \)</span> after</p>
57
+ <p>This is a <span class="math">\(math inline \)</span> after</p>
58
58
````````````````````````````````
59
59
60
60
```````````````````````````````` example
61
- This is a not $ math block $ because there is not a whitespace before the closing
61
+ This is a not $ math inline $ because there is not a whitespace before the closing
62
62
.
63
- <p>This is a not $ math block $ because there is not a whitespace before the closing</p>
63
+ <p>This is a not $ math inline $ because there is not a whitespace before the closing</p>
64
64
````````````````````````````````
65
65
66
66
For the opening ` $ ` it requires a space or a punctuation before (but cannot be used within a word):
67
67
68
68
```````````````````````````````` example
69
- This is not a m$ath block $
69
+ This is not a m$ath inline $
70
70
.
71
- <p>This is not a m$ath block $</p>
71
+ <p>This is not a m$ath inline $</p>
72
72
````````````````````````````````
73
73
74
74
For the closing ` $ ` it requires a space after or a punctuation (but cannot be preceded by a space and cannot be used within a word):
75
75
76
76
```````````````````````````````` example
77
- This is not a $math bloc$k
77
+ This is not a $math inlin$e
78
78
.
79
- <p>This is not a $math bloc$k </p>
79
+ <p>This is not a $math inlin$e </p>
80
80
````````````````````````````````
81
81
82
82
For the closing ` $ ` it requires a space after or a punctuation (but cannot be preceded by a space and cannot be used within a word):
@@ -90,34 +90,34 @@ This is should not match a 16$ or a $15
90
90
A ` $ ` can be escaped between a math inline block by using the escape ` \\ `
91
91
92
92
```````````````````````````````` example
93
- This is a $math \$ block $
93
+ This is a $math \$ inline $
94
94
.
95
- <p>This is a <span class="math">\(math \$ block \)</span></p>
95
+ <p>This is a <span class="math">\(math \$ inline \)</span></p>
96
96
````````````````````````````````
97
97
98
98
At most, two ` $ ` will be matched for the opening and closing:
99
99
100
100
```````````````````````````````` example
101
- This is a $$$math block $$$
101
+ This is a $$$math inline $$$
102
102
.
103
- <p>This is a <span class="math">\($math block $\)</span></p>
103
+ <p>This is a <span class="math">\($math inline $\)</span></p>
104
104
````````````````````````````````
105
105
106
106
Regular text can come both before and after the math inline
107
107
108
108
```````````````````````````````` example
109
- This is a $math block $ with text on both sides.
109
+ This is a $math inline $ with text on both sides.
110
110
.
111
- <p>This is a <span class="math">\(math block \)</span> with text on both sides.</p>
111
+ <p>This is a <span class="math">\(math inline \)</span> with text on both sides.</p>
112
112
````````````````````````````````
113
- A mathematic block takes precedence over standard emphasis ` * ` ` _ ` :
113
+ A mathematic inline block takes precedence over standard emphasis ` * ` ` _ ` :
114
114
115
115
```````````````````````````````` example
116
- This is *a $math* block $
116
+ This is *a $math* inline $
117
117
.
118
- <p>This is *a <span class="math">\(math* block \)</span></p>
118
+ <p>This is *a <span class="math">\(math* inline \)</span></p>
119
119
````````````````````````````````
120
- An opening $$ at the beginning of a line should not be interpreted as a Math block :
120
+ An opening $$ at the beginning of a line should not be interpreted as a Math inline :
121
121
122
122
```````````````````````````````` example
123
123
$$ math $$ starting at a line
0 commit comments