You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's very weird, because the underscore in BEGIN_ADDITION disapears. I try to break BEGIN_ADDITION which can be an instruction in the Showdown engine, but nothing change.
The following Markdown code produce the good result :
UPDATE :
When I use Indented code block, , in this following code block, the result is a Code block into another one :
" Parcourir le niveau 1 de la hiérachie.
LOOP AT lt_rgsb1.
CALL FUNCTION 'G_SET_FETCH'
EXPORTING
setnr = lt_rgsb1-setnr
TABLES
set_lines_single = lt_rgsb2
EXCEPTIONS
no_authority = 1
set_is_broken = 2
set_not_found = 3
OTHERS = 4.
" Parcourir le niveau 2 de la hiérachie.
LOOP AT lt_rgsb2.
CALL FUNCTION 'G_SET_FETCH'
EXPORTING
setnr = lt_rgsb2-setnr
TABLES
set_lines_single = lt_rgsb3
EXCEPTIONS
no_authority = 1
set_is_broken = 2
set_not_found = 3
OTHERS = 4.
Result :
With my development experience, one possible explanation could be, when openning tags for code block did not begin at the first char of one line (so, containing spaces/tab (in my case tab are spaces)), the engine only check the closing tag for code block, without take care of spaces/tab as the openning one. So the first corresponding closing tag (```) is good candidate.
When the root openning tag for code don't begin with tab/space, there is no issue.
END UPDATE.
Do you know why that does not work in my case ?
Thanks a lot for the support.
Best Regards,
Nicolas DUPRE
The text was updated successfully, but these errors were encountered:
Thank you for your reply. I did not know that was the official spec.
I always skip the newline, because my tools which renders my Markdown (PhpStorm, Markdown-PDF) add spaces between my list items.
Hi team,
I just install Showdown in version 1.8.7 :
Currently, I'm facing of an old issue which must be fixed (#184)
The following Markdown code produce this result :
It's very weird, because the underscore in
BEGIN_ADDITION
disapears. I try to breakBEGIN_ADDITION
which can be an instruction in the Showdown engine, but nothing change.The following Markdown code produce the good result :
( Dont take care of code highlight)
I expected this result :
When I add a new line , that works, but I don't want these spaced lines :
UPDATE :
When I use Indented code block, , in this following code block, the result is a Code block into another one :
Result :
With my development experience, one possible explanation could be, when openning tags for code block did not begin at the first char of one line (so, containing spaces/tab (in my case tab are spaces)), the engine only check the closing tag for code block, without take care of spaces/tab as the openning one. So the first corresponding closing tag (```) is good candidate.
When the root openning tag for code don't begin with tab/space, there is no issue.
END UPDATE.
Do you know why that does not work in my case ?
Thanks a lot for the support.
Best Regards,
Nicolas DUPRE
The text was updated successfully, but these errors were encountered: