Skip to content

Commit 3a618db

Browse files
kevhuangnetman92
authored andcommitted
docs(guide/Conceptual Overview): remove text from in-page anchor tags
The in-page anchor tags that serve as bookmarks for information about views and models have visible text content that unintentionally makes them seem like clickable links navigating to other parts of the page or to entirely different pages. Closes angular#11450
1 parent fe715cc commit 3a618db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/concepts.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Try out the Live Preview above, and then let's walk through the example and desc
5757
This looks like normal HTML, with some new markup. In Angular, a file like this is called a
5858
<a name="template">{@link templates template}</a>. When Angular starts your application, it parses and
5959
processes this new markup from the template using the <a name="compiler">{@link compiler compiler}</a>.
60-
The loaded, transformed and rendered DOM is then called the <a name="view">view</a>.
60+
The loaded, transformed and rendered DOM is then called the <a name="view"></a>*view*.
6161

6262
The first kind of new markup are the <a name="directive">{@link directive directives}</a>.
6363
They apply special behavior to attributes or elements in the HTML. In the example above we use the
@@ -79,7 +79,7 @@ An <a name="expression">{@link expression expression}</a> in a template is a Jav
7979
to read and write variables. Note that those variables are not global variables.
8080
Just like variables in a JavaScript function live in a scope,
8181
Angular provides a <a name="scope">{@link scope scope}</a> for the variables accessible to expressions.
82-
The values that are stored in variables on the scope are referred to as the <a name="model">model</a>
82+
The values that are stored in variables on the scope are referred to as the <a name="model"></a>*model*
8383
in the rest of the documentation.
8484
Applied to the example above, the markup directs Angular to "take the data we got from the input widgets
8585
and multiply them together".

0 commit comments

Comments
 (0)