diff options
author | CY Lim <cylim@CYs-Macbook-2015.local> | 2015-11-02 11:18:19 +1100 |
---|---|---|
committer | CY Lim <cylim@CYs-Macbook-2015.local> | 2015-11-02 11:18:19 +1100 |
commit | 094761f6936e9fbe625a9175a6404e2dca7d6504 (patch) | |
tree | 0999371c1f48011acdfabe8eb3b0e01760833e06 /coldfusion.html.markdown | |
parent | 44ca091c73afe13ec8760021cfed1d77afc5e4a5 (diff) | |
parent | 463cec82d08a58c6452b5b2beec5ee3b99e33ba6 (diff) |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'coldfusion.html.markdown')
-rw-r--r-- | coldfusion.html.markdown | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/coldfusion.html.markdown b/coldfusion.html.markdown index 70804a1e..d49ad254 100644 --- a/coldfusion.html.markdown +++ b/coldfusion.html.markdown @@ -3,13 +3,17 @@ language: coldfusion filename: learncoldfusion.cfm contributors: - ["Wayne Boka", "http://wboka.github.io"] + - ["Kevin Morris", "https://twitter.com/kevinmorris"] --- ColdFusion is a scripting language for web development. [Read more here.](http://www.adobe.com/products/coldfusion-family.html) -```html +### CFML +_**C**old**F**usion **M**arkup **L**anguage_ +ColdFusion started as a tag-based language. Almost all functionality is available using tags. +```html <em>HTML tags have been provided for output readability</em> <!--- Comments start with "<!---" and end with "--->" ---> @@ -314,8 +318,13 @@ ColdFusion is a scripting language for web development. <cfoutput><p>#getWorld()#</p></cfoutput> ``` +### CFScript +_**C**old**F**usion **S**cript_ +In recent years, the ColdFusion language has added script syntax to mirror tag functionality. When using an up-to-date CF server, almost all functionality is available using scrypt syntax. + ## Further Reading The links provided here below are just to get an understanding of the topic, feel free to Google and find specific examples. 1. [Coldfusion Reference From Adobe](https://helpx.adobe.com/coldfusion/cfml-reference/topics.html) +2. [Open Source Documentation](http://cfdocs.org/) |