Hi,
I use some emojis un my titles, but in the TOC they are not displayed.
For instance:
### 📣 Aide chapitrage vidéo des mini-webinaires
displays as
Aide chapitrage vidéo des mini-webinaires
in the toc.
Is there a way to display emojis?
Hi,
I use some emojis un my titles, but in the TOC they are not displayed.
For instance:
### 📣 Aide chapitrage vidéo des mini-webinaires
displays as
Aide chapitrage vidéo des mini-webinaires
in the toc.
Is there a way to display emojis?
그것에 대한 해결책이 없나요?
해결 방법이 있습니다. 유니코드 이모지를 사용하고 백틱 ` 으로 감싸세요.
목차에서는 제목에서 백틱이 제거되지만, 유니코드 이모지는 그대로 유지됩니다.
### Test 1
### `📣` Test 2
### Test 3
단점으로는 게시글에서 보기에는 약간 어색해 보인다는 점입니다:
시각적으로 완벽한 결과를 원하지만 약간 복잡한 방법을 사용한다면:
### Test 1
### <span data-title-emoji>`🧑💻`</span> Test 2
### Test 3
다음과 같은 CSS를 사용하면 됩니다.
span[data-title-emoji] code {
background: inherit;
}
렌더링 결과:
제목에서 이 용도로 [wrap] 은 작동하지 않으므로, 반드시 <span> 을 사용해야 합니다.
대단하네요!!!
정말 감사합니다. 잘 작동합니다 ![]()