diff --git a/build/wrap-tables.ts b/build/wrap-tables.ts index 99cf6356ae00..e161d5853357 100644 --- a/build/wrap-tables.ts +++ b/build/wrap-tables.ts @@ -5,5 +5,5 @@ import * as cheerio from "cheerio"; export function wrapTables($: cheerio.CheerioAPI) { const figure = $('
'); - $("table").wrap(figure); + $("table, math[display=block]").wrap(figure); }