diff --git a/text.mdx b/text.mdx
index 4824e6231..b609d575d 100644
--- a/text.mdx
+++ b/text.mdx
@@ -14,29 +14,27 @@ Best used for section headers.
### Subtitles
-Best use to subsection headers.
+Best used for subsection headers.
```md
### Subtitles
```
-
-Each **title** and **subtitle** creates an anchor and also shows up on the table of contents on the right.
-
+ Each **title** and **subtitle** creates an anchor and also shows up on the table of contents on the right.
## Text Formatting
We support most markdown formatting. Simply add `**`, `_`, or `~` around text to format it.
-| Style | How to write it | Result |
-| ------------- | ----------------- | --------------- |
-| Bold | `**bold**` | **bold** |
-| Italic | `_italic_` | _italic_ |
-| Strikethrough | `~strikethrough~` | ~strikethrough~ |
+| Style | How to write it | Result |
+| ------------- | ----------------- | ----------------- |
+| Bold | `**bold**` | **bold** |
+| Italic | `_italic_` | *italic* |
+| Strikethrough | `~strikethrough~` | ~~strikethrough~~ |
-You can combine these. For example, write `**_bold and italic_**` to get **_bold and italic_** text.
+You can combine these. For example, write `**_bold and italic_**` to get ***bold and italic*** text.
You need to use HTML to write superscript and subscript text. That is, add `` or `` around your text.
@@ -69,9 +67,7 @@ To create a blockquote, add a `>` in front of a paragraph.
### Multiline
-> Dorothy followed her through many of the beautiful rooms in her castle.
->
-> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
+> Dorothy followed her through many of the beautiful rooms in her castle.The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
```md
> Dorothy followed her through many of the beautiful rooms in her castle.
@@ -81,11 +77,11 @@ To create a blockquote, add a `>` in front of a paragraph.
### LaTeX
-Mintlify supports in-line [LaTeX](https://www.latex-project.org) by surrounding your LaTeX code with dollar signs (\$). For example, `$(a^2 + b^2 = c^2)$` will render as $(a^2 + b^2 = c^2)$.
+Mintlify supports in-line [LaTeX](https://www.latex-project.org) by surrounding your LaTeX code with dollar signs ($). For example, `$(a^2 + b^2 = c^2)$` will render as $(a^2 + b^2 = c^2)$.
-Equations on their own line can be created with double dollar signs (\$\$):
+Equations on their own line can be created with double dollar signs ($$):
-$$\exists \, x \notin [0,1]$$
+$$\exists , x \notin \[0,1]$$
```md
$$\exists \, x \notin [0,1]$$
@@ -103,4 +99,4 @@ Markdown syntax also recognizes a double enter in your MDX as a linebreak.
Paragraph 1
Paragraph 2
-```
+```
\ No newline at end of file