PI: fragmentThe purpose is to import a fragment defined in the script: Fragment . <?_wxt fragment id="" ?> The parameters are:
Examples:This: <div> <?_wxt fragment id="_name"?> </div> may produce this: <div> My module </div> This: <div> <?_wxt fragment id="f1"?> </div> may produce this: <div> <span><img alt="self1" src="http://www.ia.hiof.no/~borres/self/bs1.gif"></span> </div> assuming that the following is defined in the script <fragment id="f1"> <![CDATA[ <span><img alt="self1" src="http://www.ia.hiof.no/~borres/self/bs1.gif"></span> ]]> </fragment> This: <div> <?_wxt fragment id="f1"?> </div> may produce this: <div> <span><img alt="self1" src="http://www.ia.hiof.no/~borres/self/bs1.gif"></span> </div> assuming that the following is defined in the script <fragment id="f1" location="fragfile.txt"/> and the file, fragfile.txt, has this content: <span><img alt="self1" src="http://www.ia.hiof.no/~borres/self/bs1.gif"></span> |