# Is there a way to change the position of "Hide Details"?

**URL:** <https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239>\
**Category:** Support\
**Tags:** hide-details\
**Created:** [2017年十一月1日 20:53 UTC](https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239 "2017-11-01T20:53:31Z")\
**Posts on this page:** 4\
**Page:** 1

<div class="post-metadata">

**Author:** ![xiasummer](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/xiasummer/32/82790_2.png) [@xiasummer](https://meta.discourse.org/u/xiasummer)\
**Post date:** [2017年十一月1日 20:53 UTC](https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239/1 "2017-11-01T20:53:31Z")

</div>

Hi, Discourse Markdown is very powerful.

Only a small feature I’m wonder whether it can do.

As we see must be on the very first position to take effect.

> **Summary**
>
> This text will be hidden

But I usually write things in this way

- A

- B

> **Summary**
>
> This text will be hidden

- B3

- C

With code being:

```plaintext
* A

* B

   * B1

   * B2
[details="Summary"]
This text will be hidden
[/details]

   * B3

* C

```

Some times the notes that I want to hide is in like B2. How could I just make it work rightly?

---

<div class="post-metadata">

**Author:** ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)\
**Post date:** [2017年十一月1日 20:56 UTC](https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239/2 "2017-11-01T20:56:41Z")

</div>

This seems to work

```plaintext
* A

* B

   * B1

   * B2
        <details><summary>Summary</summary>This text will be hidden</details>

   * B3

* C

```

Produces:

- A

- B

- C

---

<div class="post-metadata">

**Author:** ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)\
**Post date:** [2019年十二月20日 00:09 UTC](https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239/4 "2019-12-20T00:09:46Z")

</div>



---

<div class="post-metadata">

**Author:** ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)\
**Post date:** [2019年十二月20日 00:35 UTC](https://meta.discourse.org/t/is-there-a-way-to-change-the-position-of-hide-details/73239/5 "2019-12-20T00:35:45Z")

</div>


