mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
e035d526d6
Restructure frontend directories GitOrigin-RevId: 5a1224ca186f4809df45680a80d374c1c318d7bf
35 lines
No EOL
834 B
JavaScript
35 lines
No EOL
834 B
JavaScript
ace.define("ace/snippets/haml",[], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
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";
|
|
|
|
});
|
|
(function() {
|
|
ace.require(["ace/snippets/haml"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|