Hi guys, i am currently writing a tutorial on how to edit and develop a proxy site and i have copy and pasted some text to put in to my web tutorial. However obviously in dreamweaver the software recognises the text to be code when i want it only to be an example. Is there anyway that i can make dreamweaver recognise the copy and pasted code to not be part of my web page? Hope someone understands me Will.
The easiest way would be to place it in a <textarea>. you can also escape the <'s and >'s with the ascii values < and >
I would write the code in Notepad, and simply do Find and Replace < and > with < and > respectively.
Thanks for the replies basically i am trying to make a tutorial on how to edit simple coding areas like the meta tags so i am trying to insert this text in to dreamweaver. <meta name="description" content="The greatest Proxy Site developed today<?php echo $metadescription; ?>" /> <meta name="keywords" content="Myspace Proxies, FaceBook Proxies<?php echo $metakeywords; ?>" /> But obviously dreamweaver will recognise this as a bit of coding which i do not want it too. Putting it in <p> does not work,
Just post the code in the design view instead of the code view. Posting it in the design view window will escape / unescape all the proper characters making the code show as you wish as opposed to trying to execute it.