json-parser-yaml-converter
Version:
Enhanced JSON Parser with verbose error messages and JSON to YAML conversion
58 lines • 1.72 kB
HTML
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Documentation</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #222; /* Fondo más oscuro */
color: #fff; /* Letras blancas para contrastar */
font-size: 18px;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #333; /* Fondo del contenedor */
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Borde brillante */
}
h1 {
color: #fff; /* Letras blancas */
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para resaltar */
font-size: 36px; /* Tamaño de fuente aumentado */
}
p {
color: #ccc; /* Letras grises */
text-align: center;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para resaltar */
font-size: 20px; /* Tamaño de fuente aumentado */
}
ul {
list-style-type: none;
padding: 0;
text-align: center;
}
li {
margin-bottom: 10px;
}
a {
color: #007bff;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #0056b3;
}
</style>
</head>
<body>
<h1>Documentation is in Markdown now using VuePress!</h1>
<p>Check docs/doc/README.md in the repository instead or run npm run docs:dev</p>
</body>
</html>