This is a very basic question, but I couldn’t seem to find it anywhere. The post instructions that I did find on here don’t work.
I want to have a specific post have big text, I tried BBCode / markdown [size=40][/size] etc but it doesn’t work. I tried<div> <font size> etc, nothing works!
How can I control the font size for particular strings of text in a post?
Additionally, If you start a new line with a > it will create a blockquote — Discourse supports bbcode, (some) HTML, and Markdown… but generally Markdown is the simplest way to format content.
Now, what about the quote markdown, what would that be in html? for example [quote=“user1, post:66, topic:52”] <blockquote="user1,etc>?
Basically, if [quote=“user1, post:66, topic:52”] is the input then what is the output in raw code/html? I’m trying to detect when someone quotes, but I’m not picking up anything beginning with [quote= when posted.
A quote from a specific user / post gets converted into an <aside> element with the class quote Inside that there are different elements like a div that holds the meta information like user avatar and name and a <blockquote> that holds the actual quote
Thanks, that is the html, but my bot doesn’t recognize any part of that or the [quote]. Anyhow, this might be more on the bot side of things than just the html or markdown itself. Thank you anyhow!