docs: updated the markup elements (#50586)

PR Close #50586
This commit is contained in:
aanchal
2023-06-06 11:45:27 +05:30
committed by Alex Rickabaugh
parent af4fa9a824
commit ef35ccd522
5 changed files with 5 additions and 5 deletions
@@ -3,5 +3,5 @@
</a>
<a class="button fancy-button">
<i class="material-icons">shopping_cart</i>Checkout
<em class="material-icons">shopping_cart</em>Checkout
</a>
@@ -4,6 +4,6 @@
<!-- #docregion cart-route -->
<a routerLink="/cart" class="button fancy-button">
<i class="material-icons">shopping_cart</i>Checkout
<em class="material-icons">shopping_cart</em>Checkout
</a>
<!-- #enddocregion cart-route -->
+1 -1
View File
@@ -12,7 +12,7 @@ interface WindowWithAnalytics extends Window {
gtag?(...args: any[]): void;
/** Legacy Universal Analytics `analytics.js` field. */
ga?(...args: any[]): void;
};
}
@Injectable()
/**
@@ -44,7 +44,7 @@
<h2>{% if doc.isPrimaryPackage %}Primary entry{% else %}Entry{% endif %} point exports</h2>
{% if not doc.hasPublicExports %}
<p><i>No public exports.</i></p>
<p><em>No public exports.</em></p>
{% endif %}
{% include "includes/deprecation.html" %}
{$ listItems(doc.ngmodules, 'NgModules') $}
@@ -1,6 +1,6 @@
{% import "lib/githubLinks.html" as github -%}
{% import "api/lib/memberHelpers.html" as members -%}
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><i class="material-icons" aria-hidden="true" role="img">code</i></a>{% endmacro %}
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><em class="material-icons" aria-hidden="true" role="img">code</em></a>{% endmacro %}
{% macro label(test, class, text) %}{% if test %}<label class="{$ class $}">{$ text $}</label>{% endif %}{% endmacro %}
{% macro renderLabels(doc) -%}
{$ label(doc.notYetDocumented, 'no-doc', 'UNDOCUMENTED') $}