The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
if (! this.sh_languages) {
  this.sh_languages = {};
}
sh_languages['properties'] = [
  [
    [
      /#/g,
      'sh_comment',
      1
    ],
    [
      /!/g,
      'sh_comment',
      1
    ],
    [
      /([^="]+)([ \t]*)(=)/g,
      ['sh_type', 'sh_normal', 'sh_symbol'],
      -1
    ]
  ],
  [
    [
      /$/g,
      null,
      -2
    ]
  ]
];