Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(markdown/plugins/containers): use Token.attrJoin for rendering additional className #4128

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

TheNorthMemory
Copy link

Description

while there is an additional css className, for eg: .my-class onto the custom containers, vitepress is crashed with sth like:

11:19:56 PM [vitepress] Internal server error: Duplicate attribute.

The markdown content like below,

::: info {.my-class id=test}
hello
:::

Using the Token.attrJoin method is solved this problem, rendering as below:

<div class="my-class info custom-block" id="test">
  <p class="custom-block-title">INFO</p>
  <p>hello</p>
</div>

Linked Issues

Additional Context


Tip

The author of this PR can publish a preview release by commenting /publish below.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant