diff --git a/docs/extra.css b/docs/extra.css index ffcdf8cd85f10..1751fb4fa18af 100644 --- a/docs/extra.css +++ b/docs/extra.css @@ -7,7 +7,3 @@ .hidden { display: none; } - -.kops_feature_table .md-typeset__table table{ - max-width: fit-content; -} \ No newline at end of file diff --git a/hack/mkdocs_macros/feature_stability_table.py b/hack/mkdocs_macros/feature_stability_table.py index 385aaba5946eb..22f589c1768c1 100644 --- a/hack/mkdocs_macros/feature_stability_table.py +++ b/hack/mkdocs_macros/feature_stability_table.py @@ -37,7 +37,7 @@ def kops_feature_table(**kwargs): } # Create the initial strings to which we'll concatenate the relevant columns - title = '** FEATURE STATE **\n\n|' + title = '|' separators = '|' values = '|' @@ -51,9 +51,9 @@ def kops_feature_table(**kwargs): title += f' {header} |' separators += ' :-: |' if arg == 'k8s_min': - values += f' K8s {kwargs[arg]} |' + values += f' K8s {kwargs[arg]} |' else: - values += f' Kops {kwargs[arg]} |' + values += f' Kops {kwargs[arg]} |' # Create a list object containing all the table rows, # Then return a string object which contains every list item in a new line. @@ -62,9 +62,7 @@ def kops_feature_table(**kwargs): separators, values ] - table = '\n'.join(table) - table = f'