Tutorial REAs con eXeLearning
Insertar HTML como texto
|
Gema López. Codigo html en idevice de texto de exelearning |
El botónamplía la posibilidad de presentar HTML (y más lenguajes de programación) como texto.
El botón "Html como texto" permite, además de insertar código para mostrarlo en el documento, resaltar con colores su sintaxis (acepta diferentes lenguajes), destacar líneas y seleccionar la apariencia. Además, desde la versión 2.6, eXe recuerda las últimas preferencias para no tener que volver a seleccionarlas.
Ejemplos:
HTML resaltar sintaxis oscuro
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Hola HTML</title>
</head>
<body>
<p>Hola Mundo!</p>
</body>
</html>
HTML resaltar sintaxis claro
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Hola HTML</title>
</head>
<body>
<p>Hola Mundo!</p>
</body>
</html>
PHP
<html>
<head>
<title>Prueba de PHP</title>
</head>
<body>
<?php echo '<p>Hola Mundo</p>'; ?>
</body>
</html>
C++
#include <iostream>
using namespace std;
int main() {
cout << "Hola Mundo" << endl;
return 0;
}
<html>
<body>
<p>¡Hola, mundo!</p>
</body>
</html>
<html>
<body>
<p>¡Hola, mundo!</p>
</body>
</html>
¡Hola, mundo!
Obra publicada con Licencia Creative Commons Reconocimiento Compartir igual 4.0