Add the ext
property to both the options and object in the files array:
assemble: {
docs: {
options: {
layout: 'default.hbs',
ext: '.html'
},
files: [
import os | |
import time | |
import argparse | |
start = time.time() | |
os.system("nvidia-smi") | |
# import libraries |
LittleEndian(); | |
char signature[4]; | |
uint32 version; | |
uint64 u1a; | |
uint64 u1b; | |
char material_count; | |
uint32 u2; | |
uint32 block_count; |
from sqlalchemy import Column, Integer, String, ForeignKey, create_engine | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import relationship, backref, sessionmaker, joinedload | |
# For this example we will use an in-memory sqlite DB. | |
# Let's also configure it to echo everything it does to the screen. | |
engine = create_engine('sqlite:///:memory:', echo=True) | |
# The base class which our objects will be defined on. | |
Base = declarative_base() |
// [B](f: (A) ⇒ [B]): [B] ; Although the types in the arrays aren't strict (: | |
Array.prototype.flatMap = function(lambda) { | |
return Array.prototype.concat.apply([], this.map(lambda)); | |
}; |
var testObject = { | |
pi: Math.PI, | |
e: Math.E, | |
one: 1, | |
x: 1.5, | |
str: "1.2345" | |
}; | |
var places = 2, | |
json = JSON.stringify(testObject, function(key, value) { |
alert('hello ' + document.location.href); |
Add the ext
property to both the options and object in the files array:
assemble: {
docs: {
options: {
layout: 'default.hbs',
ext: '.html'
},
files: [
(function ($){ | |
var check=false, isRelative=true; | |
$.elementFromPoint = function(x,y) | |
{ | |
if(!document.elementFromPoint) return null; | |
if(!check) | |
{ | |
var sl; |