Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix double titles on admonitions page #1

Merged
merged 3 commits into from
Jan 3, 2025
Merged
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
58 changes: 26 additions & 32 deletions book/content/admonitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,149 +37,143 @@ It's got a certain charm to it.

## `attention`

::::::{attention} Attention
::::::{attention}
Climate change is real.
::::::
```text
::::::{attention} Attention
::::::{attention}
Climate change is real.
::::::
```

## `caution`

::::::{caution} Caution
::::::{caution}
Cliff ahead: Don't drive off it.
::::::
```text
::::::{caution} Caution
::::::{caution}
Cliff ahead: Don't drive off it.
::::::
```

## `danger`

::::::{danger} Danger
::::::{danger}
Mad scientist at work!
::::::
```text
::::::{danger} Danger
::::::{danger}
Mad scientist at work!
::::::
```

## `error`

::::::{error} Error
::::::{error}
Does not compute.
::::::
```text
::::::{error} Error
::::::{error}
Does not compute.
::::::
```

## `hint`

::::::{hint} Hint
::::::{hint}
Insulators insulate, until they are subject to ______ voltage.
::::::
```text
::::::{hint} Hint
::::::{hint}
Insulators insulate, until they are subject to ______ voltage.
::::::
```

## `important`

::::::{important} Important
::::::{important}
Tech is not neutral, nor is it apolitical.
::::::
```text
::::::{important} Important
::::::{important}
Tech is not neutral, nor is it apolitical.
::::::
```

## `note`

::::::{note} Note
::::::{note}
This is a note.
::::::
```text
::::::{note} Note
::::::{note}
This is a note.
::::::
```

## `seealso`

::::::{seealso} See Also
::::::{seealso}
Other relevant information.
::::::
```text
::::::{seealso} See Also
::::::{seealso}
Other relevant information.
::::::
```

## `tip`

::::::{tip} Tip
::::::{tip}
25% if the service is good.
::::::
```text
::::::{tip} Tip
::::::{tip}
25% if the service is good.
::::::
```

## `warning`

::::::{warning} Warning
::::::{warning}
Reader discretion is strongly advised.
::::::
```text
::::::{warning} Warning
::::::{warning}
Reader discretion is strongly advised.
::::::
```

## `versionadded`

::::::{versionadded} Version Added
**v0.1.1**
::::::{versionadded} v0.1.1
Here's a version added message.
::::::
```text
::::::{versionadded} Version Added
**v0.1.1**
::::::{versionadded} v0.1.1
Here's a version added message.
::::::
```

## `versionchanged`

::::::{versionchanged} Version Changed
**v0.1.1**
::::::{versionchanged} v0.1.1
Here's a version changed message.
::::::
```text
::::::{versionchanged} Version Changed
**v0.1.1**
::::::{versionchanged} v0.1.1
Here's a version changed message.
::::::
```

## `deprecated`

::::::{deprecated} Deprecated
**v0.1.1**
::::::{deprecated} v0.1.1
Here's a deprecation message.
::::::
```text
::::::{deprecated} Deprecated
**v0.1.1**
::::::{deprecated} v0.1.1
Here's a deprecation message.
::::::
```
Loading