You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Markdown tables align correctly on class pages but appear too far to the left on topics pages. Topics pages are those created by groups. In the two examples below, I am using the same markdown file and including it in the detailed description for a class or topics page with the \include{doc} command.
This screenshot is from a class page:
This screenshot is from a topic page:
Note how the table is shifted left on the topic page.
Solution
I fixed this by changing margin-left: calc(0px - var(--spacing-large)); to margin-left: calc(0px); in the doxygen-awesome.css, however I'm not yet sure what knock-on effects this will have. Moreover, its probably a bodge. I wonder what the proper approach would be.
Problem
Markdown tables align correctly on class pages but appear too far to the left on topics pages. Topics pages are those created by groups. In the two examples below, I am using the same markdown file and including it in the detailed description for a class or topics page with the
\include{doc}
command.This screenshot is from a class page:

This screenshot is from a topic page:

Note how the table is shifted left on the topic page.
Solution
I fixed this by changing
margin-left: calc(0px - var(--spacing-large));
tomargin-left: calc(0px);
in thedoxygen-awesome.css
, however I'm not yet sure what knock-on effects this will have. Moreover, its probably a bodge. I wonder what the proper approach would be.The text was updated successfully, but these errors were encountered: