update: you can now do ~subscript~
and ^superscript^
you need to escape spaces within the sub- or superscript with backslashes though
sup sub
— ubq323
update: you can now do ~subscript~
and ^superscript^
you need to escape spaces within the sub- or superscript with backslashes though
sup sub
<details> and <summary> have been enabled. you can use the html tags themselves, or use this markdown syntax
??? "summary goes here"
indented stuff here will be in the details thing
- you can
- do formatting
- in here too
will produce
indented stuff here will be in the details thing
<sup> and <sub> have been enabled. currently there is no markdown syntax for these, give me a few moments
tables | have |
---|---|
also | been |
enabled | (using the regular markdown syntax for them |
though you can use the html tags too if you want |
it seems that if you delete all posts in a thread, then the thread doesn't appear on the listing page. how interesting
(posting this here now because it's in my head but i have to go and do something else right now)
this could occur. what tags would you like to see specifically? what kinds of animations?
once subforums exist all existing threads will be sent into one of the subforums. i haven't decided what kind of subforum that should be yet. deleting everything would be unfortunate, perhaps
sqlite is slightly annoying about what kinds of columns you are allowed to add to tables after already creating them. specifically i want to have the forum column on the threads table be NOT NULL DEFAULT 1 REFERENCES forums(id)
but when adding columns with ALTER TABLE
the default has to be NULL if the column includes a foreign key. it would therefore be slightly easier if i could delete all threads and create a new threads table.
however i can still just create a new threads table, with the column i want, and then copy all the existing rows into it, and that can all be done in pure sql so it will even still work with our exisitng migration thingy. so you're right this isn't even much of a big deal at all.
hmm there was something else involving moderators that i think would make this a bit more difficult but i have forgotten what that was about now. i'm sure i can figure out a way around it. and anyway, the worst case is that i have to manually run a python script on the server or something. there is only one deployed instance so this isn't that hard.
it is possible that the development of certain future apioforum features would be made easier if the database was wiped during certain updates, instead of performing complicated migrations to preserve everything. i would be interested to hear people's opinions for and against this, so that i can know whether people strongly want things on this site to not be deleted, or if they don't care that much.
it isn't guaranteed that wiping will ever be necessary, or preferable; i am just curious about how people feel about this, if it ever does become a thing that might be useful for us.
please deposit your opinions about this into this thread, where they will be ignored considered thoroughly.
i didn't mention, but fenced code blocks are also enabled now
def bee():
for i in range(12345):
print("bee")
syntax highlighting isn't enabled, yet.