Clean up tflite docs table formatting a bit (#5773)

No diff in the rendered html. This just makes the source a bit easier to read by aligning
the columns.
diff --git a/bindings/tflite/README.md b/bindings/tflite/README.md
index 6875a55..b31579b 100644
--- a/bindings/tflite/README.md
+++ b/bindings/tflite/README.md
@@ -67,15 +67,15 @@
 
 ## Support
 
-|   | Glossary
+|     | Glossary
 | --- | --------
-| โœ”๏ธ | Supported and expected to match tflite semantics
-| โš ๏ธ | Supported with compatibility caveats (avoid if possible)
-| ๐Ÿข | Supported with performance caveats (prefer the IREE C API)
-| ๐Ÿšซ | Unimplemented but supportable if needed
-| โ›” | Unsupported and unlikely to ever be (see notes below)
-| ๐Ÿ”’ | Not part of the tflite public API
-| โ” | Unknown; not yet studied
+|  โœ”๏ธ  | Supported and expected to match tflite semantics
+|  โš ๏ธ  | Supported with compatibility caveats (avoid if possible)
+|  ๐Ÿข | Supported with performance caveats (prefer the IREE C API)
+|  ๐Ÿšซ | Unimplemented but supportable if needed
+|  โ›” | Unsupported and unlikely to ever be (see notes below)
+|  ๐Ÿ”’ | Not part of the tflite public API
+|  โ” | Unknown; not yet studied
 
 ### Op Coverage
 
@@ -86,61 +86,61 @@
 Only the public C API functions are supported. The contents of internal
 structures like `TfLiteTensor` and `TfLiteContext` are undefined.
 
-|   | TFLite API |  Notes |
-| --- | -------- | ----- |
-| โœ”๏ธ | `TfLiteVersion` | returns an IREE version string
-|  |  |
-| ๐Ÿ”’ | `TfLiteModel struct` | _implementation detail_
-| โœ”๏ธ | `TfLiteModelCreate` |
-| โœ”๏ธ | `TfLiteModelCreateFromFile` |
-| โœ”๏ธ | `TfLiteModelDelete` |
-|  |  |
-| ๐Ÿ”’ | `TfLiteInterpreterOptions struct` | _implementation detail_
-| โœ”๏ธ | `TfLiteInterpreterOptionsCreate` |
-| โœ”๏ธ | `TfLiteInterpreterOptionsDelete` |
-| ๐Ÿข | `TfLiteInterpreterOptionsSetNumThreads` | interpreters will not share thread pools; see [external contexts](#-external-contexts)
-| โœ”๏ธ | `TfLiteInterpreterOptionsSetErrorReporter` |
-| โ›” | `TfLiteInterpreterOptionsAddBuiltinOp` | IREE's compiler generates code
-| ๐Ÿšซ | `TfLiteInterpreterOptionsAddCustomOp` | [not yet implemented](#-custom-ops)
-| ๐Ÿšซ | `TfLiteInterpreterOptionsSetOpResolver` | [not yet implemented](#-custom-ops)
-| โš ๏ธ | `TfLiteInterpreterOptionsAddDelegate` | available but a no-op; [not needed in IREE](#-delegates)
-| โš ๏ธ | `TfLiteInterpreterOptionsSetUseNNAPI` | available but a no-op; NNAPI not supported
-|  |  |
-| ๐Ÿ”’ | `TfLiteInterpreter struct` | _implementation detail_
-| โœ”๏ธ | `TfLiteInterpreterCreate` |
-| โœ”๏ธ | `TfLiteInterpreterCreateWithSelectedOps` | alias to `TfLiteInterpreterCreate`
-| โœ”๏ธ | `TfLiteInterpreterDelete` |
-| โœ”๏ธ | `TfLiteInterpreterResetVariableTensors` |
-| โœ”๏ธ | `TfLiteInterpreterGetInputTensorCount` |
-| โœ”๏ธ | `TfLiteInterpreterGetInputTensor` |
-| โœ”๏ธ | `TfLiteInterpreterResizeInputTensor` |
-| โœ”๏ธ | `TfLiteInterpreterAllocateTensors` |
-| โœ”๏ธ | `TfLiteInterpreterInvoke` |
-| โœ”๏ธ | `TfLiteInterpreterGetOutputTensorCount` |
-| โœ”๏ธ | `TfLiteInterpreterGetOutputTensor` |
-|  |  |
-| ๐Ÿšซ | `TfLiteTensor struct` | currently opaque; could be exposed with caveats
-| โœ”๏ธ | `TfLiteTensorType` |
-| โœ”๏ธ | `TfLiteTensorNumDims` |
-| โœ”๏ธ | `TfLiteTensorDim` |
-| โœ”๏ธ | `TfLiteTensorByteSize` |
-| โœ”๏ธ | `TfLiteTensorData` |
-| โœ”๏ธ | `TfLiteTensorName` |
-| โœ”๏ธ | `TfLiteTensorQuantizationParams` |
-| โœ”๏ธ | `TfLiteTensorCopyFromBuffer` |
-| โœ”๏ธ | `TfLiteTensorCopyToBuffer` |
+|     | TFLite API                                 | Notes
+| --- | ------------------------------------------ | -----
+|  โœ”๏ธ  | `TfLiteVersion`                            | returns an IREE version string
+|     |                                            |
+|  ๐Ÿ”’ | `TfLiteModel struct`                       | _implementation detail_
+|  โœ”๏ธ  | `TfLiteModelCreate`                        |
+|  โœ”๏ธ  | `TfLiteModelCreateFromFile`                |
+|  โœ”๏ธ  | `TfLiteModelDelete`                        |
+|     |                                            |
+|  ๐Ÿ”’ | `TfLiteInterpreterOptions struct`          | _implementation detail_
+|  โœ”๏ธ  | `TfLiteInterpreterOptionsCreate`           |
+|  โœ”๏ธ  | `TfLiteInterpreterOptionsDelete`           |
+|  ๐Ÿข | `TfLiteInterpreterOptionsSetNumThreads`    | interpreters will not share thread pools; see [external contexts](#-external-contexts)
+|  โœ”๏ธ  | `TfLiteInterpreterOptionsSetErrorReporter` |
+|  โ›” | `TfLiteInterpreterOptionsAddBuiltinOp`     | IREE's compiler generates code
+|  ๐Ÿšซ | `TfLiteInterpreterOptionsAddCustomOp`      | [not yet implemented](#-custom-ops)
+|  ๐Ÿšซ | `TfLiteInterpreterOptionsSetOpResolver`    | [not yet implemented](#-custom-ops)
+|  โš ๏ธ  | `TfLiteInterpreterOptionsAddDelegate`      | available but a no-op; [not needed in IREE](#-delegates)
+|  โš ๏ธ  | `TfLiteInterpreterOptionsSetUseNNAPI`      | available but a no-op; NNAPI not supported
+|     |                                            |
+|  ๐Ÿ”’ | `TfLiteInterpreter struct`                 | _implementation detail_
+|  โœ”๏ธ  | `TfLiteInterpreterCreate`                  |
+|  โœ”๏ธ  | `TfLiteInterpreterCreateWithSelectedOps`   | alias to `TfLiteInterpreterCreate`
+|  โœ”๏ธ  | `TfLiteInterpreterDelete`                  |
+|  โœ”๏ธ  | `TfLiteInterpreterResetVariableTensors`    |
+|  โœ”๏ธ  | `TfLiteInterpreterGetInputTensorCount`     |
+|  โœ”๏ธ  | `TfLiteInterpreterGetInputTensor`          |
+|  โœ”๏ธ  | `TfLiteInterpreterResizeInputTensor`       |
+|  โœ”๏ธ  | `TfLiteInterpreterAllocateTensors`         |
+|  โœ”๏ธ  | `TfLiteInterpreterInvoke`                  |
+|  โœ”๏ธ  | `TfLiteInterpreterGetOutputTensorCount`    |
+|  โœ”๏ธ  | `TfLiteInterpreterGetOutputTensor`         |
+|     |                                            |
+|  ๐Ÿšซ | `TfLiteTensor struct`                      | currently opaque; could be exposed with caveats
+|  โœ”๏ธ  | `TfLiteTensorType`                         |
+|  โœ”๏ธ  | `TfLiteTensorNumDims`                      |
+|  โœ”๏ธ  | `TfLiteTensorDim`                          |
+|  โœ”๏ธ  | `TfLiteTensorByteSize`                     |
+|  โœ”๏ธ  | `TfLiteTensorData`                         |
+|  โœ”๏ธ  | `TfLiteTensorName`                         |
+|  โœ”๏ธ  | `TfLiteTensorQuantizationParams`           |
+|  โœ”๏ธ  | `TfLiteTensorCopyFromBuffer`               |
+|  โœ”๏ธ  | `TfLiteTensorCopyToBuffer`                 |
 
 ### Features
 
-|   | TFLite Feature |  Notes |
-| --- | -------- | ----- |
-| ๐Ÿ”’ | Sparsity | **API not public**; likely possible
-| ๐Ÿ”’ | Complex Numbers | **API not public**; likely possible
-| ๐Ÿ”’ | External Contexts | **API not public**; support possible but API inadequate for performance sensitive applications
-| ๐Ÿšซ | Custom Ops | [not yet implemented](#-custom-ops); can be supported with performance caveats
-| ๐Ÿšซ | Dynamic Model Creation | [avoid doing this and use a compiler](#-dynamic-model-creation); almost all use cases besides specialized tools like REPLs can compile their models offline
-| โ›” | Delegates | concept mismatch; [not needed in IREE](#-delegates) due to its hardware abstraction layer (HAL)
-| โ›” | TFLite Micro | concept mismatch; [compilers are much better at this scale](#-tflite-micro)
+|     | TFLite Feature         | Notes
+| --- | ---------------------- | ------
+| ๐Ÿ”’  | Sparsity               | **API not public**; likely possible
+| ๐Ÿ”’  | Complex Numbers        | **API not public**; likely possible
+| ๐Ÿ”’  | External Contexts      | **API not public**; support possible but API inadequate for performance sensitive applications
+| ๐Ÿšซ  | Custom Ops             | [not yet implemented](#-custom-ops); can be supported with performance caveats
+| ๐Ÿšซ  | Dynamic Model Creation | [avoid doing this and use a compiler](#-dynamic-model-creation); almost all use cases besides specialized tools like REPLs can compile their models offline
+| โ›”  | Delegates              | concept mismatch; [not needed in IREE](#-delegates) due to its hardware abstraction layer (HAL)
+| โ›”  | TFLite Micro           | concept mismatch; [compilers are much better at this scale](#-tflite-micro)
 
 #### ๐Ÿงช External Contexts