Golden-Road.net

Studio 46 - Non-TPiR Discussion => Technical Support => Topic started by: LiteBulb88 on July 08, 2020, 02:55:44 PM

Title: Is it possible to insert a table into a post here?
Post by: LiteBulb88 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?
Title: Re: Is it possible to insert a table into a post here?
Post by: gamesurf 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 (https://theenemy.dk/table/), and click "export to BBCode")
Title: Re: Is it possible to insert a table into a post here?
Post by: LiteBulb88 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!