Vi spiego semplicemente...devo inserire un testo in una pagina html...ma non voglio ke html mi modifichi questo testo che vi inserisco...

ovvero... il testo ke vorrei inserire è questo...

codice:
The following program makes the current number of processes running on the LVM available
to any GClientInt object on a remote peer.

<pre>
#include <CServerInt.h>
#include <GProcInfo.h>

CServerInt(out 1);
CServerInt(1).value(out v) {
    GProcInfo.getProcCount(v);
}
</pre>

A remote peer can monitor the number of processes of a host machine running the program above
as follows. We assume that the machine running the server is "www.dis.uniroma1.it":

<pre>
#include <CClientInt.h>
#include <GWindow.h>
#include <GCaption.h>
#include <KProc.h>
#include <KString.h>

CClientInt(out 1);
CClientInt(1).host(out i1* "www.dis.uniroma1.it");

GWindow(out 1);
GWindow(1).closeEvent() { KProc_Quit(); }
GWindow(1).title(out i1* "Number of processes on www.dis.uniroma1.it");

GCaption(out 1);
GCaption(1).window(out GWindow(1));
GCaption(1).title(out i1* t) {
    ui4 num;
    if (!CClientInt(1).getValue(num)) fail;
    t = KString_Format("%d", num);
}
</pre>
ma quello che vedo è quest'altro


codice:
The following program makes the current number of processes running on the LVM  available to any GClientInt object on a remote peer.  
#include 
 
#include 
 
CServerInt(out 
1); 
CServerInt(1).value(out 
v) 
{ 
GProcInfo.getProcCount(v); 
} 
A remote peer can monitor the number of processes of a host machine  running the program above as follows. We assume that the machine running the  server is "www.dis.uniroma1.it":  
#include 
 
#include 
 
#include 
 
#include 
 
#include 
 
CClientInt(out 
1); 
CClientInt(1).host(out 
i1* 
"www.dis.uniroma1.it"); 
GWindow(out 
1); 
GWindow(1).closeEvent() 
{ 
KProc_Quit(); 
} 
GWindow(1).title(out 
i1* 
"Number 
of 
processes 
on 
www.dis.uniroma1.it"); 
GCaption(out 
1); 
GCaption(1).window(out 
GWindow(1)); 
GCaption(1).title(out 
i1* 
t) 
{ 
ui4 
num; 
if 
(!CClientInt(1).getValue(num)) 
fail; 
t 
= 
KString_Format("%d", 
num); 
}
come vedete le parole formate da <qualcosa> mi vengono tolte...c'è un modo qualke tag da inserire ad inizio del testo che faccia si ke questo nn mi venga modificato???

ad esempio in xml uso il tag CDATA[[..e tutto quello qui dentro nn mi viene modifcato...

c'è qualkosa di simile in html...grazie