@@ -159,28 +159,28 @@ export abstract class PlatformRef {
159159 /**
160160 * Instantiate a new Angular application on the page.
161161 *
162- * # What is an application?
162+ *## What is an application?
163163 *
164164 * Each Angular application has its own zone, change detection, compiler,
165165 * renderer, and other framework components. An application hosts one or more
166166 * root components, which can be initialized via `ApplicationRef.bootstrap()`.
167167 *
168- * # Application Bindings
168+ *## Application Bindings
169169 *
170170 * Angular applications require numerous providers to be properly instantiated.
171171 * When using `application()` to create a new app on the page, these providers
172172 * must be provided. Fortunately, there are helper functions to configure
173173 * typical providers, as shown in the example below.
174174 *
175- * # Example
175+ * ### Example
176176 * ```
177177 * var myAppBindings = [MyAppService];
178178 *
179179 * platform()
180180 * .application([applicationCommonBindings(), applicationDomBindings(), myAppBindings])
181181 * .bootstrap(MyTopLevelComponent);
182182 * ```
183- * # See Also
183+ *## See Also
184184 *
185185 * See the {@link bootstrap} documentation for more details.
186186 */
@@ -191,7 +191,7 @@ export abstract class PlatformRef {
191191 * are only available asynchronously. One such use case is to initialize an
192192 * application running in a web worker.
193193 *
194- * # Usage
194+ *## Usage
195195 *
196196 * `bindingFn` is a function that will be called in the new application's zone.
197197 * It should return a `Promise` to a list of providers to be used for the
@@ -281,19 +281,19 @@ export abstract class ApplicationRef {
281281 /**
282282 * Bootstrap a new component at the root level of the application.
283283 *
284- * # Bootstrap process
284+ *## Bootstrap process
285285 *
286286 * When bootstrapping a new root component into an application, Angular mounts the
287287 * specified application component onto DOM elements identified by the [componentType]'s
288288 * selector and kicks off automatic change detection to finish initializing the component.
289289 *
290- * # Optional Bindings
290+ *## Optional Bindings
291291 *
292292 * Bindings for the given component can optionally be overridden via the `providers`
293293 * parameter. These providers will only apply for the root component being added and any
294294 * child components under it.
295295 *
296- * # Example
296+ * ### Example
297297 * ```
298298 * var app = platform.application([applicationCommonBindings(), applicationDomBindings()];
299299 * app.bootstrap(FirstRootComponent);
0 commit comments