From 592c1ea04a65e4f4806b76ec228a084b48d7ecd5 Mon Sep 17 00:00:00 2001 From: Jaemin Shin <jaminshiny@ajou.ac.kr> Date: Sat, 21 Dec 2024 21:40:47 +0900 Subject: [PATCH] Update file README.md --- jinja-main/README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/jinja-main/README.md b/jinja-main/README.md index da4cff0..78aa044 100644 --- a/jinja-main/README.md +++ b/jinja-main/README.md @@ -10,10 +10,9 @@ syntax. Then the template is passed data to render the final document. 포함하는 것: -- Template inheritance and inclusion. -- Define and import macros within templates. -- HTML templates can use autoescaping to prevent XSS from untrusted - user input. +- Template inheritance and inclusion. 템플릿은 상속과 포함 +- Define and import macros within templates. 탬플릿에 매크로를 정의하고 가져올 수 있음 +- HTML templates can use autoescaping to prevent XSS from untrusted user input. 오토이스케이핑을 통해 인가되지 않은 사용자의 XSS 공격을 방지 - A sandboxed environment can safely render untrusted templates. - AsyncIO support for generating templates and calling async functions. @@ -28,9 +27,8 @@ Jinja's philosophy is that while application logic belongs in Python if possible, it shouldn't make the template designer's job difficult by restricting functionality too much. -진자의 철학은 가능한 파이썬의 유연한 논리적 구조를 활용하는 것 입니다. -이를 통하여 템플릿을 만드는 사람들의 업무가 과도하게 엄격한 기능들에의해 방해받지 않도록 합니다. - +진자의 철학은 가능한한 파이썬의 유연한 논리적 구조를 활용하는 것 입니다. +이를 통하여 작업자의 업무가 엄격한 기능에 제한되지 않도록 합니다. ## In A Nutshell -- GitLab