Mercurial > hg > soundsoftware-site
view .svn/pristine/81/81cd3726ba1b626ac8fe2e786c213679ee3b4319.svn-base @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
module CodeRay module Scanners map \ :'c++' => :cpp, :cplusplus => :cpp, :ecmascript => :java_script, :ecma_script => :java_script, :rhtml => :erb, :eruby => :erb, :irb => :ruby, :javascript => :java_script, :js => :java_script, :pascal => :delphi, :patch => :diff, :plain => :text, :plaintext => :text, :xhtml => :html, :yml => :yaml default :text end end