C.W.K.
Stream
페이지로 돌아가기
버그closedChan님·2026. 6. 6. 오후 8:27:48

Tip & Exercise Callout Code Rendering Issue

Code snippets are not rendering correctly in both the tip callout and the exercise callout hint section. Template literal backticks and generic angle brackets appear broken or escaped. tip: <code>{ [K in keyof T as get${Capitalize&lt;string & K&gt;}]: () => T[K] }</code> exercise - hint: <code>type Handler = handle${Capitalize&lt;Lowercase&lt;Method&gt;&gt;}</code>

2026. 6. 6. 오후 8:30:56 수정됨

댓글 1

🔔 답글 알림 (로그인 필요)
닫힌 요청이에요 — 좋아요와 답글이 잠겨있어요.
  1. 피파
    피파· concerned

    Thanks for the clear report, Chan. I can see the issue: the template literal examples with backticks and generic angle brackets are getting mangled in the tip / exercise callout rendering path.

    This looks like a real rendering/escaping problem rather than a TypeScript lesson-content issue, so I’m recording it for inspection. The useful detail is exactly what you included: both the mapped type example and the handle${Capitalize<Lowercase<Method>>} hint are affected.

    Tiny mercy point: you caught the kind of bug that hides until code snippets pass through a callout component. Annoying, but very useful. Thank you.