Author Topic: Is it possible to insert a table into a post here?  (Read 5467 times)

0 Members and 1 Guest are viewing this topic.

Offline LiteBulb88

  • 4/15/2019
  • TPiR Alumnus
  • *
  • Posts: 1453
Is it possible to insert a table into a post here?
« on: July 08, 2020, 02:55:44 PM »
I'm talking about a table like you see in the first post in this Buy a Vowel thread:

https://buyavowel.boards.net/thread/11557/covid-19-hiatus-rerun-schedule

Is it possible to create a table like that on these boards?

Offline gamesurf

  • 4/4/2023
  • TPiR Alumnus
  • *
  • Posts: 1211
  • makin' flippy floppy, tryin' to do my best
Re: Is it possible to insert a table into a post here?
« Reply #1 on: July 08, 2020, 03:39:57 PM »
Yes, there is an "insert table" button, right under where it says "font face"

This code:
Code: [Select]
[table]
[tr]
[td]Name[/td]
[td]Age[/td]
[/tr]
[tr]
[td]John[/td]
[td]65[/td]
[/tr]
[tr]
[td]Gitte[/td]
[td]40[/td]
[/tr]
[tr]
[td]Sussie[/td]
[td]19[/td]
[/tr]
[/table]

gives this result:
NameAge
John65
Gitte40
Sussie19

(or you can do what I do and take the lazy way out; do it in Excel or Google Sheets, copy/paste to this site, and click "export to BBCode")
Quote from: Bill Todman
"The sign of a good game, is when you don't have to explain it every day. The key is not simplicity, but apparent simplicity. Password looks like any idiot could have made it up, but we have 14 of our people working on that show. There is a great complexity behind the screen. It requires great work to keep it simple."

Offline LiteBulb88

  • 4/15/2019
  • TPiR Alumnus
  • *
  • Posts: 1453
Re: Is it possible to insert a table into a post here?
« Reply #2 on: July 08, 2020, 03:44:29 PM »
I'll be darned--I thought I looked at every button, but I totally missed that one. Thanks, gamesurf!