up vote 4 down vote favorite
2
share [g+] share [fb]

I am trying to append formatting to all /* TODO : ... */ tags, but I am having trouble in the multi-line area. I can do single line sed's; but for multiline sed and awk, I don't know.

How do I do this? I'm open to either. Here's what I have so far.

sed 's/\/\/\*[ \t]*TODO[ \t]*:.*/*\//<span style="color:#aaaaaa;font-weight:bold;">&</span>/g'

replace :

int void main ( int h, char * argv[] )
  int a, b; /* TODO :
               - include libraries
               ...
            */
  foobar();
  /* TODO : fix missing {'s */

with :

int void main ( int h, char * argv[] )
  int a, b; <span style="color:#aaaaaa; font-weight:bold;">/* TODO :
               - include libraries
               ...
            */</span>
  foobar();
  <span style="color:#aaaaaa; font-weight:bold;">/* TODO : fix missing {'s */ </span>
link|improve this question

why do you want to insert html-tags into code? working on a syntax highlighter? – akira Mar 4 '10 at 4:08
yep - i'm just having trouble to get it to multiline >_< – rlb.usa Mar 4 '10 at 4:46
1  
What's the meaning of int void main? – Alok Mar 4 '10 at 5:33
feedback

migrated from superuser.com Mar 4 '10 at 5:29

This question came from our site for computer enthusiasts and power users.

1 Answer

gawk 'BEGIN{
  RS="*/"
  replace="<span style=\"color:#aaaaaa; font-weight:bold;\">"
}
/\/\* +TODO/{
    gsub(/\/\* +TODO/,replace" /* TODO")
    RT=RT "</span>"
}
{ print $0RT}
' file

output

$ ./shell.sh
int void main ( int h, char * argv[] )
  int a, b; <span style="color:#aaaaaa; font-weight:bold;"> /* TODO :
               - include libraries
               ...
            */</span>

  foobar();
  <span style="color:#aaaaaa; font-weight:bold;"> /* TODO : fix missing {'s */</span>
link|improve this answer
1  
just as a sidenote: '<span class="todo">' and then use a css section ontop would be better ("stylewise" :)). – akira Mar 4 '10 at 10:18
I have to have inline styles for this one. ; ) – rlb.usa Mar 4 '10 at 13:12
I don't know GAWK but, this doesn't work so I won't accept it as an answer. I ended up doing it with a really long REGEX to ensure nongreedy matches and ruby's gsub function. – rlb.usa Mar 9 '10 at 18:42
what doesn't work?? simply saying "doesn't work" isn't very helpful. – ghostdog74 Mar 9 '10 at 23:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.