Skip to main content

charset

Use when reviewing templates, rendered HTML, or shared components related to Declare UTF-8 character encoding. Validate the final browser-facing markup, not just the source framework abstraction.

설치로 이동

소스 정보

저장소
thedaviddias/Front-End-Checklist
최근 소스 활동
2026년 5월 30일 03:29
감지된 SKILL.md 언어
영어
스타
74,155
포크
6,739

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
2 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
charset
description
Use when reviewing templates, rendered HTML, or shared components related to Declare UTF-8 character encoding. Validate the final browser-facing markup, not just the source framework abstraction.
metadata
{"category":"html","priority":"critical","difficulty":"beginner","estimatedTime":"5","source":"frontendchecklist.io","url":"https://frontendchecklist.io/en/rules/html/charset"}
# Declare UTF-8 character encoding Missing or incorrect charset causes mojibake (garbled text), broken special characters, and security vulnerabilities from character encoding attacks. ## Quick Reference - Add `<meta charset="UTF-8">` as the first element in <head> - Must appear within the first 1024 bytes of the document - UTF-8 supports all languages and special characters ## Check Verify that this HTML document declares UTF-8 character encoding in the head section and that it's positioned early in the document. ## Fix Add <meta charset="UTF-8"> as the first meta tag in the head section of the HTML document. ## Explain Explain why UTF-8 character encoding is essential for international content support and preventing character display issues. ## Code Review Review templates, server-rendered HTML, and shared components that output markup related to Declare UTF-8 character encoding. Flag exact elements, attributes, and routes where the rendered HTML violates the rule. --- For full implementation details, code examples, and framework-specific guidance, see `references/rule.md`. Rule page: https://frontendchecklist.io/en/rules/html/charset
GitHub에서 보기