B4J Question Comments in classes and code modules (code & links)

jmon

Well-Known Member
Licensed User
Longtime User
Hello,

I can't remember how to format a CODE or a URL LINK in the classes:
B4X:
'My comment:
'[code]iv.MyClass = "Blah"[code]
'more info:
'[link]https://www.b4x.com[link]
Sub MyClass(value as string)
    '...
End Sub

I'd like it to look like that and display a clickable link:
Capture.PNG


Thank you.
 

jmon

Well-Known Member
Licensed User
Longtime User
Ok, for Code this works:
B4X:
'<code>Dim Init as String</code>

But for Link, it gives me an error saying that the formatting should be
<link>text|link</link>

But when I format it this way, nothing shows up anymore
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Links do not work inside the ide. They will work only on the documentation page as far as i remember...

&lt;link&gt;Properties format|http://en.wikipedia.org/wiki/.properties&lt;/link&gt;
->
Try
B4X:
<link>Properties format|http://en.wikipedia.org/wiki/.properties</link>
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top