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
You can combine these. For example, write `**_bold and italic_**` to get **_bold and italic_** text.
40
38
@@ -49,7 +47,7 @@ You need to use HTML to write superscript and subscript text. That is, add `<sup
49
47
50
48
You can add a link by wrapping text in `[]()`. You would write `[link to google](https://google.com)` to [link to google](https://google.com).
51
49
52
-
Links to pages in your docs need to be root-relative. Basically, you should include the entire folder path. For example, `[link to text](/content/text)` links to the page "Text" in our components section.
50
+
Links to pages in your docs need to be root-relative. Basically, you should include the entire folder path. For example, `[link to text](/content/text)` links to the page ["Text"](/content/text#linking-to-pages) in our components section.
53
51
54
52
Relative links like `[link to text](../text)` will open slower because we cannot optimize them as easily.
55
53
@@ -81,11 +79,13 @@ To create a blockquote, add a `>` in front of a paragraph.
81
79
82
80
### LaTeX
83
81
84
-
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)$.
82
+
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)$$
85
83
86
-
Equations on their own line can be created with double dollar signs (\$\$):
84
+
.
87
85
88
-
$$\exists \, x \notin [0,1]$$
86
+
Equations on their own line can be created with double dollar signs ($$):
87
+
88
+
$$\\exists \\, x \\notin [0,1]$$
89
89
90
90
```md
91
91
$$\exists \, x \notin [0,1]$$
@@ -103,4 +103,4 @@ Markdown syntax also recognizes a double enter in your MDX as a linebreak.
0 commit comments