jmon Well-Known Member Licensed User Longtime User Jan 25, 2016 #1 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: Thank you.
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: Thank you.
DonManfred Expert Licensed User Longtime User Jan 25, 2016 #2 i think it was < and > instead of [ and ] B4X: *Example:<code> *db.queryasync("select * from members LIMIT 0,1 ;")</code> Last edited: Jan 25, 2016 Upvote 0
i think it was < and > instead of [ and ] B4X: *Example:<code> *db.queryasync("select * from members LIMIT 0,1 ;")</code>
jmon Well-Known Member Licensed User Longtime User Jan 25, 2016 #3 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> Click to expand... But when I format it this way, nothing shows up anymore Upvote 0
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> Click to expand... But when I format it this way, nothing shows up anymore
DonManfred Expert Licensed User Longtime User Jan 25, 2016 #4 Links do not work inside the ide. They will work only on the documentation page as far as i remember... <link>Properties format|http://en.wikipedia.org/wiki/.properties</link> Click to expand... -> Try B4X: <link>Properties format|http://en.wikipedia.org/wiki/.properties</link> Upvote 0
Links do not work inside the ide. They will work only on the documentation page as far as i remember... <link>Properties format|http://en.wikipedia.org/wiki/.properties</link> Click to expand... -> Try B4X: <link>Properties format|http://en.wikipedia.org/wiki/.properties</link>
Daestrum Expert Licensed User Longtime User Jan 25, 2016 #5 First one I found in my code lol '<link>"Google it"|http://www.google.co.uk</link> Edit: Not being funny to you jmon - that was really in my code, I hate my users lol Last edited: Jan 25, 2016 Upvote 0
First one I found in my code lol '<link>"Google it"|http://www.google.co.uk</link> Edit: Not being funny to you jmon - that was really in my code, I hate my users lol
DonManfred Expert Licensed User Longtime User Jan 25, 2016 #6 DonManfred said: Try B4X: <link>Properties format|http://en.wikipedia.org/wiki/.properties</link> Click to expand... Daestrum said: First one I found in my code lol '<link>"Google it"|http://www.google.co.uk</link> Click to expand... i was faster Daestrum said: Edit: Not being funny to you jmon - that was really in my code, I hate my users lol Click to expand... Upvote 0
DonManfred said: Try B4X: <link>Properties format|http://en.wikipedia.org/wiki/.properties</link> Click to expand... Daestrum said: First one I found in my code lol '<link>"Google it"|http://www.google.co.uk</link> Click to expand... i was faster Daestrum said: Edit: Not being funny to you jmon - that was really in my code, I hate my users lol Click to expand...
jmon Well-Known Member Licensed User Longtime User Jan 25, 2016 #7 Thank you both! It works (in the IDE too) Upvote 0