diff --git a/src/ui/src/components/SlideItem.js b/src/ui/src/components/SlideItem.js
index 09aff69..d0c1eab 100644
--- a/src/ui/src/components/SlideItem.js
+++ b/src/ui/src/components/SlideItem.js
@@ -9,7 +9,8 @@ const EscapeSequences = {
 	""" : '"',
 	"&lt;"   : "<",
 	"&gt;"   : ">",
-	"&amp;"  : "&"
+	"&amp;"  : "&",
+	"&#39;"  : "'"
 };
 const EscapeSequencesRegex = new RegExp(Object.keys(EscapeSequences).join('|'), "g");
 
@@ -27,9 +28,6 @@ const SlideItem = ({item}) => {
 	};
 
 	const content = useMemo(() => {
-		
-		if (item.type === "paragraph")
-			console.log(item.type, item);
 		switch (item.type) {
 			case "heading":
 				const level = item.level || item.depth;
@@ -94,6 +92,8 @@ const SlideItem = ({item}) => {
 					case '"':
 					case "&quot;":
 						return '"';
+					case "&#39;":
+						return "'";
 					default:
 						return "";
 				}
@@ -109,34 +109,4 @@ const SlideItem = ({item}) => {
 	);
 };
 
-export default SlideItem;
-
-/* {
-	"type": "paragraph",
-	"raw": "This is a very fancy **bold** keynote",
-	"text": "This is a very fancy **bold** keynote",
-	"tokens": [
-		{
-			"type": "text",
-			"raw": "This is a very fancy ",
-			"text": "This is a very fancy "
-		},
-		{
-			"type": "strong",
-			"raw": "**bold**",
-			"text": "bold",
-			"tokens": [
-				{
-					"type": "text",
-					"raw": "bold",
-					"text": "bold"
-				}
-			]
-		},
-		{
-			"type": "text",
-			"raw": " keynote",
-			"text": " keynote"
-		}
-	]
-} */
\ No newline at end of file
+export default SlideItem;
\ No newline at end of file