shortcode rawhtml

  • Result

  • Shortcode layouts/shortcodes/rawhtml.html
<style>
.rawhtml-container {
    padding: 1rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow-x: auto;
}

/* Styling for form elements */
.rawhtml-container input,
.rawhtml-container select,
.rawhtml-container textarea,
.rawhtml-container button {
    margin: 5px 0;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rawhtml-container button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.rawhtml-container button:hover {
    background-color: #0056b3;
}

.rawhtml-container table tr td {
    border: 0px black solid;
}
.rawhtml-container table tr {
    background: none;
}
</style>

<div class="rawhtml-container">
    {{ .Inner | safeHTML }}
</div>