Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ public/dist
.vscode-test
*.vsix
*.timestamp-*.mjs
# roborev snapshots
/.roborev/
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,20 @@ hello [underline]{.underline} ~~strikethrough~~ ^super^ ~sub~ [smallcaps]{.small

definition term

: definition content
: definition content

definition term 2

: definition content 2
: definition content 2

------------------------------------------------------------------------

::: {#thm-pythagoras}
#### Pythagoras's Theorem

In a right triangle, the lengths of the two shorter sides $a$, $b$ and the longer side $c$ stand in the relation
$$a^2 + b^2 = c^2.$$
In a right triangle, the lengths of the two shorter sides $a$, $b$ and the longer side $c$ stand in the relation $$
a^2 + b^2 = c^2.
$$
:::

See @thm-pythagoras for details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,21 @@ a = 3
> 1+1
> ```
>
> $$3 = 1 + 1 + 1 = 2 + 1 = 1 + 2$$
> $$
> 3 = 1 + 1 + 1 = 2 + 1 = 1 + 2
> $$
>
> > block quote in block quote
>
> +---------+-------+
> | | |
> +=========+=======+
> | | ``` r |
> | $$1+0$$ | 1+1 |
> | | ``` |
> +---------+-------+
> | 3 | 4 |
> +---------+-------+
> +-----+-------+
> | | |
> +=====+=======+
> | $$ | ``` r |
> | 1+0 | 1+1 |
> | $$ | ``` |
> +-----+-------+
> | 3 | 4 |
> +-----+-------+
>
> : my table caption
>
Expand Down
Loading