O botón
amplía a posibilidade de presentar HTML (e máis linguaxes de programación) como texto.

O botón "Html como texto" permite, ademais de inserir código para mostralo no documento, resaltar con cores a súa sintaxe (acepta diferentes linguaxes), destacar liñas e seleccionar a aparencia
Exemplos:
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;
}