# GT with Page-Level Processing Disabled


# GT Table (page-level `html-table-processing: none`)

This page uses the YAML frontmatter option `html-table-processing: none` to disable Quarto's table processing at the page level, rather than per-table with `tab_options(quarto_disable_processing=True)`.


    /opt/hostedtoolcache/Python/3.13.14/x64/lib/python3.13/site-packages/great_tables/_render_checks.py:37: RenderWarning: Rendering table with .cols_width() in Quarto may result in unexpected behavior. This is because Quarto performs custom table processing. Either use all percentage widths, or set .tab_options(quarto_disable_processing=True) to disable Quarto table processing.
      warnings.warn(


| World Cities      |            |          |
|-------------------|------------|----------|
| Population & Area |            |          |
| City              | Population | Area_km2 |
| London            | 8982000    | 1572     |
| Paris             | 2161000    | 105      |
| Tokyo             | 13960000   | 2194     |
| Sydney            | 5312000    | 12368    |


# Markdown Table on the Same Page

This Markdown table is also on the page with `html-table-processing: none`, so it should also be free of Quarto's Bootstrap table classes.

| City   | Country |
|--------|---------|
| London | UK      |
| Paris  | France  |
| Tokyo  | Japan   |
