1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-08 23:15:29 +02:00
This commit is contained in:
Harvey Kandola 2016-06-17 13:28:10 -07:00
parent 417c0c02a8
commit b5c137eb58
2 changed files with 11 additions and 10 deletions

View file

@ -2,15 +2,14 @@
"indent_size": 4,
"indent_char": " ",
"preserve_newlines": true,
"css":
{
"css": {
"indent_size": 4,
"allowed_file_extensions": ["css", "scss", "sass", "less"]
},
"html":
{
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", ".hbs"]
"html": {
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "hbs"]
},
"js": {
"break_chained_methods": false
}
}

View file

@ -1,5 +1,6 @@
<!DOCTYPE html>
<html>
<head>
{{content-for 'head'}}
<meta charset="utf-8">
@ -13,9 +14,9 @@
<link rel="shortcut icon" href="/favicon.ico?v=1.1" />
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=1.1" sizes="32x32" />
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/documize.css">
{{content-for 'head-footer'}}
<link rel="stylesheet" href="assets/documize.css"> {{content-for 'head-footer'}}
</head>
<body>
{{content-for 'body'}}
<script src="assets/vendor.js"></script>
@ -27,4 +28,5 @@
<script src="codemirror/addon/runmode/colorize.js"></script>
{{content-for 'body-footer'}}
</body>
</html>