From 05fa388b821a3046f4ef00cc25b08c73d2e1e491 Mon Sep 17 00:00:00 2001 From: jothepro Date: Mon, 13 Feb 2023 20:45:58 +0100 Subject: [PATCH] fix for tables being cut of when centered (#91) --- doxygen-awesome.css | 4 ++++ include/MyLibrary/example.hpp | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/doxygen-awesome.css b/doxygen-awesome.css index 914cefb..6b3c8a9 100644 --- a/doxygen-awesome.css +++ b/doxygen-awesome.css @@ -1603,6 +1603,10 @@ table.doxtable tbody { border-radius: var(--border-radius-small); } +table.markdownTable, table.doxtable, table.fieldtable { + padding: 1px; +} + table.doxtable caption { display: block; } diff --git a/include/MyLibrary/example.hpp b/include/MyLibrary/example.hpp index fc12843..c119e29 100644 --- a/include/MyLibrary/example.hpp +++ b/include/MyLibrary/example.hpp @@ -61,6 +61,13 @@ class Example { *
  • Item 2 * * + * + * A table can be centered with the `
    ` html tag: + *
    + * | Centered | Table | + * |------------------|----------------| + * | with some random | content + *
    * * ## Lists *