<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Título</title>
    <description>Esta página multi-idioma utiliza el tema &lt;a href=&quot;https://fongandrew.github.io/hydeout/&quot; target=&quot;_blank&quot;&gt;Hydeout&lt;/a&gt; para &lt;a href=&quot;http://jekyllrb.com&quot; target=&quot;_blank&quot;&gt;Jekyll&lt;/a&gt;.</description>
    <link>https://azarrias.github.io/hydeout-multilingual/</link>
    <atom:link href="https://azarrias.github.io/hydeout-multilingual/flux.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Fri, 19 Oct 2018 19:19:19 +0000</pubDate>
    <lastBuildDate>Fri, 19 Oct 2018 19:19:19 +0000</lastBuildDate>
    <generator>Jekyll v3.7.4</generator>
    
    
      <item>
        <title>Post: Fecha futura</title>
        <description>&lt;p&gt;Este post vive en el futuro y tiene fecha Fri Dec 31 00:00:00 9999. Debería aparecer únicamente cuando Jekyll genere tu proyecto incluyendo la opción &lt;code class=&quot;highlighter-rouge&quot;&gt;--future&lt;/code&gt;.&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;jekyll build &lt;span class=&quot;nt&quot;&gt;--future&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</description>
        <pubDate>Fri, 31 Dec 9999 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/post/9999/12/31/post-future-date-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/post/9999/12/31/post-future-date-es.html</guid>
        
        
        <category>Post</category>
        
      </item>
    
      <item>
        <title>Hola Hydeout</title>
        <description>&lt;p&gt;Hydeout actualiza al tema original &lt;a href=&quot;https://github.com/poole/hyde&quot;&gt;Hyde&lt;/a&gt;
para &lt;a href=&quot;http://jekyllrb.com&quot;&gt;Jekyll&lt;/a&gt; 3.x y le añade nuevas funcionalidades.&lt;/p&gt;

&lt;h3 id=&quot;mantenlo-sencillo&quot;&gt;Mantenlo sencillo&lt;/h3&gt;

&lt;p&gt;Siguiendo con el tema original Hyde, Hydeout busca mantener el diseño
ligero sin plugins. El uso de JavaScript se limita únicamente a 
Disqus y Google Analytics (y sólo se incluye si las respectivas variables de configuración 
han sido informadas).&lt;/p&gt;

&lt;p&gt;Hydeout hace uso extensivo de Flexbox en sus CSS. Si Flexbox no está disponible,
los CSS se degradan a un layout de una sola columna.&lt;/p&gt;

&lt;h3 id=&quot;personalización&quot;&gt;Personalización&lt;/h3&gt;

&lt;p&gt;Hydeout reemplaza el funcionamiento de Hyde, basado en clases
mediante el uso de las siguiente variables SASS:&lt;/p&gt;

&lt;div class=&quot;language-scss highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$sidebar-bg-color&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mh&quot;&gt;#202020&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;default&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;$sidebar-sticky&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;true&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;default&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;$layout-reverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;false&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;default&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;$link-color&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mh&quot;&gt;#268bd2&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;default&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Para anular estas variables, podemos crear nuestro propio fichero &lt;code class=&quot;highlighter-rouge&quot;&gt;assets/css/main.scss&lt;/code&gt;.
Definimos nuestras propias variables, y las importamos al SCSS de Hydeout, de la siguiente manera:&lt;/p&gt;

&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;---
# Jekyll requiere encabezado para los ficheros SCSS
---

$sidebar-bg-color: #ac4142;
$link-color: #ac4142;
$sidebar-sticky: false;
@import &quot;hydeout&quot;;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Hecha un vistazo al fichero de &lt;a href=&quot;_sass/hydeout/_variables.scss&quot;&gt;_variables&lt;/a&gt; para ver
otras variables que pueden ser anuladas.&lt;/p&gt;

&lt;p&gt;Es posible también insertar etiquetas personalizadas (e.g. para cargar nuestras propias hojas de estilos) 
definiendo nuestros propios &lt;code class=&quot;highlighter-rouge&quot;&gt;_includes/custom-head.html&lt;/code&gt; o insertar etiquetas al final
del cuerpo (e.g. para JS personalizado) definiendo nuestro propio
&lt;code class=&quot;highlighter-rouge&quot;&gt;_includes/custom-foot.html&lt;/code&gt;.&lt;/p&gt;

&lt;h3 id=&quot;nuevas-funcionalidades&quot;&gt;Nuevas Funcionalidades&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;Hydeout también añade una nueva página de etiquetas (accesible desde la barra lateral) y un nuevo
layout de “categoría” para páginas dedicadas a una determinada categoría.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Las páginas de categoría son añadidas automáticamente a la barra lateral. Todas las demás páginas
deben tener &lt;code class=&quot;highlighter-rouge&quot;&gt;sidebar_link: true&lt;/code&gt; en su cabecera para ser mostradas en la 
barra lateral.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Una redirección simple a Google search está disponible. Para utilizar 
Google Custom Search o Algolia o algo diferente,
debemos anular &lt;code class=&quot;highlighter-rouge&quot;&gt;search.html&lt;/code&gt;.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;La integración con Disqus está lista de entrada. Solamente debemos añadir lo siguiente a
nuestro fichero de configuración:&lt;/p&gt;

    &lt;div class=&quot;language-yaml highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;na&quot;&gt;disqus&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;shortname&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;my-disqus-shortname&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;

    &lt;p&gt;Si no quieres utilizar Disqus o quieres utilizar otro sistema, deberás anular
&lt;code class=&quot;highlighter-rouge&quot;&gt;comments.html&lt;/code&gt;.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Para soportar la integración con Google Analytics, define una variable &lt;code class=&quot;highlighter-rouge&quot;&gt;google_analytics&lt;/code&gt; con
tu ID de propiedad en tu fichero de configuración.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Hay también un montón de ajustes menores por todo el tema.
Espero que encaje con tus necesidades!&lt;/p&gt;
</description>
        <pubDate>Thu, 01 Jun 2017 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/2017/06/01/hello-hydeout-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/2017/06/01/hello-hydeout-es.html</guid>
        
        
      </item>
    
      <item>
        <title>Presentando a Hyde</title>
        <description>&lt;p&gt;Hyde es un descarado tema &lt;a href=&quot;http://jekyllrb.com&quot;&gt;Jekyll&lt;/a&gt; de dos columnas que acompaña una barra lateral con contenido sencillo. Está basado en &lt;a href=&quot;http://getpoole.com&quot;&gt;Poole&lt;/a&gt;, el mayordomo de Jekyll.&lt;/p&gt;

&lt;h3 id=&quot;hecho-con-poole&quot;&gt;Hecho con Poole&lt;/h3&gt;

&lt;p&gt;Poole es el mayordomo de Jekyll, que sirve como respetable y efectiva fundación a los temas Jeckyll de &lt;a href=&quot;https://twitter.com/mdo&quot;&gt;@mdo&lt;/a&gt;. Poole, y cada tema hecho a partir de él (como Hyde) incluye lo siguiente:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Configuración Jekyll completa incluída (layouts, configuración, &lt;a href=&quot;/404&quot;&gt;404&lt;/a&gt;, &lt;a href=&quot;/feed.xml&quot;&gt;feed RSS&lt;/a&gt;, posts, y &lt;a href=&quot;/about&quot;&gt;acerca de&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Diseño y desarrollo mobile friendly&lt;/li&gt;
  &lt;li&gt;Escalado de texto y calibración de componentes sencilla, a través de las unidades &lt;code class=&quot;highlighter-rouge&quot;&gt;rem&lt;/code&gt; en los CSS&lt;/li&gt;
  &lt;li&gt;Soporte para una amplia gama de elementos HTML&lt;/li&gt;
  &lt;li&gt;Posts relacionados (ten función del tiempo, gracias a Jekyll) bajo cada post&lt;/li&gt;
  &lt;li&gt;Resaltado de sintaxis, cortesía de Pygments (la herramienta de resaltado de trozos de código basada en Python)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;funcionalidades-de-hyde&quot;&gt;Funcionalidades de Hyde&lt;/h3&gt;

&lt;p&gt;Además de las funcionalidades de Poole, Hyde añade las siguientes:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;La barra lateral incluye soporte para móculos textuales y un sistema de navegación generado de forma dinámica con soporte de enlaces activos&lt;/li&gt;
  &lt;li&gt;Dos orientaciones para contenido y barra lateral, por defecto (barra lateral izquierda) y &lt;a href=&quot;https://github.com/poole/lanyon#reverse-layout&quot;&gt;reverse&lt;/a&gt; (barra lateral derecha), disponible vía clases &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;body&amp;gt;&lt;/code&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://github.com/poole/hyde#themes&quot;&gt;Ocho esquemas de color opcionales&lt;/a&gt;, disponibles también vía clases &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;body&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://github.com/poole/hyde#readme&quot;&gt;Llévame al leeme&lt;/a&gt; para conocer más.&lt;/p&gt;

&lt;h3 id=&quot;soporte-a-navegador&quot;&gt;Soporte a navegador&lt;/h3&gt;

&lt;p&gt;Hyde es un proyecto ideado a largo plazo. Es compatible a las últimas versiones de Chrome, Safari (mobile y escritorio), y Firefox, sólo compatible con Internet Explorer 9 y superiores.&lt;/p&gt;

&lt;h3 id=&quot;descarga&quot;&gt;Descarga&lt;/h3&gt;

&lt;p&gt;Hyde se desarrolla y aloja en GitHub. Dirígete al &lt;a href=&quot;https://github.com/poole/hyde&quot;&gt;repositorio Github&lt;/a&gt; para descargas, informes de errores, y petición de funcionalidades.&lt;/p&gt;

&lt;p&gt;Gracias!&lt;/p&gt;
</description>
        <pubDate>Sat, 28 Dec 2013 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/2013/12/28/introducing-hyde-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/2013/12/28/introducing-hyde-es.html</guid>
        
        
      </item>
    
      <item>
        <title>Ejemplos de contenido</title>
        <description>&lt;div class=&quot;message&quot;&gt;
  Como va! Testo es un ejemplo de entrada de blog que muestra varios tipos de contenido HTML soportados por este tema.
&lt;/div&gt;

&lt;p&gt;Cum sociis natoque penatibus et magnis &lt;a href=&quot;#&quot;&gt;dis parturient montes&lt;/a&gt;, nascetur ridiculus mus. &lt;em&gt;Aenean eu leo quam.&lt;/em&gt; Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Etiam porta &lt;strong&gt;sem malesuada magna&lt;/strong&gt; mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.&lt;/p&gt;

&lt;h2 id=&quot;elementos-html-inline&quot;&gt;Elementos HTML inline&lt;/h2&gt;

&lt;p&gt;HTML define una larga lista de etiquetas inline disponibles, para las que podemos ver una lista completa en &lt;a href=&quot;https://developer.mozilla.org/en-US/docs/Web/HTML/Element&quot;&gt;Mozilla Developer Network&lt;/a&gt;.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Para texto en negrita&lt;/strong&gt;, utiliza &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;strong&amp;gt;&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;&lt;em&gt;Para texto en cursiva&lt;/em&gt;, usa &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;em&amp;gt;&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;Abreviaturas, como &lt;abbr title=&quot;HyperText Markup Langage&quot;&gt;HTML&lt;/abbr&gt; deberían utilizar &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;abbr&amp;gt;&lt;/code&gt;, con un atributo &lt;code class=&quot;highlighter-rouge&quot;&gt;title&lt;/code&gt; opcional para la frase entera.&lt;/li&gt;
  &lt;li&gt;Citas, como &lt;cite&gt;— Mark otto&lt;/cite&gt;, deberían usar &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;cite&amp;gt;&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;&lt;del&gt;Texto borrado&lt;/del&gt; debería usar &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;del&amp;gt;&lt;/code&gt; y &lt;ins&gt;texto insertado&lt;/ins&gt; debería utilizar &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;ins&amp;gt;&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;Texto &lt;sup&gt;superíndice&lt;/sup&gt; utiliza &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;sup&amp;gt;&lt;/code&gt; y texto &lt;sub&gt;subíndice&lt;/sub&gt; utiliza &lt;code class=&quot;highlighter-rouge&quot;&gt;&amp;lt;sub&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;heading&quot;&gt;Heading&lt;/h2&gt;

&lt;p&gt;Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.&lt;/p&gt;

&lt;h3 id=&quot;code&quot;&gt;Code&lt;/h3&gt;

&lt;p&gt;Cum sociis natoque penatibus et magnis dis &lt;code class=&quot;highlighter-rouge&quot;&gt;code element&lt;/code&gt; montes, nascetur ridiculus mus.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-js&quot; data-lang=&quot;js&quot;&gt;&lt;span class=&quot;c1&quot;&gt;// Ejemplo que puede ser ejecutado directamente en tu consola JavaScript&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;// Crear una función que toma dos argumentos y devuelve la suma de esos argumentos&lt;/span&gt;
&lt;span class=&quot;kd&quot;&gt;var&lt;/span&gt; &lt;span class=&quot;nx&quot;&gt;adder&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;Function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;a&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;b&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;return a + b&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;// Llamar a la función&lt;/span&gt;
&lt;span class=&quot;nx&quot;&gt;adder&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
&lt;span class=&quot;c1&quot;&gt;// &amp;gt; 8&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.&lt;/p&gt;

&lt;h3 id=&quot;gists-vía-github-pages&quot;&gt;Gists vía GitHub Pages&lt;/h3&gt;

&lt;p&gt;Vestibulum id ligula porta felis euismod semper. Nullam quis risus eget urna mollis ornare vel eu leo. Donec sed odio dui.&lt;/p&gt;

&lt;script src=&quot;https://gist.github.com/5555251.js?file=gist.md&quot;&gt; &lt;/script&gt;

&lt;p&gt;Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec sed odio dui. Vestibulum id ligula porta felis euismod semper.&lt;/p&gt;

&lt;h3 id=&quot;lists&quot;&gt;Lists&lt;/h3&gt;

&lt;p&gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Praesent commodo cursus magna, vel scelerisque nisl consectetur et.&lt;/li&gt;
  &lt;li&gt;Donec id elit non mi porta gravida at eget metus.&lt;/li&gt;
  &lt;li&gt;Nulla vitae elit libero, a pharetra augue.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Vestibulum id ligula porta felis euismod semper.&lt;/li&gt;
  &lt;li&gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.&lt;/li&gt;
  &lt;li&gt;Maecenas sed diam eget risus varius blandit sit amet non magna.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.&lt;/p&gt;

&lt;dl&gt;
  &lt;dt&gt;HyperText Markup Language (HTML)&lt;/dt&gt;
  &lt;dd&gt;The language used to describe and define the content of a Web page&lt;/dd&gt;

  &lt;dt&gt;Cascading Style Sheets (CSS)&lt;/dt&gt;
  &lt;dd&gt;Used to describe the appearance of Web content&lt;/dd&gt;

  &lt;dt&gt;JavaScript (JS)&lt;/dt&gt;
  &lt;dd&gt;The programming language used to build advanced Web sites and applications&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.&lt;/p&gt;

&lt;h3 id=&quot;imágenes&quot;&gt;Imágenes&lt;/h3&gt;

&lt;p&gt;Quisque consequat sapien eget quam rhoncus, sit amet laoreet diam tempus. Aliquam aliquam metus erat, a pulvinar turpis suscipit at.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://placehold.it/800x400&quot; alt=&quot;placeholder&quot; title=&quot;Large example image&quot; /&gt;
&lt;img src=&quot;https://placehold.it/400x200&quot; alt=&quot;placeholder&quot; title=&quot;Medium example image&quot; /&gt;
&lt;img src=&quot;https://placehold.it/200x200&quot; alt=&quot;placeholder&quot; title=&quot;Small example image&quot; /&gt;&lt;/p&gt;

&lt;h3 id=&quot;tablas&quot;&gt;Tablas&lt;/h3&gt;

&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/p&gt;

&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Nombre&lt;/th&gt;
      &lt;th&gt;Votos positivos&lt;/th&gt;
      &lt;th&gt;Votos negativos&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tfoot&gt;
    &lt;tr&gt;
      &lt;td&gt;Totales&lt;/td&gt;
      &lt;td&gt;21&lt;/td&gt;
      &lt;td&gt;23&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tfoot&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Alice&lt;/td&gt;
      &lt;td&gt;10&lt;/td&gt;
      &lt;td&gt;11&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Bob&lt;/td&gt;
      &lt;td&gt;4&lt;/td&gt;
      &lt;td&gt;3&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Charlie&lt;/td&gt;
      &lt;td&gt;7&lt;/td&gt;
      &lt;td&gt;9&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;Nullam id dolor id nibh ultricies vehicula ut id elit. Sed posuere consectetur est at lobortis. Nullam quis risus eget urna mollis ornare vel eu leo.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;¿Quieres que se añada otra funcionalidad? &lt;a href=&quot;https://github.com/poole/poole/issues/new&quot;&gt;Abre un ticket.&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Tue, 07 Feb 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/2012/02/07/example-content-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/2012/02/07/example-content-es.html</guid>
        
        
      </item>
    
      <item>
        <title>¿Qué es Jekyll?</title>
        <description>&lt;p&gt;&lt;a href=&quot;http://jekyllrb.com&quot;&gt;Jekyll&lt;/a&gt; es un generador de sitios estáticos, una herramienta open-source para la creación de sitios web simples pero potentes, de todos los tamaños y formas. 
Según &lt;a href=&quot;https://github.com/mojombo/jekyll/blob/master/README.markdown&quot;&gt;el léeme del proyecto&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Jekyll is a simple, blog aware, static site generator. It takes a template directory […] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Es una herramienta muy útil, todavía más al utilizarla con Hyde.&lt;/p&gt;

&lt;p&gt;Para saber más, &lt;a href=&quot;https://github.com/mojombo/jekyll&quot;&gt;visita el proyecto en GitHub&lt;/a&gt;.&lt;/p&gt;
</description>
        <pubDate>Mon, 06 Feb 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/2012/02/06/whats-jekyll-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/2012/02/06/whats-jekyll-es.html</guid>
        
        
      </item>
    
      <item>
        <title>Markup: Syntax Highlighting</title>
        <description>&lt;p&gt;Syntax highlighting is a feature that displays source code, in different colors and fonts according to the category of terms. This feature facilitates writing in a structured language such as a programming language or a markup language as both structures and syntax errors are visually distinct. Highlighting does not affect the meaning of the text itself; it is intended only for human readers.&lt;sup id=&quot;fnref:1&quot;&gt;&lt;a href=&quot;#fn:1&quot; class=&quot;footnote&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;

&lt;h2 id=&quot;gfm-code-blocks&quot;&gt;GFM Code Blocks&lt;/h2&gt;

&lt;p&gt;GitHub Flavored Markdown &lt;a href=&quot;https://help.github.com/articles/creating-and-highlighting-code-blocks/&quot;&gt;fenced code blocks&lt;/a&gt; are supported by default with Jekyll. You may need to update your &lt;code class=&quot;highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt; file to enable them if you’re using an older version.&lt;/p&gt;

&lt;div class=&quot;language-yaml highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;na&quot;&gt;kramdown&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;input&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;GFM&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Here’s an example of a CSS code snippet written in GFM:&lt;/p&gt;

&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#container&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;float&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;left&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;margin&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;0&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;-240px&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;0&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;100%&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Yet another code snippet for demonstration purposes:&lt;/p&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;module&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;Jekyll&lt;/span&gt;
  &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;TagIndex&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;Page&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;initialize&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;site&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dir&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tag&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
      &lt;span class=&quot;vi&quot;&gt;@site&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;site&lt;/span&gt;
      &lt;span class=&quot;vi&quot;&gt;@base&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base&lt;/span&gt;
      &lt;span class=&quot;vi&quot;&gt;@dir&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dir&lt;/span&gt;
      &lt;span class=&quot;vi&quot;&gt;@name&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'index.html'&lt;/span&gt;
      &lt;span class=&quot;nb&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;process&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;vi&quot;&gt;@name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
      &lt;span class=&quot;nb&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;read_yaml&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;no&quot;&gt;File&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;join&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'_layouts'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'tag_index.html'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
      &lt;span class=&quot;nb&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'tag'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tag&lt;/span&gt;
      &lt;span class=&quot;n&quot;&gt;tag_title_prefix&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;site&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;config&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'tag_title_prefix'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'Tagged: '&lt;/span&gt;
      &lt;span class=&quot;n&quot;&gt;tag_title_suffix&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;site&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;config&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'tag_title_suffix'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'&amp;amp;#8211;'&lt;/span&gt;
      &lt;span class=&quot;nb&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'title'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tag_title_prefix&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tag&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
      &lt;span class=&quot;nb&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'description'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;An archive of posts tagged &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tag&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;.&quot;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
  &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;jekyll-highlight-liquid-tag&quot;&gt;Jekyll Highlight Liquid Tag&lt;/h2&gt;

&lt;p&gt;Jekyll also has built-in support for syntax highlighting of code snippets using either Rouge or Pygments, using a dedicated Liquid tag as follows:&lt;/p&gt;

&lt;div class=&quot;language-liquid highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;p&quot;&gt;{%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;highlight&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;scss&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;%}&lt;/span&gt;
.highlight {
  margin: 0;
  padding: 1em;
  font-family: $monospace;
  font-size: $type-size-7;
  line-height: 1.8;
}
&lt;span class=&quot;p&quot;&gt;{%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;endhighlight&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;%}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;And the output will look like this:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-scss&quot; data-lang=&quot;scss&quot;&gt;&lt;span class=&quot;nc&quot;&gt;.highlight&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;margin&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;padding&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;1em&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;font-family&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;$monospace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;font-size&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;$type-size-7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
  &lt;span class=&quot;nl&quot;&gt;line-height&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;.8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Here’s an example of a code snippet using the Liquid tag and &lt;code class=&quot;highlighter-rouge&quot;&gt;linenos&lt;/code&gt; enabled.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-html&quot; data-lang=&quot;html&quot;&gt;&lt;table class=&quot;rouge-table&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;gutter gl&quot;&gt;&lt;pre class=&quot;lineno&quot;&gt;1
2
3
4
5
6
7
8
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;nav&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;class=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;pagination&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;role=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;navigation&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;
  {% if page.previous %}
    &lt;span class=&quot;nt&quot;&gt;&amp;lt;a&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;href=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;{{ site.url }}{{ page.previous.url }}&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;class=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;btn&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;{{ page.previous.title }}&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;Previous article&lt;span class=&quot;nt&quot;&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
  {% endif %}
  {% if page.next %}
    &lt;span class=&quot;nt&quot;&gt;&amp;lt;a&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;href=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;{{ site.url }}{{ page.next.url }}&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;class=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;btn&quot;&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;{{ page.next.title }}&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;Next article&lt;span class=&quot;nt&quot;&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
  {% endif %}
&lt;span class=&quot;nt&quot;&gt;&amp;lt;/nav&amp;gt;&lt;/span&gt;&lt;span class=&quot;c&quot;&gt;&amp;lt;!-- /.pagination --&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h2 id=&quot;code-blocks-in-lists&quot;&gt;Code Blocks in Lists&lt;/h2&gt;

&lt;p&gt;Indentation matters. Be sure the indent of the code block aligns with the first non-space character after the list item marker (e.g., &lt;code class=&quot;highlighter-rouge&quot;&gt;1.&lt;/code&gt;). Usually this will mean indenting 3 spaces instead of 4.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Do step 1.&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Now do this:&lt;/p&gt;

    &lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;print_hi&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
  &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;Hi, &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;print_hi&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Tom'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;c1&quot;&gt;#=&amp;gt; prints 'Hi, Tom' to STDOUT.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;
  &lt;/li&gt;
  &lt;li&gt;Now you can do this.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;github-gist-embed&quot;&gt;GitHub Gist Embed&lt;/h2&gt;

&lt;p&gt;GitHub Gist embeds can also be used:&lt;/p&gt;

&lt;div class=&quot;language-html highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;script &lt;/span&gt;&lt;span class=&quot;na&quot;&gt;src=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;https://gist.github.com/mmistakes/77c68fbb07731a456805a7b473f47841.js&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Which outputs as:&lt;/p&gt;

&lt;script src=&quot;https://gist.github.com/mmistakes/77c68fbb07731a456805a7b473f47841.js&quot;&gt;&lt;/script&gt;

&lt;div class=&quot;footnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:1&quot;&gt;
      &lt;p&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Syntax_highlighting&quot;&gt;http://en.wikipedia.org/wiki/Syntax_highlighting&lt;/a&gt; &lt;a href=&quot;#fnref:1&quot; class=&quot;reversefootnote&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</description>
        <pubDate>Sun, 05 Feb 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/2012/02/05/markup-syntax-highlighting-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/2012/02/05/markup-syntax-highlighting-es.html</guid>
        
        <category>code</category>
        
        <category>syntax highlighting</category>
        
        
      </item>
    
      <item>
        <title>Layout: Excerpt (Defined)</title>
        <description>&lt;p&gt;This is the start of the post content.&lt;/p&gt;

&lt;p&gt;This paragraph should be absent from an index page where &lt;code class=&quot;highlighter-rouge&quot;&gt;post.excerpt&lt;/code&gt; is shown.&lt;/p&gt;
</description>
        <pubDate>Sat, 04 Feb 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/layout/2012/02/04/layout-excerpt-defined-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/layout/2012/02/04/layout-excerpt-defined-es.html</guid>
        
        <category>content</category>
        
        <category>excerpt</category>
        
        <category>layout</category>
        
        
        <category>Layout</category>
        
      </item>
    
      <item>
        <title>Layout: Excerpt (Generated with Separator Tag)</title>
        <description>&lt;p&gt;This is the post content. Archive-index pages should display an &lt;a href=&quot;https://jekyllrb.com/docs/posts/#post-excerpts&quot;&gt;auto-generated excerpt&lt;/a&gt; of all the content preceding the &lt;code class=&quot;highlighter-rouge&quot;&gt;excerpt_separator&lt;/code&gt;, as defined in the YAML Front Matter or globally in &lt;code class=&quot;highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn’t create any layout problems.&lt;/p&gt;

&lt;!--more--&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, dicant nusquam corpora in usu, laudem putent fuisset ut eam. Justo accusam definitionem id cum, choro prodesset ex his. Noluisse constituto intellegebat ea mei. Timeam admodum omnesque pri ex, eos habemus suavitate aliquando cu. Dico nihil delectus quo cu. Ludus cetero cu eos, vidit invidunt dissentiet mea ne.&lt;/p&gt;

&lt;p&gt;Usu delenit vocibus elaboraret ex. Scripta sapientem adversarium ei pri, pri ex solet democritum. Nam te porro impedit, ei doctus albucius cotidieque pri, ea mutat causae lucilius has. Pri omnis errem labore ut. An aperiam tibique est, mei te dolore veritus, nam nulla feugait ut. In vis labitur eripuit contentiones.&lt;/p&gt;
</description>
        <pubDate>Fri, 03 Feb 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/layout/2012/02/03/layout-excerpt-generated-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/layout/2012/02/03/layout-excerpt-generated-es.html</guid>
        
        <category>content</category>
        
        <category>excerpt</category>
        
        <category>layout</category>
        
        
        <category>Layout</category>
        
      </item>
    
      <item>
        <title>Markup: Title with Special&amp;nbsp;---&amp;nbsp;Characters</title>
        <description>&lt;p&gt;Putting special characters in the title should have no adverse effect on the layout or functionality.&lt;/p&gt;

&lt;p&gt;The title above has none-breaking spaces before and after the m-dash.&lt;/p&gt;

&lt;div class=&quot;language-markdown highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;ni&quot;&gt;&amp;amp;nbsp;&lt;/span&gt;---&lt;span class=&quot;ni&quot;&gt;&amp;amp;nbsp;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;latin-character-tests&quot;&gt;Latin Character Tests&lt;/h2&gt;

&lt;p&gt;This is a test to see if the fonts used in this theme support basic Latin characters.&lt;/p&gt;

&lt;table&gt;
  &lt;tr&gt;
    &lt;td&gt;
      !
    &lt;/td&gt;

    &lt;td&gt;
      &amp;#8220;
    &lt;/td&gt;

    &lt;td&gt;
      #
    &lt;/td&gt;

    &lt;td&gt;
      $
    &lt;/td&gt;

    &lt;td&gt;
      %
    &lt;/td&gt;

    &lt;td&gt;
      &amp;amp;
    &lt;/td&gt;

    &lt;td&gt;
      &amp;#8216;
    &lt;/td&gt;

    &lt;td&gt;
      (
    &lt;/td&gt;

    &lt;td&gt;
      )
    &lt;/td&gt;

    &lt;td&gt;
      *
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      +
    &lt;/td&gt;

    &lt;td&gt;
      ,
    &lt;/td&gt;

    &lt;td&gt;
      &amp;#8211;
    &lt;/td&gt;

    &lt;td&gt;
      .
    &lt;/td&gt;

    &lt;td&gt;
      /
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
      1
    &lt;/td&gt;

    &lt;td&gt;
      2
    &lt;/td&gt;

    &lt;td&gt;
      3
    &lt;/td&gt;

    &lt;td&gt;
      4
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      5
    &lt;/td&gt;

    &lt;td&gt;
      6
    &lt;/td&gt;

    &lt;td&gt;
      7
    &lt;/td&gt;

    &lt;td&gt;
      8
    &lt;/td&gt;

    &lt;td&gt;
      9
    &lt;/td&gt;

    &lt;td&gt;
      :
    &lt;/td&gt;

    &lt;td&gt;
      ;
    &lt;/td&gt;

    &lt;td&gt;
      &amp;gt;
    &lt;/td&gt;

    &lt;td&gt;
      =
    &lt;/td&gt;

    &lt;td&gt;
      &amp;lt;
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      ?
    &lt;/td&gt;

    &lt;td&gt;
      @
    &lt;/td&gt;

    &lt;td&gt;
      A
    &lt;/td&gt;

    &lt;td&gt;
      B
    &lt;/td&gt;

    &lt;td&gt;
      C
    &lt;/td&gt;

    &lt;td&gt;
      D
    &lt;/td&gt;

    &lt;td&gt;
      E
    &lt;/td&gt;

    &lt;td&gt;
      F
    &lt;/td&gt;

    &lt;td&gt;
      G
    &lt;/td&gt;

    &lt;td&gt;
      H
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      I
    &lt;/td&gt;

    &lt;td&gt;
      J
    &lt;/td&gt;

    &lt;td&gt;
      K
    &lt;/td&gt;

    &lt;td&gt;
      L
    &lt;/td&gt;

    &lt;td&gt;
      M
    &lt;/td&gt;

    &lt;td&gt;
      N
    &lt;/td&gt;

    &lt;td&gt;
      O
    &lt;/td&gt;

    &lt;td&gt;
      P
    &lt;/td&gt;

    &lt;td&gt;
      Q
    &lt;/td&gt;

    &lt;td&gt;
      R
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      S
    &lt;/td&gt;

    &lt;td&gt;
      T
    &lt;/td&gt;

    &lt;td&gt;
      U
    &lt;/td&gt;

    &lt;td&gt;
      V
    &lt;/td&gt;

    &lt;td&gt;
      W
    &lt;/td&gt;

    &lt;td&gt;
      X
    &lt;/td&gt;

    &lt;td&gt;
      Y
    &lt;/td&gt;

    &lt;td&gt;
      Z
    &lt;/td&gt;

    &lt;td&gt;
      [
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      ]
    &lt;/td&gt;

    &lt;td&gt;
      ^
    &lt;/td&gt;

    &lt;td&gt;
      _
    &lt;/td&gt;

    &lt;td&gt;
      `
    &lt;/td&gt;

    &lt;td&gt;
      a
    &lt;/td&gt;

    &lt;td&gt;
      b
    &lt;/td&gt;

    &lt;td&gt;
      c
    &lt;/td&gt;

    &lt;td&gt;
      d
    &lt;/td&gt;

    &lt;td&gt;
      e
    &lt;/td&gt;

    &lt;td&gt;
      f
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      g
    &lt;/td&gt;

    &lt;td&gt;
      h
    &lt;/td&gt;

    &lt;td&gt;
      i
    &lt;/td&gt;

    &lt;td&gt;
      j
    &lt;/td&gt;

    &lt;td&gt;
      k
    &lt;/td&gt;

    &lt;td&gt;
      l
    &lt;/td&gt;

    &lt;td&gt;
      m
    &lt;/td&gt;

    &lt;td&gt;
      n
    &lt;/td&gt;

    &lt;td&gt;
      o
    &lt;/td&gt;

    &lt;td&gt;
      p
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      q
    &lt;/td&gt;

    &lt;td&gt;
      r
    &lt;/td&gt;

    &lt;td&gt;
      s
    &lt;/td&gt;

    &lt;td&gt;
      t
    &lt;/td&gt;

    &lt;td&gt;
      u
    &lt;/td&gt;

    &lt;td&gt;
      v
    &lt;/td&gt;

    &lt;td&gt;
      w
    &lt;/td&gt;

    &lt;td&gt;
      x
    &lt;/td&gt;

    &lt;td&gt;
      y
    &lt;/td&gt;

    &lt;td&gt;
      z
    &lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;
      {
    &lt;/td&gt;

    &lt;td&gt;
      |
    &lt;/td&gt;

    &lt;td&gt;
      }
    &lt;/td&gt;

    &lt;td&gt;
      ~
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;

    &lt;td&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
</description>
        <pubDate>Tue, 31 Jan 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/markup/2012/01/31/markup-title-with-special-characters-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/markup/2012/01/31/markup-title-with-special-characters-es.html</guid>
        
        <category>html</category>
        
        <category>markup</category>
        
        <category>post</category>
        
        <category>title</category>
        
        
        <category>Markup</category>
        
      </item>
    
      <item>
        <title>Markup: Title *with* **Markdown**</title>
        <description>&lt;p&gt;Using Markdown in the title should have no adverse effect on the layout or functionality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;page.title&lt;/code&gt; example:&lt;/strong&gt;&lt;/p&gt;

&lt;div class=&quot;language-yaml highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;Markup:&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s&quot;&gt;Title&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s&quot;&gt;*with*&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s&quot;&gt;**Markdown**&quot;&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</description>
        <pubDate>Mon, 30 Jan 2012 00:00:00 +0000</pubDate>
        <link>https://azarrias.github.io/hydeout-multilingual/markup/2012/01/30/markup-title-with-markup-es.html</link>
        <guid isPermaLink="true">https://azarrias.github.io/hydeout-multilingual/markup/2012/01/30/markup-title-with-markup-es.html</guid>
        
        <category>css</category>
        
        <category>html</category>
        
        <category>title</category>
        
        
        <category>Markup</category>
        
      </item>
    
  </channel>
</rss>