From b60e25bbfa286a9cc175e5c1fa4006558f6cfbe7 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 28 Jul 2022 09:35:10 -0400 Subject: [PATCH] Fix generation of the tutorial graph. A new code gallery program has quotes which we need to escape in its tooltip. --- doc/doxygen/scripts/steps.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/doxygen/scripts/steps.pl b/doc/doxygen/scripts/steps.pl index 55a4ebcfc6..8bf6687754 100644 --- a/doc/doxygen/scripts/steps.pl +++ b/doc/doxygen/scripts/steps.pl @@ -84,6 +84,8 @@ foreach $step (@ARGV) my $tooltip = ; close TF; chop $tooltip; + # we need to escape any double-quotes here before putting it in the dot file + $tooltip =~ s/"/\\"/g; # read first line of 'kind' file if it is a step; # otherwise assume it is a code gallery program. for -- 2.39.5