-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
Description
Description
Currently, gojekyll does not support the markdown="1"markdown="0", markdown="span", or markdown="block"` attribute in HTML blocks, which are supported by Jekyll's default Kramdown processor.
Background
This issue was originally reported as part of #51, where it was mentioned that while the README documents that markdown="span" and markdown="block" are not supported, it does not explicitly mention that markdown="1" is also not supported. markdown="1" are currently supported, but markdown="0", markdown="span", and markdown="block" are not.
Expected Behavior
Add support for markdown="0", markdown="span", and markdown="block" attributes in HTML blocks, similar to how Jekyll's Kramdown processor handles them.
Example
<div markdown="0">
This is *markdown-like* content inside a non-HTML block.
</div>