From 7e3a6b27013e55f8c73c3745a8c10366914fa0f6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 29 Dec 2015 15:37:42 -0600 Subject: [PATCH] De-emphasize connections to the code gallery. --- doc/doxygen/scripts/steps.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/doxygen/scripts/steps.pl b/doc/doxygen/scripts/steps.pl index d4d7eb40af..05dc8a78c8 100644 --- a/doc/doxygen/scripts/steps.pl +++ b/doc/doxygen/scripts/steps.pl @@ -145,7 +145,12 @@ foreach $step (@ARGV) my $source; foreach $source (split ' ', $buildson) { $source =~ s/step-/Step/g; - print "$source -> $destination\n"; + print "$source -> $destination"; + if ($destination =~ /code_gallery/) + { + print " [style=\"dashed\"]"; + } + print "\n"; } } -- 2.39.5