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.

@TheNorthMemory
Copy link
Author

Hi there, a live usage scenario is here https://wechatpay.im/openapi/v3/merchant-service/complaints , the markdown content as below,

::: danger :no_entry_sign: {.im-deprecated}

本接口服务已于 `2020.11.27` (北京时间)下线,文档仅做留存参考。

:::

image

Hopes it shall be merged. @brc-dd

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

Successfully merging this pull request may close these issues.

1 participant