X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6bed50592d8cfedaf8f135f312fd81409e7756fd..c5df9b21d316da6e6a82feff54be042f503f381d:/Shiar_Sheet/FormatChar.pm diff --git a/Shiar_Sheet/FormatChar.pm b/Shiar_Sheet/FormatChar.pm index f676ead..a3f4cc9 100644 --- a/Shiar_Sheet/FormatChar.pm +++ b/Shiar_Sheet/FormatChar.pm @@ -182,7 +182,8 @@ sub table { if ($cell =~ s/^>//) { # header cell text follows $cell =~ s/_/ /g; # underscores may be used instead of whitespace (for qw//ability) - $rows[-1] .= ''.($cell || ' '); + my $class = $cell =~ s/^-// && ' class="ex"'; + $rows[-1] .= "".($cell || ' '); } next; }