Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'origin2/master'
[simgrid.git] / tools / doxygen / fig2dev_postprocessor.pl
1 #! /usr/bin/perl
2
3 # Copyright (c) 2010, 2014. The SimGrid Team.
4 # All rights reserved.
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the license (GNU LGPL) which comes with this package.
8
9 use strict;
10
11 my $print = 0;
12 my $line;
13
14 while($line=<STDIN>) {
15     chomp $line;
16     if($line=~/IMG/) {$print=1;} 
17     if($print) {print $line."\n";}
18     if($line=~/\/MAP/) {$print=0;} 
19 }
20 #perl -pe 's/imagemap/simgrid_modules/g'| perl -pe 's/<IMG/<IMG style=border:0px/g'