diff --git a/preview.js b/preview.js
index e12b6cb..2c6ee4d 100644
--- a/preview.js
+++ b/preview.js
@@ -33,28 +33,6 @@ module.exports = function (config, mongodataInstance) {
var replaceMarkers = function (html, options) {
- /* markers:
- [type]__[collection]_[name]_[attribute]
-
- script ->
- style ->
-
-
- markdown__[collection]_[nameX]_[attribute]
- markdown -> parse /content/collection/name/attribute into html and include
-
- template__[collectionX]_[nameX]_[attributeX]__context__[collectionY]_[nameY]
- template -> put /content/collectionX/nameX/attributeX thru handlebars.. context=collectionY/nameY/attributeY and include
-
- remove_.*_end_remove
- remove_ -> removes markers and everything in between
-
- [type]__[collection]_[name]
- script ->
- contains all type='script' attributes concatenated based on 'order'
- style ->
- contains all type='style' attributes concatenated based on 'order'
- */
var promises = [];
var script_tag = 'script__([A-Za-z0-9]+)_([A-Za-z0-9]+)_([A-Za-z0-9]+)';