diff --git a/cheatfiles/Aurelia.md b/cheatfiles/Aurelia.md
index 084ae5d..3a28581 100644
--- a/cheatfiles/Aurelia.md
+++ b/cheatfiles/Aurelia.md
@@ -2,6 +2,7 @@
## [Configuration and Startup](aurelia-doc://section/1/version/1.0.0)
+```html
@@ -15,12 +16,14 @@
+```
> Warning: Promises in Edge
> Currently, the Edge browser has a serious performance problem with its Promise implementation. This deficiency can greatly increase startup time of your app. If you are targeting the Edge browser, it is highly recommended that you use the [bluebird promise](http://bluebirdjs.com/docs/getting-started.html) library to replace Edge's native implementation. You can do this by simply referencing the library prior to loading system.js.
+ ```javascript
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
@@ -28,8 +31,10 @@
aurelia.start().then(() => aurelia.setRoot());
}
+ ```
+ ```typescript
import {Aurelia} from 'aurelia-framework';
export function configure(aurelia: Aurelia): void {
@@ -39,6 +44,7 @@
aurelia.start().then(() => aurelia.setRoot());
}
+ ```