diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 7e17f6c99f37..fb93ad75b249 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -2,6 +2,7 @@ @name Directives @description +Directives는 HTML의 새로운 속임수를 알려주는 방법입니다. Directives are a way to teach HTML new tricks. During DOM compilation directives are matched against the HTML and executed. This allows directives to register behavior, or transform the DOM. @@ -9,6 +10,7 @@ Angular comes with a built in set of directives which are useful for building we can be extended such that HTML can be turned into a declarative domain specific language (DSL). # Invoking directives from HTML +# HTML에서 Directives를 호출하기? Directives have camel cased names such as `ngBind`. The directive can be invoked by translating the camel case name into snake case with these special characters `:`, `-`, or `_`. Optionally the