From 739ca9146b48bb88cfe491514941cd37f0ea7cdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 20 Sep 2024 19:14:14 +0200 Subject: [PATCH] doc: workaround to keep \ce working even without a space after. Often the doc contain something like `\cpp int \ce-sized`, and while that worked in 1.8.16, with 1.12 not anymore. Adding an empty tag right after to make it keep working as before. --- doc/Doxyfile-mcss | 2 +- doc/Doxyfile-public | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Doxyfile-mcss b/doc/Doxyfile-mcss index a2f31e0e6..3d2ca1af8 100644 --- a/doc/Doxyfile-mcss +++ b/doc/Doxyfile-mcss @@ -84,7 +84,7 @@ ALIASES = \ "cpp=@code{.cpp}" \ "glsl=@code{.glsl}" \ "cmake=@code{.cmake}" \ - "ce=@endcode" \ + "ce=@endcode" \ "m_div{1}=@xmlonly@endxmlonly" \ "m_enddiv=@xmlonly@endxmlonly" \ "m_span{1}=@xmlonly@endxmlonly" \ diff --git a/doc/Doxyfile-public b/doc/Doxyfile-public index a8f824656..98fc32d58 100644 --- a/doc/Doxyfile-public +++ b/doc/Doxyfile-public @@ -80,7 +80,7 @@ ALIASES = \ "cpp=@code{.cpp}" \ "glsl=@code{.glsl}" \ "cmake=@code{.cmake}" \ - "ce=@endcode" \ + "ce=@endcode" \ "m_div{1}=@xmlonly@endxmlonly" \ "m_enddiv=@xmlonly@endxmlonly" \ "m_span{1}=@xmlonly@endxmlonly" \