From 5cf429d64e48e1d334e421f3717c40bb98e5eb03 Mon Sep 17 00:00:00 2001 From: profanis Date: Fri, 7 May 2021 09:58:06 +0300 Subject: [PATCH] docs: change the documentation of creating-libraries by providing material links (#41982) while reading the documentation, I noticed that there were references in the material's documentation. Since the links were absent, I had to google the terms and continue my study. I find it easier for the reader not to be distracted by googling, but just clicking and following the suggested links PR Close #41982 --- aio/content/guide/creating-libraries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/creating-libraries.md b/aio/content/guide/creating-libraries.md index e9bf2891c3..a5deb2b99b 100644 --- a/aio/content/guide/creating-libraries.md +++ b/aio/content/guide/creating-libraries.md @@ -93,9 +93,9 @@ A library typically includes *reusable code* that defines components, services, A library is packaged into an npm package for publishing and sharing. This package can also include [schematics](guide/glossary#schematic) that provide instructions for generating or transforming code directly in your project, in the same way that the CLI creates a generic new component with `ng generate component`. A schematic that is packaged with a library can, for example, provide the Angular CLI with the information it needs to generate a component that configures and uses a particular feature, or set of features, defined in that library. -One example of this is Angular Material's navigation schematic which configures the CDK's `BreakpointObserver` and uses it with Material's `MatSideNav` and `MatToolbar` components. +One example of this is [Angular Material's navigation schematic](https://material.angular.io/guide/schematics#navigation-schematic) which configures the CDK's [BreakpointObserver](https://material.angular.io/cdk/layout/overview#breakpointobserver) and uses it with Material's [MatSideNav](https://material.angular.io/components/sidenav/overview) and [MatToolbar](https://material.angular.io/components/toolbar/overview) components. -You can create and include the following kinds of schematics. +You can create and include the following kinds of schematics: * Include an installation schematic so that `ng add` can add your library to a project.