Skip to content

Commit

Permalink
#19 - trying different conversions to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mhenke committed May 19, 2011
1 parent c8a964b commit b52a9a3
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions cfml100mins.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,7 @@ evaluated first, then the value is assigned to the variable named on the
Go into a CFML file, enter in these example instructions, and observe
the output that CFML gives you back:

<table>
<tr>
<td>*Tag*</td><td>*Script*</td>
</tr>
<tr>
<td>
<pre lang="cfm">
<code>
```cfm
<cfoutput>
<cfset a = 5 />
a = #a#<br/>
Expand All @@ -158,12 +151,9 @@ b = #b#<br/>
<cfset d = "Hello, " />
d = #d#<br/>
</cfoutput>
</code>
</pre>
</td>
<td>
<pre lang="cfm">
<code>
```

```ruby
<cfscript>
a = 5;
writeOutput("a = #a#<br/>");
Expand All @@ -176,11 +166,8 @@ writeOutput("b = #b#<br/>");
d = "Hello, ";
writeOutput("d = #d#<br/>");
</cfscript>
</code>
</pre>
</td>
</tr>
</table>
```

In this second example, we assume the first example is present.

<table>
Expand Down

0 comments on commit b52a9a3

Please sign in to comment.