docs(core): center specific markdown tables (#28459)

- Removes the hard-coded centering of markdown table cells.
- Centers specific tables that make sense to be centered
This commit is contained in:
Isaac Mann 2024-10-16 07:28:25 -04:00 committed by GitHub
parent 330772053b
commit bb14914275
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 20 additions and 30 deletions

View File

@ -61,7 +61,7 @@ Tasks can fail:
Lets see how varying a few parameters affects the probability of the CI execution failing.
| Number of VMS | Avg Tests per VM | Flaky Test Probability | Slow Test Probability | Broken CI Builds (Flaky) | Slow CI Builds |
| ------------- | ---------------- | ---------------------- | --------------------- | ------------------------ | -------------- |
| :-----------: | :--------------: | :--------------------: | :-------------------: | :----------------------: | :------------: |
| 5 | 10 | 0.1% | 0.3% | 5% | 15% |
| 10 | 10 | 0.1% | 0.3% | 10% | 26% |
| 50 | 10 | 0.1% | 0.3% | 39% | 78% |

View File

@ -166,7 +166,7 @@ Along with all the UI changes to support agents (following their logs and track
When upgrading to this version and anything above it, you will need to use Helm version 0.12.0+:
| Chart Version | Compatible Images |
| ------------- | ---------------------------------- |
| :-----------: | :--------------------------------: |
| <= `0.10.11` | `2306.01.2.patch4` **and earlier** |
| >= `0.11.0` | `2308.22.7` **and later** |
| >= `0.12.0` | `2312.11.7` **and later** |
@ -269,7 +269,7 @@ product. It's faster, it handles resource caching better, and should allow the f
When upgrading to this version and anything above it, you will need to use Helm version 0.11.1:
| Chart Version | Compatible Images |
| ------------- | ---------------------------------- |
| :-----------: | :--------------------------------: |
| <= `0.10.11` | `2306.01.2.patch4` **and earlier** |
| >= `0.11.0` | `2308.22.7` **and later** |

View File

@ -26,7 +26,7 @@ The following environment variables are ones that you can set to change the beha
| NX_INTERACTIVE | boolean | If set to `true`, will allow Nx to prompt you in the terminal to answer some further questions when running generators. |
| NX_GENERATE_QUIET | boolean | If set to `true`, will prevent Nx logging file operations during generate |
| NX_PREFER_TS_NODE | boolean | If set to `true`, Nx will use `ts-node` for local execution of plugins even if `@swc-node/register` is installed. |
| NX_IGNORE_CYCLES | boolean | If set to `true`, Nx will ignore errors created by a task graph circular dependency. Can be overriden on the command line with `--nxIgnoreCycles` |
| NX_IGNORE_CYCLES | boolean | If set to `true`, Nx will ignore errors created by a task graph circular dependency. Can be overridden on the command line with `--nxIgnoreCycles` |
| NX_BATCH_MODE | boolean | If set to `true`, Nx will run task(s) in batches for executors which support batches. |
| NX_SKIP_LOG_GROUPING | boolean | If set to `true`, Nx will not group command's logs on CI. |
| NX_MIGRATE_CLI_VERSION | string | The version of Nx to use for running the `nx migrate` command. If not set, it defaults to `latest`. |

View File

@ -19,7 +19,7 @@ should use `nx migrate` to ensure that they stay on a supported version.
The following are the currently supported major versions of Nx.
| Version | Support Type | Release Date |
| ------- | ------------ | ------------ |
| :-----: | :----------: | :----------: |
| v20 | Current | 2024-10-06 |
| v19 | LTS | 2024-05-06 |
| v18\* | LTS | 2024-02-03 |

View File

@ -56,7 +56,6 @@ import { pill } from './lib/tags/pill.schema';
import { fence } from './lib/nodes/fence.schema';
import { FenceWrapper } from './lib/nodes/fence-wrapper.component';
import { VideoPlayer, videoPlayer } from './lib/tags/video-player.component';
import { td } from './lib/nodes/td.schema';
// TODO fix this export
export { GithubRepository } from './lib/tags/github-repository.component';
@ -70,7 +69,6 @@ export const getMarkdocCustomConfig = (
heading: getHeadingSchema(headingClass),
image: getImageSchema(documentFilePath),
link,
td,
},
tags: {
callout,

View File

@ -1,8 +0,0 @@
import { Schema } from '@markdoc/markdoc';
export const td: Schema = {
render: 'td',
attributes: {
className: { type: 'String', default: 'text-center' },
},
};