Shortcode para renderizar html a pelo, mientras mejoramos el sistema

This commit is contained in:
Ales (Shagi) Zabala Alava 2021-09-16 14:10:00 +02:00
parent e4ebd01164
commit 2bd8c46431
3 changed files with 27 additions and 13 deletions

View File

@ -33,3 +33,20 @@ Los ficheros estáticos están en la carpeta `static`, se copian tal cual a la
carpeta `public`. carpeta `public`.
Más información: https://gohugo.io/documentation/ Más información: https://gohugo.io/documentation/
## Shortcodes
Estos son los shortcodes definidos para el hackmeeting:
### rawHTML
Renderiza el contenido del shortcode sin procesar, por lo que se puede meter html arbitrario.
Ejemplo:
{{< rawHTML >}}
<table>
<tr><td>Una tabla</td></tr>
</table>
{{< /rawHTML >}}

View File

@ -14,13 +14,11 @@ listas.
[Materiales necesarios](/2019/MaterialesNecesarios) [Materiales necesarios](/2019/MaterialesNecesarios)
## Viernes ## Viernes 20
{{< rawHTML >}}
<table class="wikitable"> <table class="wikitable">
<tbody> <tbody>
<tr>
<th scope="row" colspan="4"> VIERNES 20 </th>
</tr>
<tr> <tr>
<th scope="col"></th> <th scope="col"></th>
<th scope="col"> ____Gizartetxe____ </th> <th scope="col"> ____Gizartetxe____ </th>
@ -101,15 +99,13 @@ listas.
</tr> </tr>
</tbody> </tbody>
</table> </table>
{{< /rawHTML >}}
## Sábado 21
## Sábado {{< rawHTML >}}
<table class="wikitable"> <table class="wikitable">
<tbody> <tbody>
<tr>
<th scope="row" colspan="4"> SABADO 21 </th>
</tr>
<tr> <tr>
<th scope="col"> </th> <th scope="col"> </th>
<th scope="col"> ____Gizartetxe____ </th> <th scope="col"> ____Gizartetxe____ </th>
@ -201,15 +197,14 @@ listas.
</tr> </tr>
</tbody> </tbody>
</table> </table>
{{< /rawHTML >}}
## Domingo ## Domingo 22
{{< rawHTML >}}
<table class="wikitable"> <table class="wikitable">
<tbody> <tbody>
<tr>
<th scope="row" colspan="4"> DOMINGO 21 </th>
</tr>
<tr> <tr>
<th scope="col"> </th> <th scope="col"> </th>
<th scope="col"> ____Gizartetxe____ </th> <th scope="col"> ____Gizartetxe____ </th>
@ -275,3 +270,4 @@ listas.
</tr> </tr>
</tbody> </tbody>
</table> </table>
{{< /rawHTML >}}

View File

@ -0,0 +1 @@
{{ .Inner }}