|
From: Kolya Ay <kol...@gm...> - 2010-05-04 16:05:59
|
Hi,
I have traversed the source of git master version of Markdown and
noticed that there is an option to use markdown syntax in block level
tags.
So i'm setting attribute `markdown_in_raw` of `HtmlBlockPreprocessor`
to `True` and trying to make html-table:
This *table* is not too complicated:
<table markdown>
<tr><td>Hello, **world**!</td></tr>
<table>
This produces the following result:
<p>This <em>table</em> is not too complicated:</p>
<table>
<p><tr><td>Hello, <strong>world</strong>!</td></tr>
<table></p>
Note extra <p> elements in theresult.
Is this behavior a bug that I must submit? Why markdown_in_raw option
is not documented?
Regards,
Kolya
|