diff --git a/test/ghost/markdown-magic.html b/test/ghost/markdown-magic.html index cd64695..d7e74e5 100644 --- a/test/ghost/markdown-magic.html +++ b/test/ghost/markdown-magic.html @@ -13,26 +13,28 @@ [^2]: Dogs are usually not red -
The quick brown fox1 jumped over the lazy dog2.
+The quick brown fox[^1] jumped over the lazy dog[^2].
https://ghost.orglanguage-javascript
+```language-javascript
+ [...]
+ ```
-// # Notifications API
- // RESTful API for creating notifications
- var Promise = require('bluebird'),
- _ = require('lodash'),
- canThis = require('../permissions').canThis,
- errors = require('../errors'),
- utils = require('./utils'),
+Combined with Prism.js in the Ghost theme:
-// Holds the persistent notifications
- notificationsStore = [],
- // Holds the last used id
- notificationCounter = 0,
- notifications;
-
+// # Notifications API
+// RESTful API for creating notifications
+var Promise = require('bluebird'),
+_ = require('lodash'),
+canThis = require('../permissions').canThis,
+errors = require('../errors'),
+utils = require('./utils'),
-```
\ No newline at end of file
+// Holds the persistent notifications
+notificationsStore = [],
+// Holds the last used id
+notificationCounter = 0,
+notifications;
+
\ No newline at end of file