mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 18:15:52 -05:00
27 lines
525 B
JavaScript
27 lines
525 B
JavaScript
ace.define('ace/snippets/haml', ['require', 'exports', 'module' ], function(require, exports, module) {
|
|
|
|
|
|
exports.snippetText = "snippet t\n\
|
|
%table\n\
|
|
%tr\n\
|
|
%th\n\
|
|
${1:headers}\n\
|
|
%tr\n\
|
|
%td\n\
|
|
${2:headers}\n\
|
|
snippet ul\n\
|
|
%ul\n\
|
|
%li\n\
|
|
${1:item}\n\
|
|
%li\n\
|
|
snippet =rp\n\
|
|
= render :partial => '${1:partial}'\n\
|
|
snippet =rpl\n\
|
|
= render :partial => '${1:partial}', :locals => {}\n\
|
|
snippet =rpc\n\
|
|
= render :partial => '${1:partial}', :collection => @$1\n\
|
|
\n\
|
|
";
|
|
exports.scope = "haml";
|
|
|
|
});
|