Titles used within callouts end up with extra padding beforehand. For an example from here
:::callout
## Authentication Errors
If you get a warning that HTTPS access is deprecated, or a token is required, then you
accidentally cloned the repository using HTTPS and not SSH. You can fix this from the command line
by resetting the remote repository URL setting on your local repo:
~~~bash
$ git remote set-url origin git@github.com:OxfordRSE/oxrse_unit_conv.git
~~~
:::
Renders to (with extra . to force spacing):
.
Authentication Errors
If you get a warning that HTTPS access is deprecated, or a token is required, then you
accidentally cloned the repository using HTTPS and not SSH. You can fix this from the command line
by resetting the remote repository URL setting on your local repo:
But # titles don't add extra space beforehand, to the extent they look too flush to the callout box.
It doesn't look like there's a callout class on the box, it might be helpful to get one so a callout.h1 style override can be added (unless that sort of thing's being intentionally avoided). Alternatively, adding a title argument to callouts like with exercises would help.
Titles used within callouts end up with extra padding beforehand. For an example from here
Renders to (with extra
.
to force spacing):It doesn't look like there's a
callout
class on the box, it might be helpful to get one so acallout.h1
style override can be added (unless that sort of thing's being intentionally avoided). Alternatively, adding atitle
argument to callouts like with exercises would help.