diff --git a/jinja-main/README.md b/jinja-main/README.md
index da4cff0cec7c1d1db1957cd98e3101f369a6b595..78aa044429298f82f55ace90d786fa0e6adf0db0 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