~ubuntu-branches/ubuntu/wily/po4a/wily-proposed

« back to all changes in this revision

Viewing changes to lib/Locale/Po4a/LaTeX.pm

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas FRANCOIS (Nekral)
  • Date: 2009-04-05 13:45:49 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090405134549-vdbywl1krdhmv4bf
Tags: 0.36.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
360
360
}
361
361
register_generic_environment("tabular,[]{}");
362
362
register_generic_environment("tabular*,{}{}");
 
363
register_generic_environment("tabularx,{}{}");
363
364
register_generic_environment("multicols,{}");
364
365
register_generic_environment("list,{_}{}");
365
366
register_generic_environment("array,[]{}");
375
376
# & is the cell separator, \\ is the line separator
376
377
# '\' is escaped twice
377
378
$env_separators{'array'} =
378
 
  $env_separators{'tabular'} = "(?:&|\\\\\\\\)";
 
379
  $env_separators{'tabular'} =
 
380
  $env_separators{'tabularx'} = "(?:&|\\\\\\\\|\\\\hline)";
379
381
 
380
382
$env_separators{'trivlist'} =
381
383
  $env_separators{'list'} =