diff --git a/cfml100mins.markdown b/cfml100mins.markdown index 5f057b2..72b86d5 100644 --- a/cfml100mins.markdown +++ b/cfml100mins.markdown @@ -42,27 +42,20 @@ We might have a file named `myprogram.cfm` and `Sample.cfc` like this: -
-  
+``` cfm
   
 #s.hello()#
-  
-
-
- +``` -
-  
+``` cfm 
   
    
    
    
   
-  
-
-
+``` @@ -81,16 +74,12 @@ We might have a file named `myprogram.cfm` and `Sample.cfc` like this: -
-  
+``` cfm
   
 s = New Sample ();  
 writeOutput (s.hello ());  
   
-  
-
-
- +```