원클릭으로
jinja2
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | jinja2 |
| description | Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security. |
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Apply this skill when rendering templates with Jinja2 — HTML pages, emails, configuration files, and code generation.
jinja2.Environment(loader=..., autoescape=...) once and reuse it.FileSystemLoader for file-based templates, PackageLoader for installed packages.autoescape=True for HTML templates to prevent XSS.{{ variable }} for output, {% if/for/block %} for control flow.{% extends 'base.html' %}) for layout reuse.autoescape=True when rendering HTML.SandboxedEnvironment for untrusted templates.|e filter explicitly when autoescape is off.Template(string) directly — it bypasses the environment's loader and settings.undefined=StrictUndefined during development.Best practices for building CLI applications with Click including commands, groups, options, and testing.
Best practices for Django web development including models, views, templates, and testing.
Best practices for Flask web development including routing, blueprints, and testing.
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Best practices for writing and organizing tests with pytest including fixtures, parametrize, and plugins.
Best practices for HTTP client usage with Requests including sessions, error handling, and timeouts.