Skip to content

Commit

Permalink
converting to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mhenke committed May 18, 2011
1 parent 576b3bb commit f618069
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions cfml100mins.markdown
Expand Up @@ -42,27 +42,20 @@ We might have a file named `myprogram.cfm` and `Sample.cfc` like this:
<tr>

<td>
<pre lang="cfm">
<code>
``` cfm
<cfset s = New Sample() />
<cfoutput>#s.hello()#</cfoutput>
</code>

</pre>

```
</td>

<td>
<pre lang="cfm">
<code>
``` cfm
<cfcomponent>
<cffunction name="hello">
<cfreturn "Hello, World!" />
</cffunction>
</cfcomponent>
</code>

</pre>
```

</td>

Expand All @@ -81,16 +74,12 @@ We might have a file named `myprogram.cfm` and `Sample.cfc` like this:
<tr>

<td>
<pre lang="cfm">
<code>
``` cfm
<cfscript>
s = New Sample ();
writeOutput (s.hello ());
</cfscript>
</code>

</pre>

```
</td>

<td>
Expand Down

0 comments on commit f618069

Please sign in to comment.