From 89840da9ad97370a6f85698b229fa4719e0709c1 Mon Sep 17 00:00:00 2001
From: Corentin Le Molgat <corentinl@google.com>
Date: Fri, 10 Nov 2023 18:06:45 +0100
Subject: [PATCH] routing: clean README.md

---
 ortools/routing/README.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/ortools/routing/README.md b/ortools/routing/README.md
index 0c17d210884..f4af66a9c2d 100644
--- a/ortools/routing/README.md
+++ b/ortools/routing/README.md
@@ -7,15 +7,15 @@ file formats.
 `solution_serializer.h` contains a generic serializer for routing solutions for
 many formats.
 
-| Problem type  | File format | Corresponding parser | Data sets              |
-| ------------- | ----------- | -------------------- | ---------------------- |
-| TSP           | TSPLIB      | `tsplib_parser.h`    | [TSPLIB95][tsplib95]   |
-| TSPTW         | TSPTW       | `tsptw_parser.h`     | [TSPTW][tsptw]         |
-| PDTSP / TSPPD | PDTSP       | `pdtsp_parser.h`     | [PDTSP][pdtsp]         |
-| CVRP          | TSPLIB      | `tsplib_parser.h`    | [TSPLIB95][tsplib95]   |
-| VRPTW         | Solomon     | `solomon_parser.h`   | [Solomon][solomon], <p> [Homberger][homberger] |
-| CARP          | CARPLIB     | `carplib_parser.h`   | [CARPLIB][carplib]     |
-| NEARP         | NEARPLIB    | `nearplib_parser.h`  | [NEARPLIB][nearplib]   |
+| Problem type | File format | Corresponding parser | Data sets |
+| ------------ | ----------- | -------------------- | --------- |
+| TSP | TSPLIB | `tsplib_parser.h` | [TSPLIB95][tsplib95] |
+| TSPTW | TSPTW | `tsptw_parser.h` | [TSPTW][tsptw] |
+| PDTSP / TSPPD | PDTSP | `pdtsp_parser.h` | [PDTSP][pdtsp] |
+| CVRP | TSPLIB | `tsplib_parser.h` | [TSPLIB95][tsplib95] |
+| VRPTW | Solomon | `solomon_parser.h` | [Solomon][solomon], [Homberger][homberger] |
+| CARP | CARPLIB | `carplib_parser.h` | [CARPLIB][carplib] |
+| NEARP | NEARPLIB | `nearplib_parser.h` | [NEARPLIB][nearplib] |
 
 In the future, this folder will contain the whole routing solver.