Bug? [SOLVED] B4A 5.02 Documenting (comenting) the SUBs , standard tags don't work

Jaames

Active Member
Licensed User
Longtime User
In v5.02(1) standard tags like a <b></b> ; <code></code> in documenting the SUBS does not work, see the picture below.
I don't know if this have been reported or not, I've tried to find but no one seems to report this.

3.jpg
 

Jaames

Active Member
Licensed User
Longtime User
And there is whole class code:

B4X:
'Class module
Sub Class_Globals
   
End Sub

'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize

End Sub


'This is Method doc and standard html tags don't work
'<b>This should be Bold</b>
'<code>Dim i as int</code>
Sub SomeMethod(a As String , b As String)

End Sub
 
Top