WEB DEVs; Can Anybody Answer Me This?
Alright: What HTML does STEEMIT support? I've tried different tags, and some work and some don't.
has anyone gotten any scripting or php to work?
Alright: What HTML does STEEMIT support? I've tried different tags, and some work and some don't.
has anyone gotten any scripting or php to work?
hey @cooltrickboi ,
Steemit supports so called Markdown (name is a word play on html's Hyper Text MARKUP Language). It's a formatting language that uses it's own syntax and usually a subset of HTML code.
Markdown rules: https://guides.github.com/features/mastering-markdown/
This post sumarizes, what should be possible in Steemit markdown https://steemit.com/basic/@magnebit/some-basic-html-formatting-in-steem (meaning what is doable trough HTML syntax or markdown syntax).
The trick with Markdown implementation is that most pages have their own flavor when it comes to raw HTML support (not to mention rendering). Best starting point however, is official documentation of Markdown you can fine here: https://daringfireball.net/projects/markdown/syntax#html
However, I can tell right away, that you won't be able to run PHP or inline scripts (such as javascript). The only way to insert dynamic content might be trough iframe.
Hope that helps a bit.