From: Wolfgang Bangerth Date: Tue, 29 Dec 2015 21:37:42 +0000 (-0600) Subject: De-emphasize connections to the code gallery. X-Git-Tag: v8.4.0-rc2~115^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e3a6b27013e55f8c73c3745a8c10366914fa0f6;p=dealii.git De-emphasize connections to the code gallery. --- 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"; } }