diff --git a/css/style.css b/css/style.css
index b1f2b5bb8bf145b4db63f634b8a2358956ebecd8..8c8c99ce49f0f5fd75e40c5c1dbd571e77bcd0b7 100644
--- a/css/style.css
+++ b/css/style.css
@@ -794,8 +794,7 @@ svg {
 }
 
 .detail a {
-  float: left;
-  /* text-decoration: inherit; */
+  text-decoration: none;
   color: #2D2D2D;
   font-style: normal;
 }
diff --git a/index.html b/index.html
index 66091ae61b973c854b37cbc20862acb4e4807a8c..f19a9d546a807ca3f877b36923cb40191db10c19 100644
--- a/index.html
+++ b/index.html
@@ -150,6 +150,9 @@ This visualization is not optimized for mobiles. Please come back on a Computer.
 				      <span v-else-if="entry.type === 'link'">
 				         <a :href="item[entry.source]" target="_blank">Link</a>
 				      </span>
+				      <span v-else-if="entry.type === 'markdown'">
+				         <span v-html="getContent(entry)"></span>
+				      </span>
 				      <span v-else>
 				        {{ getContent(entry) }}
 				      </span>
diff --git a/js/sidebars.js b/js/sidebars.js
index dd68aac07f26249a623861fce7ba1778fba2648c..99b635231afbb723941d5bf04d633cb99a3e1e64 100644
--- a/js/sidebars.js
+++ b/js/sidebars.js
@@ -23,6 +23,9 @@ var detailVue = new Vue({
           if(entry.type === 'keywords') {
             return this.item[entry.source].join(', ')
           }
+          if(entry.type === 'markdown') {
+            return marked(this.item[entry.source])
+          }
           if(entry.type === 'function') {
             const column = this.item
             const func = entry.source
diff --git a/js/tags.js b/js/tags.js
index b65e8222b7977c7d9cf6ce8c4e617a2c40fd4a54..452f9eca22ff16144071455fd61a60e26b2f9424 100644
--- a/js/tags.js
+++ b/js/tags.js
@@ -314,7 +314,7 @@ function myTagCloud() {
       chart.filter(filterWords, true);
       chart.update();
       list.highlight();
-      list.split();
+      list.project()
       return
     }
 
@@ -404,7 +404,8 @@ function myTagCloud() {
 
     // list.highlight();
     list.highlight();
-    list.split();
+    // list.split();
+    list.project()
     
   }