diff --git a/docs/roska/megakakal/index.md b/docs/roska/megakakal/index.md
index f7afa3b..cee60a4 100644
--- a/docs/roska/megakakal/index.md
+++ b/docs/roska/megakakal/index.md
@@ -9,27 +9,27 @@ into assembly.
 ## if
 
 else is just a part you jump over in assembly lol, so EZ XD
-'''
+```
 if (condition) {
 	...
 } else {
 	...
 }
-'''
+```
 
 ## loop
 
 We have only a single type of loop where you are responsible to decide when
 to check and how to exit. Break is just a goto:after-loop ?
 
-'''
+```
 loop {
 	...
 	if (condition) {
 		break;
 	}
 }
-'''
+```
 
 ## func, label ...