- [Creating Healing Circles](https://burriscounseling.com): Using the IFS Model in Group Therapy completed Aug 2023.
{{< details "Reveal my selfie with Chris" >}}

{{< /details >}}
Sorry, I didn’t notice the shortcode notation—you’re using {{< >}}, but, with the way the shortcode is written, you need to use {{% %}} when .Inner contains markdown. And you must not indent the markdown between the opening and closing tags by more than 3 spaces.
{{% details "Reveal my selfie with Chris" %}}

{{% /details %}}
But this isn’t great, because the theme author is passing the .Summary through the markdown renderer, which means the .Summary is rendered to HTML twice.
<details {{ if or (.Get "open") (in .Params "open") }}open{{ end }}>
{{- $summary := cond .IsNamedParams (.Get "title") (.Get 0) -}}
<summary>{{ $summary | .Page.RenderString }}</summary>
<div class="markdown-inner">
{{ .Inner }}
</div>
</details>
If it were me, I’d override the shortcode with my own, and consistently call it with one notation or the other.
When I used {{% %}} then the nested list got incorrectly unnested. That’s why I switched to {{< >}} which seems to work as expected with respect to the surrounding list.
Look at the surrounding markup. That’s why I had the indent before:
- [Internal Family Systems](https://ifs-institute.com/practitioners/all/110287)
- [Creating Healing Circles](https://burriscounseling.com): Using the IFS Model in Group Therapy completed Aug 2023.
{{< details "Reveal my selfie with Chris" >}}

{{< /details >}}
- [Intimacy from the Inside Out](https://www.toniherbineblank.com/trainings.html) relationship therapy Basic Training (IFS Level 2) completed Jun 2023.
So you want the details element to be part of previous list item? If yes…
markdown
My list:
- [Internal Family Systems](https://ifs-institute.com/practitioners/all/110287)
- [Creating Healing Circles](https://burriscounseling.com): Using the IFS Model in Group Therapy completed Aug 2023.
{{< details "Reveal my selfie with Chris" >}}

{{< /details >}}
- [Intimacy from the Inside Out](https://www.toniherbineblank.com/trainings.html) relationship therapy Basic Training (IFS Level 2) completed Jun 2023.
layouts/shortcodes/details.html
<details {{ if or (.Get "open") (in .Params "open") }}open{{ end }}>
{{- $summary := cond .IsNamedParams (.Get "title") (.Get 0) -}}
<summary>{{ $summary | .Page.RenderString }}</summary>
<div class="markdown-inner">
{{ .InnerDeindent | .Page.RenderString }}
</div>
</details>
Always use the {{< >}} notation when calling this revised shortcode.