Skip to content

Commit 1691795

Browse files
committed
Documentation edits made through Mintlify web editor
1 parent c451053 commit 1691795

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

text.mdx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Headers and Text"
33
description: "Text, title, and styling in standard markdown"
4-
icon: 'heading'
4+
icon: "heading"
55
---
66

77
## Titles
@@ -21,20 +21,18 @@ Best used for subsection headers.
2121
```
2222

2323
<Tip>
24-
25-
Each **title** and **subtitle** creates an anchor and also shows up on the table of contents on the right.
26-
24+
Each **title** and **subtitle** creates an anchor and also shows up on the table of contents on the right.
2725
</Tip>
2826

2927
## Text Formatting
3028

3129
We support most markdown formatting. Simply add `**`, `_`, or `~` around text to format it.
3230

33-
| Style | How to write it | Result |
34-
| ------------- | ----------------- | --------------- |
35-
| Bold | `**bold**` | **bold** |
36-
| Italic | `_italic_` | _italic_ |
37-
| Strikethrough | `~strikethrough~` | ~strikethrough~ |
31+
| Style | How to write it | Result |
32+
| ------------- | ----------------- | ----------------- |
33+
| Bold | `**bold**` | **bold** |
34+
| Italic | `_italic_` | _italic_ |
35+
| Strikethrough | `~strikethrough~` | ~~strikethrough~~ |
3836

3937
You can combine these. For example, write `**_bold and italic_**` to get **_bold and italic_** text.
4038

@@ -49,7 +47,7 @@ You need to use HTML to write superscript and subscript text. That is, add `<sup
4947

5048
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).
5149

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.
5351

5452
Relative links like `[link to text](../text)` will open slower because we cannot optimize them as easily.
5553

@@ -81,11 +79,13 @@ To create a blockquote, add a `>` in front of a paragraph.
8179

8280
### LaTeX
8381

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)$$
8583

86-
Equations on their own line can be created with double dollar signs (\$\$):
84+
.
8785

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]$$
8989

9090
```md
9191
$$\exists \, x \notin [0,1]$$
@@ -103,4 +103,4 @@ Markdown syntax also recognizes a double enter in your MDX as a linebreak.
103103
Paragraph 1
104104

105105
Paragraph 2
106-
```
106+
```

0 commit comments

Comments
 (0)