summaryrefslogtreecommitdiffstats
path: root/tests/test_sphinx/sourcedirs/extended_syntaxes/index.md
blob: e9fcea93c3b65c1f31779e82d2b2074bafee7aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Test

*disabled*

$a=1$

$$x=5$$

$$x=5$$ (2)

$ a=1 $

a $$c=3$$ b

\begin{equation}
b=2
\end{equation}

```{math}
c=3

d=4
```

Term **1**

: Definition *1*

  second paragraph

Term 2
  ~ Definition 2a
  ~ Definition 2b

Term 3
  :     code block

  : > quote

  : other

:::{figure-md} target
:class: other

![fun-fish](fun-fish.png)

This is a caption in **Markdown**
:::

:::{figure-md} other-target
:class: other

<img src="fun-fish.png" alt="fishy" class="bg-primary mb-1" width="200px">

This is a caption in **Markdown**
:::

linkify URL: www.example.com

- [ ] hallo
- [x] there

Numbered code block:

```typescript
type Result = "pass" | "fail"
```