Skip to content

Commit 64b78d5

Browse files
can-oezkanpkozlowski-opensource
authored andcommitted
docs: escape pipe ("|") characters in markdown tables to fix rendering issues (angular#57822)
PR Close angular#57822
1 parent 716f0d5 commit 64b78d5

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

adev/src/content/kitchen-sink.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ Get ready to:
6666

6767
### `<docs-callout>` Attributes
6868

69-
| Attributes | Details |
70-
|:--- |:--- |
71-
| `title` | Callout title |
72-
| card body contents | Anything between `<docs-callout>` and `</docs-callout>` |
73-
| `helpful` (default) | `critical` | `important` | (Optional) Adds styling and icons based on severity level |
69+
| Attributes | Details |
70+
|:--- |:--- |
71+
| `title` | Callout title |
72+
| card body contents | Anything between `<docs-callout>` and `</docs-callout>` |
73+
| `helpful` (default) \| `critical` \| `important` | (Optional) Adds styling and icons based on severity level |
7474

7575
## Pills
7676

adev/src/content/reference/configs/workspace-config.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ For more information, see [Workspace and project file structure](reference/confi
3434

3535
The following properties are a set of options that customize the Angular CLI.
3636

37-
| Property | Details | Value type | Default value |
38-
|:--- |:--- |:--- |:--- |
39-
| `analytics` | Share anonymous usage data with the Angular Team. A boolean value indicates whether or not to share data, while a UUID string shares data using a pseudonymous identifier. | `boolean` | `string` | `false` |
40-
| `cache` | Control [persistent disk cache](cli/cache) used by [Angular CLI Builders](tools/cli/cli-builder). | [Cache options](#cache-options) | `{}` |
41-
| `schematicCollections`| List schematics collections to use in `ng generate`. | `string[]` | `[]` |
42-
| `packageManager` | The preferred package manager tool to use. | `npm` | `cnpm` | `pnpm` | `yarn` | `npm` |
43-
| `warnings` | Control Angular CLI specific console warnings. | [Warnings options](#warnings-options) | `{}` |
37+
| Property | Details | Value type | Default value |
38+
|:--- |:--- |:--- |:--- |
39+
| `analytics` | Share anonymous usage data with the Angular Team. A boolean value indicates whether or not to share data, while a UUID string shares data using a pseudonymous identifier. | `boolean` \| `string` | `false` |
40+
| `cache` | Control [persistent disk cache](cli/cache) used by [Angular CLI Builders](tools/cli/cli-builder). | [Cache options](#cache-options) | `{}` |
41+
| `schematicCollections`| List schematics collections to use in `ng generate`. | `string[]` | `[]` |
42+
| `packageManager` | The preferred package manager tool to use. | `npm` \| `cnpm` \| `pnpm` \| `yarn` | `npm` |
43+
| `warnings` | Control Angular CLI specific console warnings. | [Warnings options](#warnings-options) | `{}` |
4444

4545
### Cache options
4646

47-
| Property | Details | Value type | Default value |
48-
|:--- |:--- |:--- |:--- |
49-
| `enabled` | Configure whether disk caching is enabled for builds. | `boolean` | `true` |
50-
| `environment` | Configure in which environment disk cache is enabled.<br><br>* `ci` enables caching only in continuous integration (CI) environments.<br>* `local` enables caching only *outside* of CI environments.<br>* `all` enables caching everywhere. | `local` | `ci` | `all` | `local` |
51-
| `path` | The directory used to stored cache results. | `string` | `.angular/cache` |
47+
| Property | Details | Value type | Default value |
48+
|:--- |:--- |:--- |:--- |
49+
| `enabled` | Configure whether disk caching is enabled for builds. | `boolean` | `true` |
50+
| `environment` | Configure in which environment disk cache is enabled.<br><br>* `ci` enables caching only in continuous integration (CI) environments.<br>* `local` enables caching only *outside* of CI environments.<br>* `all` enables caching everywhere. | `local` \| `ci` \| `all` | `local` |
51+
| `path` | The directory used to stored cache results. | `string` | `.angular/cache` |
5252

5353
### Warnings options
5454

@@ -63,7 +63,7 @@ The following top-level configuration properties are available for each project,
6363
| Property | Details | Value type | Default value |
6464
|:--- |:--- |:--- |:--- |
6565
| `root` | The root directory for this project's files, relative to the workspace directory. Empty for the initial application, which resides at the top level of the workspace. | `string` | None (required) |
66-
| `projectType` | One of "application" or "library" An application can run independently in a browser, while a library cannot. | `application` | `library` | None (required) |
66+
| `projectType` | One of "application" or "library" An application can run independently in a browser, while a library cannot. | `application` \| `library` | None (required) |
6767
| `sourceRoot` | The root directory for this project's source files. | `string` | `''` |
6868
| `prefix` | A string that Angular prepends to selectors when generating new components, directives, and pipes using `ng generate`. Can be customized to identify an application or feature area. | `string` | `'app'` |
6969
| `schematics` | A set of schematics that customize the `ng generate` sub-command option defaults for this project. See the [Generation schematics](#schematics) section. | See [schematics](#schematics) | `{}` |
@@ -409,8 +409,8 @@ Several options can be used to fine-tune the optimization of an application.
409409
| Options | Details | Value type | Default value |
410410
|:--- |:--- |:--- |:--- |
411411
| `scripts` | Enables optimization of the scripts output. | `boolean` | `true` |
412-
| `styles` | Enables optimization of the styles output. | `boolean` | [Styles optimization options](#styles-optimization-options) | `true` |
413-
| `fonts` | Enables optimization for fonts. This requires internet access. | `boolean` | [Fonts optimization options](#fonts-optimization-options) | `true` |
412+
| `styles` | Enables optimization of the styles output. | `boolean` \| [Styles optimization options](#styles-optimization-options) | `true` |
413+
| `fonts` | Enables optimization for fonts. This requires internet access. | `boolean` \| [Fonts optimization options](#fonts-optimization-options) | `true` |
414414

415415
#### Styles optimization options
416416

0 commit comments

Comments
 (0)