# Misunderstanding of shortcode syntax in 0.55

**URL:** https://discourse.gohugo.io/t/misunderstanding-of-shortcode-syntax-in-0-55/18538
**Category:** support
**Created:** [May 6, 2019, 2:08pm UTC](https://discourse.gohugo.io/t/misunderstanding-of-shortcode-syntax-in-0-55/18538 "2019-05-06T14:08:46Z")
**Posts on this page:** 1
**Showing post:** 25

<div class="post-metadata">

### Author: ![fritzmg](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/fritzmg/32/8717_2.png) [@fritzmg](https://discourse.gohugo.io/u/fritzmg)
#### Post date: [May 19, 2019, 5:13am UTC](https://discourse.gohugo.io/t/misunderstanding-of-shortcode-syntax-in-0-55/18538/25 "2019-05-19T05:13:01Z")

</div>

@bep there is still another breaking change though. Consider my example from before:

myshortcode.html:

```auto
<div class="notice">
{{ .Inner }}
</div>

```

```auto
{{% myshortcode %}}
Lorem ipsum [dolor](https://example.org) sit amet.
{{% /myshortcode %}}

```

Now, as we know, this would not render the markdown of the inner content, without specifying `| markdonify`.

_However_, even with `| markdownify`, the output will not be as expected.

Output before 0.55:

```auto
<div class="notice">
<p>Lorem ipsum <a href="https://example.org">dolor</a> sit amet.</p>
</div>

```

Output in 0.55:

```auto
<div class="notice">
Lorem ipsum <a href="https://example.org">dolor</a> sit amet.
</div>

```

It does not render the paragraph.

Another test:

```auto
{{% myshortcode %}}
Lorem ipsum [dolor](https://example.org) sit amet.

Consectetuer adipiscing elitr.
{{% /myshortcode %}}

```

This in turn will render as

```auto
<div class="notice">
<p>Lorem ipsum <a href="https://example.org">dolor</a> sit amet.</p>
<p>Consectetuer adipiscing elitr.</p>
</div>

```

in 0.55 (with `{{ .Inner | markdownify }}`).

Sure we could use the `{{ $_hugo_config :={ “version”: 1 }}}` setting. But obviously I would rather continue with the new approach.

---

_[View the full topic](https://discourse.gohugo.io/t/misunderstanding-of-shortcode-syntax-in-0-55/18538)._
