docsifyjs / docsifyjs/docsify

Docs Update: HTML Wrappers in markdown

未关闭
#1,293 3 条评论 4 个 reaction 已指派 1 人 已被 @jhildenbiddle 认领 在 GitHub 查看
enhancement pinned
主要语言
JavaScript
星标
31.5k
派生
5.8k
平均合并
9 天 8 小时
30 天内合并 PR
2

描述

## Feature request

It may be worth adding a note to the docs that describes using HTML wrappers in markdown for targeting elements for CSS or JavaScript.

For example, wrapping a markdown table in a `

` element with a class:

```markdown

| Header | Header |
| -------| ------- |
| Cell | Cell |
| Cell | Cell |


```

Will allow that specific table to be targeted with the following CSS:

```css
.highlight table {
border: 2px solid red;
}
```

The only concern is that while this works with docsify's current markdown processor, other markdown processors may not handle blocks of HTML & markdown the same way. If docsify decides to change markdown processors in the future, this functionality could break. Just something to consider.

#### What problem does this feature solve?

Docsify site owners often want to target specific elements, but markdown provides no standardized mechanism for adding attributes to elements and docsify only offers this functionality on a handful of elements via helpers. This addresses that problem without using docsify-specific markup that may be unintentionally rendered in other environments (GitHub, GitLab, etc.).

#### What does the proposed API look like?

Just a docs update.

#### How should this be implemented in your opinion?

Docs update.

#### Are you willing to work on this yourself?

Sure.

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。