File: marko.coffee
Defined in: | src/languages |
Variables Summary
- scope =
-
['text.marko']
Get Atom defaults
- defaultIndentSize =
-
(softTabs ? tabLength : 4)
- defaultIndentChar =
-
(softTabs ? " " : "\t")
- module.exports =
-
{ name: "Marko", namespace: "marko", fallback: ['html'], /* Supported Grammars */ grammars: ["Marko"], /* Supported extensions */ extensions: ["marko"], options: { indent_size: { type: 'integer', "default": defaultIndentSize, minimum: 0, description: "Indentation size/length" }, indent_char: { type: 'string', "default": defaultIndentChar, description: "Indentation character" }, syntax: { type: 'string', "default": "html", "enum": ["html", "concise"], description: "[html|concise]" } }, defaultBeautifier: "Marko Beautifier" }