tables in forums editor? - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: Chatting and Socializing (https://qb64phoenix.com/forum/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://qb64phoenix.com/forum/forumdisplay.php?fid=2) +--- Thread: tables in forums editor? (/showthread.php?tid=2756) |
||||||||||||||||||||||||||||||||||||||
tables in forums editor? - madscijr - 05-30-2024 Is there a way to post tables in forum posts? I tried searching the forums for "table" but no luck. I tried some markdown from the source view but it doesn't seem to do the trick... I tried some HTML too, but no dice. Any ideas? Being able to include tables in posts would be useful for sharing certain information... | **Header A** | **Header B** | **Header C** | | ------------ | ------------ | ------------ | | A1 | B1 | B1 | | A2 | B2 | B2 | | A3 | B3 | B3 | | Month | Savings | | -------- | ------- | | January | $250 | | February | $80 | | March | $420 | <table><th><td>Header A</td><td>Header B</td><td>Header C</td></th><tr><td>A1</td><td>B1</td><td>C1</td></tr><tr><td>A2</td><td>B2</td><td>C2</td></tr><tr><td>A3</td><td>B3</td><td>C3</td></tr></table> <html><table><th><td>Header A</td><td>Header B</td><td>Header C</td></th><tr><td>A1</td><td>B1</td><td>C1</td></tr><tr><td>A2</td><td>B2</td><td>C2</td></tr><tr><td>A3</td><td>B3</td><td>C3</td></tr></table></html> RE: tables in forums editor? - RhoSigma - 05-30-2024 I'm afraid codeblocks are the only place which allows for such preformatted constructs. Maybe it works also if you use a monospaced font for your post or at least the tables. The forum admins could look around, if there's a plugin module available which adds something like a Code: (Select All) | Header A | Header B | Header C | RE: tables in forums editor? - admin - 05-30-2024
RE: tables in forums editor? - madscijr - 05-30-2024 (05-30-2024, 09:45 PM)admin Wrote:Awesome!! Thank you RE: tables in forums editor? - SMcNeill - 05-30-2024 So where the heck is that "No" coming from at the end of my test posting above? RE: tables in forums editor? - madscijr - 05-30-2024 (05-30-2024, 09:52 PM)SMcNeill Wrote: So where the heck is that "No" coming from at the end of my test posting above?I just figured you were messing with me, LOL RE: tables in forums editor? - SMcNeill - 05-30-2024 @madscijr -- Can you see the basic syntax via clicking REPLY or QUOTE or such? It's not that hard to sort out. Code: (Select All) [table=something] RE: tables in forums editor? - madscijr - 05-30-2024 (05-30-2024, 09:23 PM)RhoSigma Wrote: I'm afraid codeblocks are the only place which allows for such preformatted constructs. Maybe it works also if you use a monospaced font for your post or at least the tables. It seems they looked around! The code: Code: (Select All) [table=test] yields:
But it seems there's some weird quirk that inserts the word "No" after a table ?? RE: tables in forums editor? - SMcNeill - 05-30-2024
No what? No where?
The table= is to set the percentage width of the table. For example, the first is table=70, the second is table=30.... As for the No.. Maybe my mybbcode isn't 100% perfect. Let me go check it back out a bit. RE: tables in forums editor? - madscijr - 05-30-2024 (05-30-2024, 09:55 PM)SMcNeill Wrote: @madscijr -- Can you see the basic syntax via clicking REPLY or QUOTE or such? It's not that hard to sort out. Yes and thanks. I'm seeing a "No" after my tables too... weird! If you can find the HTML or whatever template is used to render the table, maybe the "No" is in that?
(05-30-2024, 10:02 PM)SMcNeill Wrote: The table= is to set the percentage width of the table. For example, the first is table=70, the second is table=30....Oh cool, that can come in handy. Thanks! |