jekyll changing pre to p and adding th/td to tables -


i'm trying regenerate site jekyll it's changing pre p , adding th/td tables.

here's example diff of pre p problem. - indicates line replaced + line. code in markdown hasn't changed.

diff

-<pre><code>-dhttps.proxyhost=proxy  -dhttps.proxyport=3128 -</code></pre> +<p><code> +-dhttps.proxyhost=proxy  -dhttps.proxyport=3128 +</code></p> 

markdown

``` runscriptonnode.factory .runscript → create submit → submit ``` 

here's example diff of th/td problem. + indicates new column wasn't generated before , isn't in markdown file.

diff

<table>   <thead>     <tr> +     <th></th>       <th> column 1 </th>       <th> column 2 </th>     </tr>   </thead>   <tbody>     <tr> +     <td></td>       <td> value 1.1 </td>       <td> value 1.2</td>     </tr>     <tr> +     <td></td>       <td> value 2.1 </td>       <td> value 2.2 </td>     </tr> ... 

markdown

| column 1 | column 2 | |------------|---------------------| | value 1.1 | value 1.2 | value 2.1 | value 2.2 

why jekyll doing generated html files?

in these situations, it's wise verify versions of markdown engine and/or if can desired result changing engines. :)


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -