mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Set syntax highlighting for coldfusion
This commit is contained in:
parent
f7e27eb94b
commit
d44e950956
@ -13,7 +13,7 @@ ColdFusion is a scripting language for web development.
|
|||||||
_**C**old**F**usion **M**arkup **L**anguage_
|
_**C**old**F**usion **M**arkup **L**anguage_
|
||||||
ColdFusion started as a tag-based language. Almost all functionality is available using tags.
|
ColdFusion started as a tag-based language. Almost all functionality is available using tags.
|
||||||
|
|
||||||
```html
|
```cfm
|
||||||
<em>HTML tags have been provided for output readability</em>
|
<em>HTML tags have been provided for output readability</em>
|
||||||
|
|
||||||
<!--- Comments start with "<!---" and end with "--->" --->
|
<!--- Comments start with "<!---" and end with "--->" --->
|
||||||
@ -232,7 +232,8 @@ ColdFusion started as a tag-based language. Almost all functionality is availabl
|
|||||||
<h1>Components</h1>
|
<h1>Components</h1>
|
||||||
|
|
||||||
<em>Code for reference (Functions must return something to support IE)</em>
|
<em>Code for reference (Functions must return something to support IE)</em>
|
||||||
|
```
|
||||||
|
```cfs
|
||||||
<cfcomponent>
|
<cfcomponent>
|
||||||
<cfset this.hello = "Hello" />
|
<cfset this.hello = "Hello" />
|
||||||
<cfset this.world = "world" />
|
<cfset this.world = "world" />
|
||||||
|
Loading…
Reference in New Issue
Block a user