Embedding content from url in question
I have another Django app that I would like to use Askbot as a Q&A site for. My site has data about various items made with d3.js. I would like to give link next to each item as "ask about it in Askbot", consequently the d3 chart should be embedded in the question.
My app works on python 3 right now, so I cannot use Askbot as a reusable app.
How can I make this happen?
One possible scenario is to have a public api of the charts and embed a url in Askbot. Is this possible? Then I would have to make the js dependencies available in the question by default.
Comments