[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:
parent
b0bb9fa480
commit
c268af2ccc
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue