Jupyter-PHP
Jupyter-PHP copied to clipboard
Jupyter-PHP is unable to render HTML
How can render and display HTML in output? I try this codes:
header("Content-Type: text/html; charset=utf-8");
echo "Hi <b>world!</b>";
But have this in output:
Hi <b>world!</b>
In other words, what is the equivalent of the following python commands in Jupyter-PHP?
from IPython.core.display import display, HTML
display(HTML('<h1>Hello, world!</h1>'))
There is no current equivalent. But I'll be grateful if someone contributes this feature.