handorgel icon indicating copy to clipboard operation
handorgel copied to clipboard

Different Markup

Open Malin88 opened this issue 5 years ago • 1 comments

How can I make it works with markup like this one:

<div class="handorgel">
  <div class="card>
    <h3 class="handorgel__header">
      <button class="handorgel__header__button">
        Title
      </button>
    </h3>
    <div class="handorgel__content" data-open>
      <div class="handorgel__content__inner">
        Content openened by default
      </div>
    </div>
  </div>
  <div class="card>
    <h3 class="handorgel__header">
      <button class="handorgel__header__button">
        Title
      </button>
    </h3>
    <div class="handorgel__content" data-open>
      <div class="handorgel__content__inner">
        Content openened by default
      </div>
    </div>
  </div>
</div>

?

Malin88 avatar Sep 02 '20 13:09 Malin88

Hi @Malin88 Not possible currently, but I could implement it to make it work with every kind of markup.

oncode avatar Sep 02 '20 14:09 oncode

Now with the new options headerElements and contentElements, you can change the markup like in your example.

oncode avatar Jun 09 '23 17:06 oncode