[GB.MARKDOWN]

* BUG: The list syntax works correctly again.


git-svn-id: svn://localhost/gambas/trunk@6658 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2014-11-19 19:50:53 +00:00
parent b0bb9fa480
commit c268af2ccc

View file

@ -209,7 +209,11 @@ Private Sub ConvertMarkup(aLine As String[], Optional bDoNotSetLine As Boolean)
Endif
iPos = InStr(sLine, " ")
If iPos Then sList = Left(sLine, iPos - 1)
If iPos Then
sList = Left(sLine, iPos - 1)
Else
sList = ""
Endif
If sList = "*" Or If sList = "-" Then