Skip to content

Commit

Permalink
COMP: Fixed how Doxygen aliase are passed via CMake.
Browse files Browse the repository at this point in the history
Added an additional layer of escaping to make sure the escaping required by Doxygen itself survives.
  • Loading branch information
Alex Ciobanu authored and hjmjohnson committed Jan 24, 2025
1 parent 240fa0f commit 9f315af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Utilities/Doxygen/DoxygenConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ set(DOXYGEN_STRIP_FROM_PATH "${ITK_BINARY_DIR}/Utilities/")
set(DOXYGEN_TAB_SIZE "2")
set(DOXYGEN_ALIASES
"starteraliasnotused=@par not used"
"wiki=\\par Wiki Examples:<br> ^^ \\li <a href=\"https://www.itk.org/Wiki/ITK/Examples\">All Media Wiki Examples</a> ^^"
"wikiexample{2}= \\li <a href=\"https://www.itk.org/Wiki/ITK/Examples/\\1\">\\2</a> ^^"
"wiki=\\par Wiki Examples:<br> ^^ \\li <a href=\\\"https://www.itk.org/Wiki/ITK/Examples\\\">All Media Wiki Examples</a> ^^"
"wikiexample{2}= \\li <a href=\\\"https://www.itk.org/Wiki/ITK/Examples/\\1\\\">\\2</a> ^^"
"endwiki=^^ ^^ ^^"
"sphinx=\\par ITK Sphinx Examples:<br> ^^ \\li <a href=\"https://itk.org/ITKExamples\">All ITK Sphinx Examples</a> ^^"
"sphinxexample{2}=\\li <a href=\"https://itk.org/ITKExamples/src/\\1/Documentation.html\">\\2</a> ^^"
"sphinx=\\par ITK Sphinx Examples:<br> ^^ \\li <a href=\\\"https://itk.org/ITKExamples\\\">All ITK Sphinx Examples</a> ^^"
"sphinxexample{2}=\\li <a href=\\\"https://itk.org/ITKExamples/src/\\1/Documentation.html\\\">\\2</a> ^^"
"endsphinx=^^ ^^ ^^")
set(DOXYGEN_TOC_INCLUDE_HEADINGS "0")
set(DOXYGEN_BUILTIN_STL_SUPPORT "YES")
Expand Down
8 changes: 4 additions & 4 deletions Wrapping/DoxygenConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ set(DOXYGEN_STRIP_FROM_PATH "${ITK_BINARY_DIR}/Utilities/")
set(DOXYGEN_TAB_SIZE "2")
set(DOXYGEN_ALIASES
"starteraliasnotused=@par not used"
"wiki=\\par Wiki Examples:<br> ^^ \\li <a href=\"https://www.itk.org/Wiki/ITK/Examples\">All Media Wiki Examples</a> ^^"
"wikiexample{2}= \\li <a href=\"https://www.itk.org/Wiki/ITK/Examples/\\1\">\\2</a> ^^"
"wiki=\\par Wiki Examples:<br> ^^ \\li <a href=\\\"https://www.itk.org/Wiki/ITK/Examples\\\">All Media Wiki Examples</a> ^^"
"wikiexample{2}= \\li <a href=\\\"https://www.itk.org/Wiki/ITK/Examples/\\1\\\">\\2</a> ^^"
"endwiki=^^ ^^ ^^"
"sphinx=\\par ITK Sphinx Examples:<br> ^^ \\li <a href=\"https://itk.org/ITKExamples\">All ITK Sphinx Examples</a> ^^"
"sphinxexample{2}=\\li <a href=\"https://itk.org/ITKExamples/src/\\1/Documentation.html\">\\2</a> ^^"
"sphinx=\\par ITK Sphinx Examples:<br> ^^ \\li <a href=\\\"https://itk.org/ITKExamples\\\">All ITK Sphinx Examples</a> ^^"
"sphinxexample{2}=\\li <a href=\\\"https://itk.org/ITKExamples/src/\\1/Documentation.html\\\">\\2</a> ^^"
"endsphinx=^^ ^^ ^^")
set(DOXYGEN_TOC_INCLUDE_HEADINGS "0")
set(DOXYGEN_BUILTIN_STL_SUPPORT "YES")
Expand Down

0 comments on commit 9f315af

Please sign in to comment.