Macromedia dreamweaver 8-extending dreamweaver Manuale Utente

Pagina di 504
78
Customizing Code View
Attributes
doctypes
doctypes="doc_type1, doc_type2,...”
  The document types for which this sample 
text appears.
Example
<sampleText doctypes="JavaScript"><![CDATA[/* JavaScript */
function displayWords(arrayWords) {
for (i=
0
; i < arrayWords.length(); i++) {
// inline comment
alert(
"Word "
 + i + 
" is "
 + arrayWords[i]);
}
}
var tokens = new Array(
"Hello"
"world"
);
displayWords(tokens);
]]></sampleText>
<searchPattern>
Description
A string of characters that define a regular search pattern using supported wildcard characters. 
Multiple 
searchPattern
 tags are allowed.
Attributes
None.
Container
The 
regexp
 tag.
Example
<searchPattern><![CDATA[(\s*/\e*\\/]]></searchPattern>
<stringStart>
Description
These tags contain a text string that represents the delimiter of the start of a string. You must 
specify the 
stringStart
 and 
stringEnd
 tags in pairs. Multiple 
stringStart
 … 
stringEnd
 
pairs are allowed.