Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6d8c195

Browse files
RFenolioNarretz
authored andcommitted
style(guide/Conceptual Overview): clean up conceptual table overview.
Clean up the conceptual overview table to make it cleaner and easier to look at. Closes #12620
1 parent 1a5ea22 commit 6d8c195

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/content/guide/concepts.ngdoc

+16-16
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
This section briefly touches on all of the important parts of AngularJS using a simple example.
99
For a more in-depth explanation, see the {@link tutorial/ tutorial}.
1010

11-
| Concept | Description |
12-
|------------------|------------------------------------------|
13-
|{@link concepts#template Template} | HTML with additional markup |
14-
|{@link concepts#directive Directives} | extend HTML with custom attributes and elements |
15-
|{@link concepts#model Model} | the data shown to the user in the view and with which the user interacts |
16-
|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it |
17-
|{@link concepts#expression Expressions} | access variables and functions from the scope |
18-
|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions |
19-
|{@link concepts#filter Filter} | formats the value of an expression for display to the user |
20-
|{@link concepts#view View} | what the user sees (the DOM) |
21-
|{@link concepts#databinding Data Binding} | sync data between the model and the view |
22-
|{@link concepts#controller Controller} | the business logic behind views |
23-
|{@link concepts#di Dependency Injection} | Creates and wires objects and functions |
24-
|{@link concepts#injector Injector} | dependency injection container |
25-
|{@link concepts#module Module} | a container for the different parts of an app including controllers, services, filters, directives which configures the Injector |
26-
|{@link concepts#service Service} | reusable business logic independent of views |
11+
| Concept | Description |
12+
|--------------------------------------------|--------------------------------------------------------------------------|
13+
|{@link concepts#template Template} | HTML with additional markup |
14+
|{@link concepts#directive Directives} | extend HTML with custom attributes and elements |
15+
|{@link concepts#model Model} | the data shown to the user in the view and with which the user interacts |
16+
|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it |
17+
|{@link concepts#expression Expressions} | access variables and functions from the scope |
18+
|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions |
19+
|{@link concepts#filter Filter} | formats the value of an expression for display to the user |
20+
|{@link concepts#view View} | what the user sees (the DOM) |
21+
|{@link concepts#databinding Data Binding} | sync data between the model and the view |
22+
|{@link concepts#controller Controller} | the business logic behind views |
23+
|{@link concepts#di Dependency Injection} | Creates and wires objects and functions |
24+
|{@link concepts#injector Injector} | dependency injection container |
25+
|{@link concepts#module Module} | a container for the different parts of an app including controllers, services, filters, directives which configures the Injector |
26+
|{@link concepts#service Service} | reusable business logic independent of views |
2727

2828

2929
## A first example: Data binding

0 commit comments

Comments
 (0)