You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The HTML source patterns that will result in math equations can be checked [here
10
10
### Referencing characters
11
11
All HTML characters can be added by Unicode code point (decimal) reference.
12
12
```html
13
-
⊗ = Î
13
+
⊗ = ⊗
14
14
```
15
15
There is no need to add every special character by [Unicode](https://www.w3schools.com/charsets/ref_utf_misc_symbols.asp) reference. The HTML characters can be copied straight into your code. Referencing is handy when you are entering characters with `EditText` widget.
16
16
@@ -82,9 +82,9 @@ There are currently five custom functions available for the user. I plan to refa
82
82
text ="$\\F=10$"// sets text
83
83
textColor ="red"// sets text color, default value is "black"
84
84
backgroundColor ="blue"// sets background color, default value is "white"
85
-
}.update()
85
+
}.update()// updates changes
86
86
87
-
//Only after setting textZoom property there is no need to call update()
87
+
//There is no need to call update() after setting textZoom property
88
88
mathView.textZoom =120// set text size based on pixel density, default value is 100 (%)
0 commit comments